@font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Book.otf') format('opentype'),
         url('../fonts/GothamRoundedBook_21018.ttf') format('truetype');
    font-weight: 400; /* Normal (Book) */
    font-style: normal;
  }
  
  /* Book Italic */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-BookItalic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
  }
  
  /* Light */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Light.otf') format('opentype'),
         url('../fonts/GothamRoundedLight_21020.ttf') format('truetype');
    font-weight: 300; /* Light */
    font-style: normal;
  }
  
  /* Light Italic */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
  }
  
  /* Medium */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Medium.otf') format('opentype'),
         url('../fonts/GothamRoundedMedium_21022.ttf') format('truetype');
    font-weight: 500; /* Medium */
    font-style: normal;
  }
  
  /* Medium Italic */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
  }
  
  /* Bold */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-Bold.otf') format('opentype'),
         url('../fonts/GothamRoundedBold_21016.ttf') format('truetype');
    font-weight: 700; /* Bold */
    font-style: normal;
  }
  
  /* Bold Italic */
  @font-face {
    font-family: 'Gotham Rounded';
    src: url('../fonts/GothamRounded-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
  }
  @import url('https://fonts.cdnfonts.com/css/mollen-personal-use');
 *{
    margin: 0;
    padding: 0;
    
 }
body{
      --brand: #e51271;         /* rosa/magenta marca */
  --peach: #f57260;         /* durazno suave */
  --bg: #ffffff;

  background:
    /* estrellas laterales (SVG embebido). Quita estas 2 líneas si no quieres estrellas */
   

    /* manchas rosas (marca) */
    radial-gradient(1200px 800px at 18% -8%, rgba(229, 18, 113, 0.18), transparent 60%),
    radial-gradient(900px 700px at 82% 0%,  rgba(229, 18, 113, 0.16), transparent 60%),
    radial-gradient(850px 650px at 22% 88%, rgba(229, 18, 113, 0.18), transparent 62%),
    radial-gradient(800px 700px at 72% 92%, rgba(229, 18, 113, 0.16), transparent 62%),

    /* manchas durazno */
    radial-gradient(1000px 900px at 90% 48%, rgba(245, 114, 96, 0.20), transparent 62%),
    radial-gradient(900px 800px at 12% 46%, rgba(245, 114, 96, 0.18), transparent 60%),

    /* base */
    var(--bg);

  /* que el fondo quede fijo como wallpaper */
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed, fixed;
  background-size: auto, auto, auto, auto, auto, auto, auto, auto;

}
/* -------- Tamaños tipográficos base -------- */
h1 { font-size: clamp(2rem, 1.3rem + 2.5vw, 3.5rem); }    /* ~32 → 56px */
h2 { font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.75rem); }/* ~28 → 44px */
h3 { font-size: clamp(1.5rem, 1.05rem + 1.2vw, 2rem); }   /* ~24 → 32px */
h4 { font-size: clamp(1.25rem, 1rem + 0.8vw, 1.5rem); }   /* ~20 → 24px */
h5 { font-size: clamp(1.125rem, 0.95rem + 0.5vw, 1.25rem);}/* 18 → 20px */
h6 { font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem); }  /* 16 → 18px */

p { font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem); } /* 16 → ~17px */
a,
a:visited,
a:hover,
a:active { font-size: clamp(1rem, 0.95rem + 0.2vw, 1.0625rem); } /* igual que <p> */

small { font-size: clamp(0.875rem, 0.85rem + 0.1vw, 0.9375rem); } /* 14 → 15px */
/* ----- Header base (desktop) ----- */
.site-header{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
  background-color:#fff;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  height:90px;
  border-bottom:1px #e51271 solid;
  font-family:'Mollen Personal Use', sans-serif;
  position:fixed;
  inset:0 0 auto 0; /* top:0; left:0; right:0 */
  z-index:1000;
  padding-inline:3%;
}

