*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --dark-gray: #2b2b2b;
    --white: #fff;
    --head-height: calc(40px + 2rem);
}

html {
  scroll-behavior: smooth;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   OUTFIT FONT FAMILY
   ========================= */

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Outfit";
  src: url("../font/Outfit-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}


body{
    overflow-x: hidden;
    font-family: "Outfit", sans-serif;
    font-weight: 400; /* Regular por defecto */
}


/*HEADER*/
.head-site{
    background-color: var(--dark-gray);
    position: fixed;
    height: var(--head-height);
    width: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    top: 0;
}
.head-site.homepage{
    background-color: #fff;
}
.head-site.homepage .burger{
    background: transparent;
}
.head-site.homepage .burger .line{
    background-color: #000;
}
.header-inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0rem;
}

.header-phone {
  color: #fff;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-left: auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.24 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath d='M6.62 10.79a15.053 15.053 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24c1.12.37 2.33.57 3.57.57a1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1c0 1.25.2 2.45.57 3.57a1 1 0 01-.24 1.02l-2.2 2.2z'/%3E%3C/svg%3E") no-repeat center;
}
.head-site.homepage .header-phone::before {
  background-color: #000;
}
.header-phone:hover {
  opacity: 0.8;
}
.head-site.homepage .header-phone {
  color: #000;
}
.logo-nav img {
  height: 35px;
}

.burger {
  width: 35px;
  height: 35px;
  background: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  border: none;
  z-index: 1300;
}
.logo-nav, .burger{
    transition: .5s ease all;
}
.logo-nav:hover, .burger:hover{
    transform: scale(1.05);
}

.burger .line {
  position: absolute;
  left: 50%;
  width: 15px;
  height: 2.5px;
  background: #fff;
  border-radius: 9999px;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* estado base (hamburger invisible aquí, pero correcto) */
.burger .line:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -6px);
}

.burger .line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 0);
}

.burger .line:nth-child(3) {
  top: 50%;
  transform: translate(-50%, 6px);
}

/* estado activo → X */
.burger.active .line:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}

.burger.active .line:nth-child(2) {
  opacity: 0;
}

.burger.active .line:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}


.menu-head {
  position: fixed;
  top: var(--head-height);
  right: 0;
  width: 50%;
  height: calc(100vh - var(--head-height));
  background: #2b2b2b;
  transform: translateX(100%);
  transition: transform 0.35s ease;

  z-index: 1200;
}

.menu-list{
    list-style: none;
    margin-right: calc((100vw - 85vw)/2);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 2rem;
    gap: 2.5rem;


}
.menu-item a{
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    position: relative;
}
.menu-item a::before{
  position: absolute;
  content: "";
  bottom: -3px;
  right: 0%;
  width: 0%;
  height: 1.5px;
  background-color: var(--white);
  transition: .4s ease all;
}

.menu-item a:hover::before{
  width: 100%;
  right: 0;
}
.menu-contact{
  background-color: var(--white);
  display: block;
  padding: 15px 30px;
  border-radius: 999px;
  position: relative;
  border: 2px solid var(--white);
  overflow: hidden;
}
.menu-contact::before{
  content: "";
  background-color: var(--dark-gray);
  position: absolute;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: .5s ease all;
  z-index: 10;
}
.menu-contact a{
  color: var(--dark-gray);
  position: relative;
  z-index: 100;
}
.menu-contact a::before{
  display: none;
}
.menu-contact:hover a{
  color: var(--white);
}
.menu-contact:hover::before{
  transform: translateX(0);
  left: 0;
}

.menu-head.active {
  transform: translateX(0%);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-gray);
  mix-blend-mode: multiply;
  transform: translateX(-100%);
  opacity: 0.85;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

/* overlay activo */
.menu-overlay.active {
  
  transform: translateX(0);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .menu-head{
    width: 100%;
  }
  .menu-list{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: auto;
    justify-content: space-between;
    padding-bottom: 2rem;
  }
  .menu-item a{
    font-size: 1.2rem;
  }
  .menu-overlay.active{
    display: none;
  }
}




/*MAIN INDEX*/