/* Marca */
.left-header{
  height:100%;
  display:flex;
  align-items:center;
}
.left-header img{
  height:60%;
}

/* Navegación escritorio */
.right-header{
  display:flex;
  align-items:center;
  gap:15px;
  justify-content:flex-end;
}
.right-header a{
  text-decoration:none;
  color:#676767;
  font-weight:400;
  position:relative;
  transition:color .2s ease;
}
.right-header a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  height:2px;
  width:0%;
  background:#e51271;
  transition:width .25s ease;
}
.right-header a:hover{
  color:#e51271;
  font-weight:700;
}
.right-header a:hover::after{ width:100%; }

/* Botón hamburguesa (oculto en desktop) */
.menu-toggle{
  display:none;
  place-self:center end;
  width:42px; height:42px;
  border:2px solid #e51271;
  border-radius:10px;
  background:#fff;
  padding:8px;
  cursor:pointer;
  transition:transform .2s ease;
}
.menu-toggle:active{ transform:scale(.96); }
.menu-toggle .menu-line{
  display:block;
  height:2px;
  background:#e51271;
  margin:5px 0;
  transition:transform .25s ease, opacity .2s ease;
}

/* Estado X */
.site-header.is-open .menu-toggle .menu-line:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.site-header.is-open .menu-toggle .menu-line:nth-child(2){
  opacity:0;
}
.site-header.is-open .menu-toggle .menu-line:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Off-canvas móvil */
.mobile-nav{
  position:fixed;
  top:90px; /* debajo del header fijo */
  right:-100%;
  width:78%;
  max-width:360px;
  height:calc(100dvh - 90px);
  background:#fff;
  border-left:3px solid #e51271;
  box-shadow:-10px 0 30px rgba(0,0,0,.07);
  display:flex;
  flex-direction:column;
  gap:.25rem;
  padding:1rem 1.25rem 2rem;
  transition:right .3s ease;
  z-index:1001;
  overflow:auto;
}
.mobile-nav .nav-item{
  padding:.9rem 0;
  text-decoration:none;
  color:#222;
  font-weight:600;
  border-bottom:1px solid #f0f0f0;
  transform:translateX(12px);
  opacity:0;
  animation:slideIn .35s ease forwards;
}
.mobile-nav .nav-item:nth-child(1){ animation-delay:.04s; }
.mobile-nav .nav-item:nth-child(2){ animation-delay:.09s; }
.mobile-nav .nav-item:nth-child(3){ animation-delay:.14s; }
.mobile-nav .nav-item:nth-child(4){ animation-delay:.19s; }
.mobile-nav .nav-item:active{ color:#e51271; }

/* Fondo oscuro */
.nav-backdrop{
  position:fixed;
  inset:90px 0 0 0; /* cubre debajo del header */
  background:rgba(0,0,0,.35);
  z-index:1000;
  opacity:0;
  transition:opacity .25s ease;
}

/* Estado abierto */
.site-header.is-open .mobile-nav{ right:0; }
.site-header.is-open .nav-backdrop{ opacity:1; }
.site-header.is-open .nav-backdrop[hidden]{ display:block; }

/* Animación items */
@keyframes slideIn{
  to{ transform:translateX(0); opacity:1; }
}

/* ----- Responsivo ----- */
@media (max-width: 992px){
  .site-header{
    grid-template-columns: 1fr auto;
    height:80px;
  }
  .mobile-nav{ top:80px; height:calc(100dvh - 80px); }
  .right-header{ display:none; }  /* oculto el nav de escritorio */
  .menu-toggle{ display:grid;   align-content: center;}   /* muestro hamburguesa */
  .left-header img{ height:52%; }
}

@media (max-width: 520px){
  .site-header{ padding-inline:4%; }
  .menu-toggle{ width:40px; height:40px; }
 
}
.wa-float-btn{
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #25D366;              /* verde WhatsApp */
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: grid;
  place-items: center;
  text-decoration: none;
  z-index: 1500;                     /* por encima de tu header (1000) */
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float-btn:hover{
  transform: scale(1.04);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
}
/* Aro de énfasis con tu acento #e51271 en hover (opcional) */
.wa-float-btn::after{
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid #e51271;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.wa-float-btn:hover::after{ opacity: 1; }

.wa-float-btn svg{
  width: 60px;
  height: 60px;
  fill: #fff;
}

@media (max-width: 480px){
  .wa-float-btn{
    width: 54px;
    height: 54px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

.hero{
  margin-top: 5%;
}
.title-hero{
    display: flex;
    justify-content: center;
    padding-top: 3%;

}
.title-hero h1{
    font-family: 'Gotham Rounded', sans-serif;
    color: #676767;
    font-weight: 800;
}
.hero-sp{
  color: #e51271;
  font-weight: 300;
}
.hero-content{
  display: grid;
  grid-template-columns: 25% 50% 25%;
  font-family: 'Gotham Rounded', sans-serif;
   margin-left: 10%;
  margin-right: 10%;
}.hero-content p{
  font-weight: 800;
  color: #676767;
 
}
.left-hero{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3%;
}
.right-hero{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3%;
}
.center-hero{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.center-hero img{
  width: 60%;
}


/* CSS */
.button-85 {
  padding: 0.6em 2em;
  border: none;
  outline: none;
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 800;
  color: #676767;
  background: #e51271;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  margin-bottom: 6%;
  cursor: pointer;
}

.button-85:before {
  content: "";
  background: linear-gradient(
    45deg,
    #e51271,
      #ff3b94,
      #ff6ab0,
      #ff94c6,
      #e51271,
      #c4005d,
      #a1004e,
      #e51271
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-button-85 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-button-85 {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.button-85:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: 0;
  top: 0;
  border-radius: 10px;
  

}


.bef-work{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bef-work p{
   font-family: 'Gotham Rounded', sans-serif;
  font-weight: 100;
  color: #676767;
  padding-top: 8%;
  margin-bottom: 4%;
  margin-left: 4%;
  margin-right: 3%;
}
.bef-work button{
  border: none;
  cursor: pointer;
  border-radius: 100px;
  background-color: #67676775;
  margin-bottom: 4%;
  

}
.bef-work h1{
  font-weight: 400;
  color: #676767;
  font-family: 'Gotham Rounded', sans-serif;
   margin-bottom: 32;
}
.work-tt{
  display: grid;
  grid-template-columns: 10% 40% 40% 10%;
  height: 90px;
  justify-items: center;
  color: #676767;
    align-items: center;
    border-top: solid #e51271 1px;
     border-bottom: solid #e51271 1px;
   
    
} 
.work-tt h3{
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 400;
  
}     
.work-tt-left {
  grid-column: 2; /* Empieza en la columna 2 */
  border-left: solid #e51271 1px;
 border-right: solid #e51271 1px;
 height: 100%;
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: center;

}

.work-tt-right {
  grid-column: 3; 
  border-right: solid #e51271 1px;
 height: 100%;
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: center;

}
.works{
 
    background-size: cover;       /* Cubre toda la pantalla aunque se recorte */
    background-position: center;  /* Centra la imagen */
    background-repeat: no-repeat;
}
.works-top{
  display: grid;
  grid-template-columns: 10% 26.6% 26.6% 26.6%  10%;
padding-top: 5%;
}
.works-top-left{
  display: flex;
  align-items: center;
    justify-content: center;
  height: 100%;
  grid-column: 2;
   margin: 2px;
}
.works-top-left img{
  width: 100%;
/* Ajusta al tamaño que necesites */
  height: auto;
 
}
.works-top-center{
  display: flex;
  align-items: center;
    justify-content: center;
    text-align: center;
    height: 99%;
    border: 2px #e51271 solid;
   margin: 2px;
    border-radius: 13px;
   
    
}
.works-top-center h1{
  font-family: 'Gotham Rounded', sans-serif;
   font-weight: 400;
   color: #e51271;
}
.works-top-right{
  grid-column: 4;
  height: 100%;
   display: flex;
  align-items: center;
    justify-content: center;
    margin: 2px;
}
.works-top-right img{
  width: 100%;
   /* Ajusta al tamaño que necesites */
  height: auto;
 
}

.works-center{
  display: grid;
   grid-template-columns: 10% 45% 35% 10%;
   margin-top: 2%;
   justify-items: center;
    align-items: center;

}
.works-center-left{
  grid-column-start: 2;
}
.works-center-top img{
  width: 100%;

}
.works-center-bottom{
  display: grid;
  grid-template-columns:35% 65% ;
}
.works-giro{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px #e51271 solid;
  height: 95%;
  border-radius: 13px;
}
.works-hope img{
  width: 100%;
}
.works-giro p{
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 100;
  color: #676767;
}
.works-giro h1{
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 800;
  color: #e51271;
}
.works-center-right{
  display: grid;
  grid-template-rows: 40% 60%;
  height: 100%;
  width: 100%;
  margin-left: 3px;

}
.works-center-rtp{
  display: grid;
  grid-template-columns: 50% 50%;
  justify-items: center;
    align-items: center;
}
.work-smot{
  margin: 2px;
}
.work-smot img{
  width: 100%;
}
.work-ver{
  display: flex;
  width: 96%;
  height: 91%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: #e51271 2px solid;
  padding: 1px;
  border-radius: 13px;
  margin: 3px;
  

}
.works-center-rbt{
  width: 99%;
  height: 97%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e51271;
  border-radius: 13px;
}
.works-center-rbt img{
 width: 81%;
}
.works-down{
  display: grid;
  grid-template-columns: 10% 32% 48% 10%;
  justify-items: center;
    align-items: center;
    padding-bottom: 8%;
}
.works-down-left{
  grid-column-start: 2;
}
.works-down-left img{
  width:  100%;
  
}
.works-down-right{
  grid-column-start: 3;
}
.works-down-right img{
  width:  100%;
  
}
/* Transición suave */
.works img {
  transition: filter .4s ease;
}

/* Estado controlado por JS */
.works img.auto-bw { filter: grayscale(100%); }
.works img.auto-color { filter: none; }

/* (Opcional) Si quieres que el hover devuelva a color SOLO cuando esté en auto-bw */
.works img.auto-bw:hover { filter: none; }

/* Efecto de giro horizontal que ya tenías (para textos) */
@keyframes spinY360 {
  0%   { transform: rotateY(0deg);   opacity: .95; }
  40%  { transform: rotateY(180deg); opacity: .7;  }
  60%  { transform: rotateY(180deg); opacity: .7;  }
  100% { transform: rotateY(360deg); opacity: 1;   }
}
.spinY-run {
  display: inline-block;
  transform-origin: 50% 50%;
  animation: spinY360 700ms ease both;
  backface-visibility: hidden;
  will-change: transform;
}
.rotator, .word-spin { display: inline-block; perspective: 1000px; }

@media (prefers-reduced-motion: reduce) {
  .spinY-run { animation: none !important; }
}

/* Variables de control */
.contact-slide {
  --bg: #e51271;
  --gap: 15px;       /* separación entre items (dentro del grupo) */
  --speed: 60s;      /* menos = más rápido */
  --height: 80px;    /* alto de la franja */
  background: var(--bg);
  overflow: hidden;
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 400;
}

/* Track animado (sin gap aquí para evitar el “corte”) */
.contact-slide .marquee {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll-x var(--speed) linear infinite;
  will-change: transform;
}

/* Cada grupo (mismo contenido duplicado) */
.contact-slide .marquee__group {
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  height: var(--height);
  padding: 0 var(--gap);  /* el “espaciado” entre grupos */
  flex: 0 0 auto;
}

/* Items */
.contact-slide img {
  width: 50px; height: auto; flex: 0 0 auto;
}

.contact-slide p {
  margin: 0; line-height: 1;
  color: #fff; font-weight: 700;
  letter-spacing: 20px; white-space: nowrap; flex: 0 0 auto;
}

/* Animación: desplaza exactamente la mitad (2 grupos idénticos) */
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Pausa opcional al hover */
.contact-slide:hover .marquee { animation-play-state: paused; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .contact-slide .marquee { animation: none; transform: none; }
}
.offer{
 
    background-size: cover;       /* Cubre toda la pantalla aunque se recorte */
    background-position: center;  /* Centra la imagen */
    background-repeat: no-repeat;
    padding-bottom: 3%;

}
.offer-hero{
  display: grid;
  grid-template-columns: 10% 40% 40% 10%;
}
.offer-hero-left{
  grid-column-start: 2;
  display: flex;

  justify-content: center;
  flex-direction: column;
 align-items: flex-end;

 text-align: left;
 width: 100%;
}
.offer-hero-left h1{
     font-family: 'Gotham Rounded', sans-serif;
 font-size: 70px;
}
.sp-start-pack{
  background-color: #e51271;
  padding: 5px;
  border-radius: 13px;
}
.offer-hero-left p{
  width: 100%;
  font-family: 'Gotham Rounded', sans-serif;
}
.offer-sp{
 
  font-weight: 100;

}
.offer-hero-right{
  grid-column-start: 3;
  display: flex;

 align-items: center;

}
.offer-hero-right img{
  height: 67%;
  z-index: 0;
}
#servicios{
  margin-left: 10%;
  margin-right: 10%;
  background-color: #e51271;
  border-radius: 13px;
}
#tabs{
  display: flex;
  align-items: center;
  align-items: center;
    justify-content: center;
    width: 100%;
 padding-top: 2%;
 padding-bottom: 2%;
    
}
.btns-start{
  display: flex;
  flex-direction: column;
  width:100%;
  margin-left: 2%;
  margin-right: 2%;
  border-style: none;
  border-radius: 13px;
  font-family: 'Gotham Rounded', sans-serif;
  cursor: pointer;
  font-weight: 400;
  color: #676767;
  font-size: 16px;
  background-color: #fff;
  align-items: center;

}
#contenido{
  display: grid;
   
  grid-template-columns: 20% 60% 20%;
  width: 100%;
    height: 100%;
    padding-bottom: 3%;
  

}
#div1{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;

    height: 100%;
  
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 800;
  border-radius: 13px; 
  margin-left: 10%;
 margin-right: 2%;
   color: #e51271;
 padding: 5px;
}
#div2{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;
 
  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 800;
  border-radius: 13px; 
padding: 5px;
  margin-left: 2%;
   color: #676767;
   font-weight: 100;
 margin-right: 2%;

}
#div3{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  height: 100%;

  font-family: 'Gotham Rounded', sans-serif;
  font-weight: 800;
  border-radius: 13px; 
  text-align: center;
   margin-left: 2%;
 margin-right: 10%;
 padding: 5px;
    color: #e51271;
 
}
.img-btns{
  width:30%;
}
/* Paleta y tipografía */
:root {
  --brand-primary: #e51271;
  --text-main: #000000;
  --text-muted-2: #676767;
}

.btn-primary,
.nav-pills .nav-link.active {
  background-color: var(--brand-primary) !important;
  border-color: var(--brand-primary) !important;
  font-family: 'Gotham Rounded', sans-serif;
}
.btn-outline-primary,
.nav-pills .nav-link {
  color: var(--brand-primary);
  border-color: var(--brand-primary);
  font-family: 'Gotham Rounded', sans-serif;
}
.btn-outline-primary:hover,
.nav-pills .nav-link:hover {
  background-color: var(--brand-primary);
  color: #fff;
}
.text-muted { color: var(--text-muted-2) !important; 
font-family: 'Gotham Rounded', sans-serif;}

/* Botones de servicio */
.service-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .85rem;
  border-radius: 999px;
}
.service-btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Tarjetas de paquetes */
.package-card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand-primary);
}
.package-card ul {
  margin: 0 0 .5rem 0;
}
/* ================== CONTACT SECTION (SCOPED) ================== */
#form-contact-section {
  /* variables solo dentro de la sección */
  --brand: #e51271;
  --text: #000000;
  --muted: #676767;
  --bg: #c8f56a; /* ajusta si quieres otro verde de fondo */

margin-left: 10%;
margin-right: 10%;
}

#form-contact-section .form-contact__wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

#form-contact-section .form-contact__img img {
  width: 100%;
  height: auto;
  display: block;
}

#form-contact-section .form-contact__title {
  margin: 0 0 .75rem 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-family: 'Gotham Rounded', sans-serif;
  line-height: 1.1;
}

#form-contact-section .form-contact {
  max-width: 420px;
}

#form-contact-section .form-contact__label {
  display: block;
  margin: .75rem 0 .25rem;
  font-size: .92rem;
  color: var(--muted);
}

#form-contact-section .form-contact__input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--text);
  padding: .6rem .2rem;
  outline: none;
  font-size: 1rem;
}
#form-contact-section .form-contact__input:focus {
  border-bottom-color: var(--brand);
}

#form-contact-section .form-contact__btn {
  margin-top: 1.2rem;
  background: var(--text);
  color: #fff;
  border: 0;
  padding: .7rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
#form-contact-section .form-contact__btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

#form-contact-section .form-contact__msg {
  margin-top: .75rem;
  font-size: .95rem;
  color: var(--text);
}
#form-contact-section .form-contact__msg.ok { color: #137a1b; }
#form-contact-section .form-contact__msg.err { color: #b00020; }

/* honeypot oculto */
#form-contact-section .form-contact__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