.main-index{
  height: calc(100vh - var(--head-height));
  overflow: hidden;
  margin-top: var(--head-height);
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}
.main-item{
  width: 50%;
  height: 50%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
}
.title-main-item{
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1000;
  text-transform: uppercase;
  transition: 1s ease all;
  font-size: 1.8rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.55),
    0 6px 18px rgba(0, 0, 0, 0.35);
}
.video-main{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.video-main::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-gray);
  mix-blend-mode: multiply;
  opacity: .7;
  z-index: 10;
  transition: .5s ease all;
}
.video-main video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(30%);
  z-index: 5;
  transition: .5s ease all;
}

.main-item:hover video{
  transform: scale(1.1);
  filter: saturate(100%);
}
.main-item:hover h2{
  transform: scale(1.105);
}
.main-item:hover .video-main::before{
  opacity: .3;
}

@media (max-width: 768px){
  .main-item{
    width: 100%;
    height: 25%;
  }
}



/*FIN MAIN INDEX*/







/*CONTACT US*/
.contact-header h2{
  text-align: center;
  font-size: 3rem;
  color: var(--dark-gray);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-header p{
    font-size: 1.1rem;
    text-align: justify;
    text-align-last: center;
    color: var(--dark-gray);
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.contact-header{
  margin-bottom: 30px;
}

@media (max-width: 768px){
  .contact-header h2{
    font-size: 2.5rem;
  }
  .contact-header p{
    width: 100%;
  }
}


.contact-section {
  width: 100%;
  padding: 80px 0px;
  padding-bottom: 30px;
  position: relative;
  z-index: 100;
}

.contact-web .contact-section{
  margin-top: var(--head-height);
}

.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  width: 100%;
  margin-bottom: 24px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--dark-gray);
  background: var(--white);
  font-size: 1rem;
  outline: none;
}

.contact-form textarea {
  resize: none;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
  font-family: 'Outfit';
}
.contact-form button {
  width: 100%;
  font-family: 'Outfit';
  padding: 18px;
  border-radius: 14px;
  border: none;
  background: var(--dark-gray);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: .5s ease all;
}
.form-group.submit-button{
  margin-bottom: 0;
}
.contact-form button:hover{
  transform: scale(1.05);
}
.contact-form button:disabled{
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form feedback messages */
.form-feedback{
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 16px;
  animation: fadeInFeedback 0.3s ease;
}
.form-feedback-success{
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-feedback-error{
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@keyframes fadeInFeedback{
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
.main{
  position: relative;
}
.main::before{
  content: "";
  position: absolute;
  left: 0;

  bottom: 0;
  height: 20%;
  width: 100%;
  background-color: var(--dark-gray);
}
@media (max-width: 768px){
  .contact-section{
    padding-top: 30px;
  }
  .contact-form{
    padding: 40px 20px;
  }
  .form-row{
    flex-direction: column;
    gap: 0;
  }
  .submit-button{
    margin-bottom: 0;
  }
}


/* FOOTER*/

.site-footer {
  background-color: var(--dark-gray);
  color: #ffffff;
  width: 100%;
}

/* MAIN CONTAINER */
.footer-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f3f3f3;
}

.footer-col a {
  color: #ffffff;
  text-decoration: none;
  transition: .5s ease all;
  position: relative;
}
.footer-col a::before{
  content: "";
  width: 0%;
  height: 2px;
  background-color: var(--white);
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s ease all;
}
.footer-col a:hover::before {
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 40px);
  gap: 16px;
  margin-bottom: 24px;
}

.social-grid img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.social-grid a{
  transition: .5s ease all;
}
.social-grid a::before{
  display: none !important;
}
.social-grid a:hover{
  transform: scale(1.2);
}
.footer-phone {
  margin-bottom: 8px;
}
.footer-phone a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}
.footer-phone a:hover {
  opacity: 0.8;
}
.footer-email {
  margin-bottom: 24px;
}

.footer-contact-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #2b2b2b;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-contact-btn:hover {
  background: #e6e6e6;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}
.footer-office p{
  margin-bottom: 10px;
}

.footer-bottom {
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
    text-align: center;
  }

  .social-grid {
    justify-content: center;
    grid-template-columns: repeat(3, 36px);
  }

  .footer-menu ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
  }

  .footer-contact-btn {
    width: 100%;
    text-align: center;
  }
}