/* Responsive */
@media (max-width: 900px) {
  #form-contact-section .form-contact__wrap { grid-template-columns: 1fr; }
  #form-contact-section .form-contact__img { order: 2; }
  #form-contact-section .form-contact__col { order: 1; }
}
/* ================== CLIENTS SECTION (SCOPED) ================== */
#clients-section{
  /* variables locales */
  --brand: #e51271;
  --text: #000000;
  --muted: #676767;
  --panel-bg: #f2f2f2; /* fondo claro del panel */
  --panel-border: rgba(0,0,0,.25);
margin-left: 10%;
margin-right: 10%;
  padding: 1.5rem 0;
  font-family: 'Gotham Rounded', sans-serif;
}

#clients-section .clients-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
 
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

#clients-section .clients-title{
  margin: 0 0 .75rem 0;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  color:#676767;
  font-weight: 500; /* se parece al look del mock */
}

/* Grid de logos */
#clients-section .clients-logos{
  list-style: none;
  margin: 0;
  padding: .5rem .5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem 2rem;
  align-items: center;
  justify-items: center;
}

#clients-section .clients-item{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px; /* alinea visualmente */
}

#clients-section .clients-item img{
  max-width: 80px;  /* controla tamaño máximo */
  width: 100%;
  height: auto;
  filter: grayscale(100%) contrast(1) opacity(.8);
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
  mix-blend-mode: multiply; /* ayuda con fondos claros */
}

#clients-section .clients-item img:hover{
  filter: grayscale(0%) opacity(1);
  transform: translateY(-2px);
}

/* Borde redondeado como en el mock */
#clients-section .clients-wrap{
  border-radius: 14px;
}

/* Responsive pequeños ajustes */
@media (max-width: 640px){
  #clients-section .clients-logos{
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem 1.25rem;
  }
}

/* Accesibilidad: si el usuario prefiere menos animación */
@media (prefers-reduced-motion: reduce){
  #clients-section .clients-item img{
    transition: none;
  }
}
/* ========================= MASTHEAD (SCOPED) ========================= */
#mh-section {
  --brand: #e51271;
  --text: #000;
  --muted: #676767;
  --panel: #f0f0f0;

background-color: #fff;
    font-family: 'Gotham Rounded', sans-serif;
 
}

/* contenedor */
#mh-section .mh-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1rem 1.25rem;
}

/* nav superior */
#mh-section .mh-nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; padding: .25rem .25rem .75rem;
  border-bottom: 1px solid #e51271;
}
#mh-section .mh-menu{
  display:flex; flex-wrap:wrap; gap:1.25rem;
  list-style:none; margin:0; padding:0;
}
#mh-section .mh-link{
  text-decoration:none; color:var(--text);
  font-size:.95rem;
}
#mh-section .mh-link--active{
  font-weight:600;
  position:relative;
}
#mh-section .mh-link--active::after{
  content:""; position:absolute; left:0; bottom:-6px;
  width:100%; height:2px; background:var(--text);
}