/*COLORES Y HEADERS POR SECCIONES*/
/*GENERALES POR CATEGORIA*/
.menu-link.active {
  font-weight: 700;
  cursor: default;
}
.menu-link.is-current {
  pointer-events: none;
}
.head-banner{
  width: 100%;
  height: calc(100vh - var(--head-height));
  overflow: hidden;
  position: relative;
  margin-top: var(--head-height);
  display: flex;
  padding: 2rem 7%;
  justify-content: space-between;
  align-items: center;
}
.info-banner{
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  width: 45%;
  height: 100%;
  justify-content: center;
}
.logo-banner{
  max-width: 150px;
  margin-bottom: 20px;
}

.title-banner{
  color: var(--white);
  text-transform: uppercase;
  font-size: 3rem;
  cursor: default;
  font-weight: 800;
  margin-bottom: 20px;
}
.video-back-banner{
  position: absolute;
  width: 60%;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 5;
  overflow: hidden;
}
.video-back-banner video{
  width: 100%;
  height: 101%;
  object-fit: cover;
}
.form-banner{
  width: 50%;
  position: relative;
  z-index: 10;
}
.main-category .form-banner form{
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .5);

}
.video-banner{
  width: 90%;
  aspect-ratio: 16 /9;
  position: relative;
  overflow: hidden;
}
.video-banner video,
.video-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: transparent;
  width: 90px;
  height: 90px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.play-btn img {
  width: 100%;
  height: 100%;
}