#mh-section .mh-actions{ display:flex; gap:.5rem; }
#mh-section .mh-icon{
  width:36px; height:36px; border-radius:999px; border:1px solid rgba(0,0,0,.15);
  background:transparent; display:grid; place-items:center; cursor:pointer;
}
#mh-section .mh-icon img{ width:18px; height:18px; display:block; }

/* grid principal */
#mh-section .mh-content{
  display:grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; align-items:center;
  padding-top: .75rem;
}
#mh-section .mh-title{
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 .5rem 0; line-height:1.1;
}
#mh-section .mh-form{ max-width: 360px; }
#mh-section .mh-label{
  display:block; font-size:.85rem; color:var(--muted);
  margin:.6rem 0 .2rem;
}
#mh-section .mh-input{
  width:100%; border:none; border-bottom:1px solid var(--text);
  background:transparent; padding:.55rem .2rem; font-size:1rem; outline:none;
}
#mh-section .mh-input:focus{ border-bottom-color:var(--brand); }

#mh-section .mh-btn{
  margin-top:.8rem; background:#e51271; /* el verde del mock (ajústalo si quieres) */
  border:none;
  color:#fff; font-weight:800; letter-spacing:.5px;
  padding:.55rem 1.1rem; border-radius:999px; cursor:pointer;
}
#mh-section .mh-msg{ margin-top:.5rem; font-size:.9rem; color:var(--muted); }

#mh-section .mh-logo{
  max-width: 320px; width:100%; height:auto; display:block;
  /* Si el logo es muy oscuro, puedes mezclar: */
  /* mix-blend-mode:multiply; */
}

/* líneas superior/inferior opcionales como en el mock
#mh-section { box-shadow: inset 0 2px 0 #2c95d8, inset 0 -2px 0 #2c95d8; }
*/

/* responsive */
@media (max-width: 900px){
  #mh-section .mh-content{ grid-template-columns: 1fr; }
  #mh-section .mh-col--right{ text-align:center; }
  #mh-section .mh-logo{ margin-inline:auto; }
}

/* Variables eliminadas. Se aplica el color directamente */

.services-section{
  margin-top: 40px;
  margin-bottom: 40px;
}

.services-wrapper{
  margin-left: 10%;
  margin-right: 10%;
}

/* Tabs */
.services-tabs .nav-link{
  border-radius: 999px;
  padding: .6rem 1.25rem;
  font-weight:600;
  border:2px solid transparent;
  color:#111;
  background:#fff;
}
.services-tabs .nav-link.active{
  color:#fff;
  background:#e51271;
  border-color:#e51271;
}

/* Panel */
.services-panel{
  border:2px solid #e51271;
  border-radius: 16px;
  padding: 1.75rem;
 background:/* estrellas laterales (SVG embebido). Quita estas 2 líneas si no quieres estrellas */ /* manchas rosas (marca) */ radial-gradient(1200px 800px at 18% -8%, rgba(229, 18, 113, 0.18), transparent 60%), radial-gradient(900px 700px at 82% 0%, rgba(229, 18, 113, 0.16), transparent 60%), radial-gradient(850px 650px at 22% 88%, rgba(229, 18, 113, 0.18), transparent 62%), radial-gradient(800px 700px at 72% 92%, rgba(229, 18, 113, 0.16), transparent 62%), /* manchas durazno */ radial-gradient(1000px 900px at 90% 48%, rgba(245, 114, 96, 0.20), transparent 62%), radial-gradient(900px 800px at 12% 46%, rgba(245, 114, 96, 0.18), transparent 60%), /* base */ var(--bg);
}