.play-btn:hover {
  transform: scale(1.1);
}
@media (max-width: 768px){
  .video-back-banner{
    width: 100%;

  }
  .head-banner{
    flex-direction: column;
    height: auto;
  }
  .info-banner{
    margin-bottom: 30px;
    width: 100%;

  }
  .logo-banner{
    max-width: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }
  .title-banner{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .video-banner{
    margin-left: auto;
    margin-right: auto;
  }
  .form-banner{
    width: 100%;
  }
  .head-banner{
    padding: 3rem 7%;
  }
}


.main-service{
  padding: 5rem 10%;
  padding-bottom: 0;
}
.about-us{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-about{
  width: 40%;
  color: var(--white);
}
.title-about{
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.span-about{
  font-size: 1.8rem;
  font-weight: 500;
}
.about-us-p{
  width: 100%;
  text-align: justify;
  text-align-last: left;
  margin-bottom: 40px;
  cursor: default;
}
.contact-button{
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9999px;
  font-family: 'Outfit';

  color: var(--white);
  transition: .5s ease all;
  font-size: 1rem;
}
.info-about a:hover{
  font-size: 1.1rem;
}

.image-about{
  width: 45%;
}
.image-about img{
  width: 100%;
}

@media (max-width: 768px){
  .about-us{
    flex-direction: column-reverse;

  }
  .image-about{
    width: 80%;
    margin-bottom: 20px;
  }
  .info-about{
    width: 100%;
    text-align: center;
  }
  .about-us-p{
    text-align-last: center;
  }
}

.our-serv{
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.info-services{
  position: relative;
  z-index: 100;
  display: flex;
  max-width: 60%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
}
.title-serv{
  font-size: 2.3rem;
  margin-bottom: 10px;
}
.p-serv{
  font-size: 1.1rem;
  width: 100%;
  text-align: justify;
  text-align-last: center;
  margin-bottom: 40px;
}
.services-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.serv-item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
}
.serv-icon{
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.serv-icon img{
  max-height: 50%;
}
.title-serv-item{
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.info-p-serv{
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  margin-top: 10px;
  font-weight: 500;
}

.our-serv::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  opacity: .58;
}
.video-back-serv{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
.video-back-serv video,
.video-back-serv img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(10%);
}

@media (max-width: 768px){
  .our-serv{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .info-services{
    max-width: 80%;
  }
  .services-inner{
    flex-direction: column;
  }
  .serv-item{
    margin-bottom: 20px;
    width: 100%;
  }
}

.info-clients{
  margin-top: 60px;
  width: 100%;
  padding: 30px 60px;
  border-radius: 9999px;
}
.info-box{
  margin-left: auto;
  margin-right: auto;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-item{
  text-align: center;
  color: var(--white);
  width: 30%;
}
.info-number{
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 768px){
  .info-box{
    flex-direction: column;
    gap: 20px;
  }
  .info-item{
    width: 100%;
  }
  .info-clients{
    border-radius: 40px;
  }
}



.gallery-videos {
  margin-top: 70px;
  color: var(--white);
}

/* ---------- Header ---------- */

.gallery-header {
  text-align: center;
  margin-bottom: 30px;
}

.gallery-subtitle {
  font-size: 0.95rem;
  opacity: 1;
  margin-bottom: 3px;
}

.gallery-title {
  font-size: 2.2rem;
  font-weight: 600;
}

/* ---------- Flex Layout ---------- */

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ---------- Cards ---------- */

.video-card {
  flex: 1;
  width: 30%;
  text-align: center;
}

/* ---------- Thumbnail ---------- */

.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 11;
  overflow: hidden;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Play Button ---------- */

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.play-btn img {
  width: 64px;
  height: 64px;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-thumb:hover .play-btn img {
  transform: scale(1.1);
  opacity: 1;
}

/* ---------- Text ---------- */

.video-title {
  margin-top: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

.video-desc {
  margin-top: 8px;
  font-size: 0.95rem;
  opacity: 1;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .gallery-grid {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .video-card {
    width: 90%;
  }
}

.contact-btn-last{
  margin-top: 80px;
  text-align: center;
}
.contact-btn-last a{
  display: inline-block;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1.3rem;
  transition: .5s ease all;
  border: 1px solid var(--white);
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.contact-btn-last a span{
  position: relative;
  z-index: 1;
  transition: .3s ease all;
  color: var(--white);
}
.contact-btn-last a::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: -101%;
  background-color: var(--white);
  transition: .5s ease all;
}
.contact-btn-last a:hover:before{
  left: 0;
}
.contact-btn-last a:hover span{
  color: var(--dark-gray);
}




.footer-main-serv{
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}
.footer-m-item{
  width: 25%;
  padding: 30px 3%;
  text-align: center;
  color: var(--white);
  position: relative;
}

.footer-m-item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
}

.footer-m-item:last-child::after {
  display: none;
}

.image-footer-m{
  max-height: 30px;
  margin-bottom: 30px;
}
.title-footer-item{
  font-size: 1rem;
  font-weight: 500;
}
.text-footer-item{
  text-align: center;
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 10px;
  opacity: .8;
}

@media (max-width: 768px) {
  .footer-main-serv {
    flex-direction: column;
  }

  .footer-m-item {
    width: 100%;
    padding: 20px 0px;
  }
  .image-footer-m{
    max-height: 20px;
    margin-bottom: 10px;
  }
  .footer-m-item::after {
    width: 100%;
    height: 1px;
    bottom: 0;
  }
  .footer-m-item:last-child::after{
    display: inline;
  }
}



/*ROOFING*/
:root{
  --orange: #d96a25;
  --med-orange: #b75520;
  --dark-orange: #5c5148;
}
.head-site.roofing, .head-site.roofing .menu-head, .head-site.roofing .menu-contact::before, .roofing .info-clients, .site-footer.roofing-footer, .roofing .contact-button{
  background-color: var(--orange);
}
.site-footer.roofing-footer .footer-bottom{
  color: var(--white);
  background-color: var(--dark-orange);
}
.head-site.roofing{
  box-shadow: 0 5px 10px #b7552083;
}

.roofing-main .head-banner::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(
  to right,
  #d96a25 0%,
  #f2a974 45%,
  rgba(255, 255, 255, 0.25) 60%,
  rgba(255, 255, 255, 0.1) 75%,
  rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 768px){
  .roofing-main .head-banner::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(
  to bottom,
  #d96a25 20%,
  #f2a974 55%,
  rgba(255, 255, 255, 0.25) 70%,
  rgba(255, 255, 255, 0.1) 85%,
  rgba(255, 255, 255, 0) 100%
);
}
}
.main-service.roofing{
  background: linear-gradient(to bottom, var(--med-orange) 0%, var(--dark-orange) 100%);
}
.our-serv.roofing::before, .our-serv.roofing .serv-icon{
  background: radial-gradient(circle at center, var(--med-orange) 0%, var(--orange) 100%);
}




/*LANDSCAPING*/
:root{
  --green: #49db84;
  --dark-green: #1e7c44;
}
.head-site.landscaping,
.head-site.landscaping .menu-head,
.head-site.landscaping .menu-contact::before,
.landscaping .info-clients,
.site-footer.landscaping-footer, .landscaping .contact-button{
  background-color: var(--green);
}

.site-footer.landscaping-footer .footer-bottom{
  color: var(--white);
  background-color: var(--dark-green);
}

.head-site.landscaping{
  box-shadow: 0 5px 10px rgba(30, 124, 68, 0.51);
}

.landscaping-main .head-banner::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(
    to right,
    #1e7c44 0%,
    #49db84 45%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 768px){
  .landscaping-main .head-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background: linear-gradient(
      to bottom,
      var(--dark-green) 20%,
      var(--green) 55%,
      rgba(255, 255, 255, 0.25) 70%,
      rgba(255, 255, 255, 0.1) 85%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

.main-service.landscaping{
  background: linear-gradient(
    to bottom,
    var(--green) 0%,
    var(--dark-green) 100%
  );
}

.our-serv.landscaping::before,
.our-serv.landscaping .serv-icon{
  background: radial-gradient(
    circle at center,
    var(--green) 0%,
    var(--dark-green) 100%
  );
}


/*SECURITY*/
:root{
  --blue: #0076c8;
  --dark-blue: #005584;
}

.head-site.security,
.head-site.security .menu-head,
.head-site.security .menu-contact::before,
.security .info-clients,
.site-footer.security-footer,
.security .contact-button{
  background-color: var(--blue);
}

.site-footer.security-footer .footer-bottom{
  color: var(--white);
  background-color: var(--dark-blue);
}

.head-site.security{
  box-shadow: 0 5px 10px rgba(0, 85, 132, 0.51);
}

.security-main .head-banner::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(
    to right,
    #005584 0%,
    #0076c8 45%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 768px){
  .security-main .head-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background: linear-gradient(
      to bottom,
      var(--dark-blue) 20%,
      var(--blue) 55%,
      rgba(255, 255, 255, 0.25) 70%,
      rgba(255, 255, 255, 0.1) 85%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

.main-service.security{
  background: linear-gradient(
    to bottom,
    var(--blue) 0%,
    var(--dark-blue) 90%
  );
}

.our-serv.security::before{
  background: radial-gradient(
    circle at center,
    var(--blue) 0%,
    var(--dark-blue) 100%
  );
  opacity: 1;
}
.our-serv.security .serv-icon{
  background: radial-gradient(
    circle at center,
    var(--blue) 0%,
    var(--dark-blue) 100%
  );
}



/* PEST CONTROL*/
:root{
  --yellow: #fcdf68;
  --med-yellow: #f2c200;
  --dark-yellow: #a0840d;
}

.head-site.pest,
.head-site.pest .menu-head,
.head-site.pest .menu-contact::before,
.pest .info-clients,
.site-footer.pest-footer
{
  background-color: var(--yellow);
}
.pest .contact-button{
  background-color: var(--dark-yellow);
}

.site-footer.pest-footer .footer-bottom{
  color: black;
  background-color: var(--med-yellow);
}

.head-site.pest{
  box-shadow: 0 5px 10px rgba(242, 194, 0, 0.51);
}

.pest-main .head-banner::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  background: linear-gradient(
    to right,
    #f2c200 0%,
    #fcdf68 45%,
    rgba(255, 255, 255, 0.25) 60%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media (max-width: 768px){
  .pest-main .head-banner::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background: linear-gradient(
      to bottom,
      #f2c200 20%,
      #fcdf68 55%,
      rgba(255, 255, 255, 0.25) 70%,
      rgba(255, 255, 255, 0.1) 85%,
      rgba(255, 255, 255, 0) 100%
    );
  }
}

.main-service.pest{
  background: linear-gradient(
    to bottom,
    var(--yellow) 0%,
    var(--med-yellow) 100%
  );
}

.our-serv.pest::before,
.our-serv.pest .serv-icon{
  background: var(--dark-yellow);
}
.pest-control-web{
  color: var(--dark-gray) !important;
}
.head-site.pest .logo-nav, .main-category.pest-main .logo-banner, .pest .image-footer-m, .pest-footer .social-grid{
  filter: invert(1);
}
.head-site.pest .burger{
  background-color: transparent;
}
.pest-footer .footer-col a::before{
  background-color: black;
}
.main-category.pest-main .title-banner, .our-serv.pest .info-services,
.pest .info-about, .pest .info-item, .pest .gallery-videos, .pest .footer-m-item, .site-footer.pest-footer, .pest-footer .footer-col p, .pest-footer .footer-col a, .head-site.pest .menu-item a{
  color: black !important;
}

.pest .contact-btn-last a{
  border-color: black;
}
.pest .contact-btn-last a span{
  color: black;
}



/* ---------------------------------------------------------------------
   INDEX ANTERIOR DESCARTADO PERO QUE FUNCIONA PARA PRÓXIMOS PROYECTOS
   ------------------------------------------------------------------ */

/*SLIDER*/
.slider {
  width: 100%;
  aspect-ratio: 28 / 10;
  margin-top: var(--head-height);
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
  will-change: transform;
}


@media (max-width: 768px) {
  .slider {
    aspect-ratio: 12 / 16;
  }
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  transition: .5s ease all;
}

.img-slider-desk,
.img-slider-mov {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-slider-mov {
  display: none;
}
.slide:hover{
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .img-slider-desk {
    display: none;
  }

  .img-slider-mov {
    display: block;
  }
}
/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: .3s ease all;
}

.slider-dot.active {
  background: #fff;
  transform: scale(1.2);
}



/*MAIN INDEX*/
.main{
  padding: 70px 10%;
  background: linear-gradient(to bottom, #ffffff 0%, #e2e2e2 100%);
}
@media (max-width: 768px){
  .main{
    padding: 50px 10%; 
  }
}


/*LOCAL SERVICES*/
.title-services{
  text-align: center;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--dark-gray);
  text-transform: uppercase;
  font-size: 3rem;
}
.text-services{
  color: var(--dark-gray);
  font-size: 1.1rem;
  text-align: justify;
  text-align-last: center;
  margin-bottom: 50px;
}
.services-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px 10% ;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px;
}
.service-item{
  width: 40%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
.service-image{
  overflow: hidden;
  width: 100%;
  aspect-ratio: 7 / 5;
  border-radius: 30px;
  position: relative;
}
.service-person{
  position: absolute;
  z-index: 10;
  bottom: 0;
  height: 90%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s ease all;
}
.service-back{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s ease all;
}
.service-name{
  width: 100%;
  margin-top: 15px;
  text-decoration: none;
}
.service-name h3{
  text-decoration: none;
  text-align: center;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--dark-gray);
  transition: .5s ease all;
}
.service-item:hover .service-person{
  height: 100%;
  filter: saturate(110%);
}
.service-item:hover .service-back{
  filter: saturate(40%);
}
.service-item:hover .service-name h3{
  transform: translateY(-5px);
}

@media (max-width: 768px){
  .title-services{
    font-size: 2.5rem;
  }
  .services-wrapper{
    gap: 30px 10%;
  }
  .service-item{
    width: 90%;
  }
}

/* ---------------------------------------------------------------------
    FIN INDEX ANTERIOR
   ------------------------------------------------------------------ */


/* =========================
   CITY LANDING PAGES
   ========================= */

.city-hero {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 8rem 7.5% 4rem;
    text-align: center;
}
.city-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.city-hero p {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}
.city-about {
    padding: 5rem 7.5%;
    max-width: 900px;
    margin: 0 auto;
}
.city-about h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}
.city-about p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}
.city-about a {
    color: var(--dark-gray);
    font-weight: 500;
    text-decoration: underline;
}
.footer-areas-logo {
    width: 120px;
    display: block;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .city-hero {
        padding: 6rem 5% 3rem;
    }
    .city-hero h1 {
        font-size: 2rem;
    }
    .city-about {
        padding: 3rem 5%;
    }
}


/* =========================
   INTERNAL LINKS IN SERVICE PAGES
   ========================= */

.p-serv a,
.about-us-p a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}
.p-serv a:hover,
.about-us-p a:hover {
    opacity: 0.8;
}


/* =========================
   FAQ SECTION (Inline on service pages)
   ========================= */

.faq-section {
    margin-top: 70px;
    color: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 600;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    transition: opacity 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.8rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}


/* =========================
   FAQ DEDICATED PAGE
   ========================= */

.faq-page-main {
    padding: 4rem 7.5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-page-section {
    margin-bottom: 3rem;
}

.faq-page-category {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--dark-gray);
}

.faq-page-main .faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-page-main .faq-question {
    color: var(--dark-gray);
}

.faq-page-main .faq-answer p {
    color: #444;
    opacity: 1;
}

.faq-page-main .faq-icon {
    color: var(--dark-gray);
}