/* Chips */
.chips-box{
  display:flex;
  flex-wrap:wrap;
  gap:.75rem;
}

.chip{
  padding:.45rem .9rem;
  border-radius:999px;
  background:#e51271;
  color:#fff;;
  font-weight:600;

  transition: all .2s ease;
  cursor: crosshair;
}
/* Footer */
.mh-footer{
  border-top: 1px solid #eee;
  padding: 16px 3%;
  background: #fff;
}
.mh-footer-menu{
  margin: 0; padding: 0; list-style: none;
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
}
.mh-footer .mh-link{
  text-decoration: none;
  color: #676767;
  font-weight: 600;
  position: relative;
  transition: color .2s ease;
}
.mh-footer .mh-link:hover{ color: #e51271; }
.mh-footer .mh-link.is-active{
  color: #e51271;
}

/* Opcional: barra inferior animada en el activo */
.mh-footer .mh-link::after{
  content: "";
  position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: #e51271;
  transition: width .25s ease;
}
.mh-footer .mh-link.is-active::after{ width: 100%; }

/* Para que el ancla no quede oculto por el header fijo:
   Aplica esta clase a cada sección destino (#nuestro-trabajo, etc.) */
.scroll-target{
  scroll-margin-top: 96px; /* ajusta según la altura real de tu header (80–100px) */
}

/* Responsive (opcional) */
@media (max-width: 480px){
  .mh-footer .mh-link{ font-weight: 700; }
}
.chip:hover{ border-color: #e51271; transform: translateY(-1px); }
.chip-accent{ background:#e51271; color:#fff; border-color:#e51271; }

/* Ilus box */
.illus{
  width: 100%; max-width: 420px;
  aspect-ratio: 1 / 1;
  
  border-radius: 20px;

  display:flex; align-items:center; justify-content:center;
  font-weight:700; color:#666;
  margin:auto;
}
.illus img{
  width: 100%;
}
@media (max-width: 520px){
  .hero{
    margin-top: 25%;
  }

  .hero-content{
   display: flex;

  }
.left-hero{
 display: none ;
}
.right-hero{
display: none ;
}
.offer{
  margin-left: 10%;
  margin-right: 10%;
}
.offer-hero{
  display: flex;
  flex-direction: column;
}
.offer-hero-left{
  align-items: center;
}
.offer-hero-right img{
  width: 100%;
}
#servicios{
  display: none;
}
.form-contact__wrap{
  display: flex;
  flex-direction: column-reverse;
}
.works{
  margin-left: 10%;
  margin-right: 10%;
}
.work-tt{
  display: none;
}
.works-top{
  display: flex;
  flex-direction: column;
}
.works-center{
  display: flex;
  flex-direction: column;
}
.works-down{
  display: none;
}
.works-center-right{
  display: none;
}
.works-top-center {
  height: 400px;
  

}
.works-top-center h1{
  font-size: 70px;
}

}