/* =====================================================================
   CLEAN VIBES — sitio estático bespoke
   Limpieza residencial · Airbnb · comercial  ·  Gladimar Aponte
   Tel/WhatsApp 787-922-3484 · IG @cleanvibespr

   DISEÑO: "sticker & espuma".
   El negocio ya tiene dos piezas gráficas propias y el sitio se construye
   con ESAS dos, no con una plantilla de limpieza:
     1. El logo es un STICKER troquelado (borde blanco grueso, esquinas
        redondeadas, sombra suave). Por eso TODA foto del sitio va montada
        igual: marco blanco grueso + esquinas redondeadas + sombra + una
        ligera rotación. Es el motivo estructural del sitio.
     2. El póster oficial de servicios aporta el fondo de cuadros ondulado,
        las burbujas de jabón, la estrella de 4 puntas, las tarjetas tipo
        píldora con el check en círculo y la tipografía script del titular.

   PALETA — medida con PIL sobre el póster y el logo, no inventada:
     póster: script #2f6e81 · banda inferior #84c7c9 · fondo #e4f2f3 / #f9fefe
     logo:   amarillo #fed611 · azul #1292d1 · burbuja #23c6f2 · azul osc #0a70b6
   El póster (que es lo que la dueña ya usa para vender) manda: teal + blanco.
   El amarillo del logo es acento puntual, nunca color dominante.

   TIPO: Pacifico (script, igual que los titulares del póster) ·
         Outfit (títulos/UI, geométrica como el cuerpo del póster) ·
         Nunito Sans (texto, terminaciones redondeadas como el logo).

   NOTA DE ASSETS: las fotos salen de capturas de historias de Instagram a
   976×1316. Se recortó la interfaz de IG (flechas, puntos, tira inferior) y
   se exportaron a webp entre 740 y 1000 px de ancho. No estirar ninguna
   más allá de ~900 px de CSS. Si Gladimar entrega los originales, re-exportar.
   ===================================================================== */

:root {
  --tinta:      #10353f;
  --tinta-2:    #16424e;
  --teal:       #2d6c7d;
  --teal-claro: #4d8a99;
  --teal-med:   #84c7c9;
  --teal-suave: #c2e2e3;
  --agua:       #e4f2f3;
  --espuma:     #f4fbfb;
  --blanco:     #ffffff;

  --sol:        #fdd212;
  --sol-osc:    #d9a800;
  --cielo:      #1292d1;
  --burbuja:    #23c6f2;
  --wa:         #1fa855;
  --wa-osc:     #17853f;

  --texto:      #3a545c;
  --texto-2:    #67838c;
  --linea:      rgba(45, 108, 125, .16);
  --linea-2:    rgba(45, 108, 125, .28);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --sombra:     0 2px 4px rgba(16, 53, 63, .05), 0 14px 30px -16px rgba(16, 53, 63, .28);
  --sombra-lg:  0 4px 10px rgba(16, 53, 63, .06), 0 34px 66px -30px rgba(16, 53, 63, .42);
  --sombra-st:  0 3px 6px rgba(16, 53, 63, .08), 0 22px 44px -20px rgba(16, 53, 63, .38);

  --wrap: 1180px;
  --pad:  clamp(20px, 5vw, 40px);

  /* cuadros del póster: tablero de ajedrez suave, se inclina con transform */
  --check: repeating-conic-gradient(rgba(45,108,125,.075) 0% 25%, transparent 0% 50%);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--texto);
  background: var(--blanco);
  overflow-x: hidden;
}
/* height:auto es obligatorio: los <img> llevan width/height como atributos y
   el height del HTML le gana a cualquier aspect-ratio del CSS. */
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--tinta);
  line-height: 1.12;
  letter-spacing: -.018em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.45rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
a  { color: var(--teal); }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--cielo); outline-offset: 3px; border-radius: 6px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }

/* script del póster */
.script {
  font-family: Pacifico, cursive;
  font-weight: 400;
  color: var(--teal);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 .15em;
}
.script--claro { color: var(--teal-med); }

/* ---------- botones ---------- */
.btn {
  --bg: var(--teal); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: Outfit, sans-serif; font-weight: 600; font-size: .98rem;
  padding: .82em 1.5em; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  box-shadow: 0 2px 0 rgba(16,53,63,.10), 0 10px 20px -12px rgba(16,53,63,.55);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 3px 0 rgba(16,53,63,.10), 0 16px 28px -14px rgba(16,53,63,.6); }
.btn:active { transform: translateY(0); }
.btn--lg { font-size: 1.05rem; padding: .95em 1.8em; }
.btn--block { width: 100%; }
.btn--wa { --bg: var(--wa); }
.btn--wa:hover { background: var(--wa-osc); }
.btn--sol { --bg: var(--sol); --fg: #35300a; }
.btn--sol:hover { background: #ffdf3d; }
.btn--claro { --bg: #fff; --fg: var(--teal); }
.btn--ghost {
  --bg: transparent; --fg: var(--teal);
  box-shadow: inset 0 0 0 2px var(--linea-2);
}
.btn--ghost:hover { background: rgba(255,255,255,.7); box-shadow: inset 0 0 0 2px var(--teal); }

/* ---------- motivo sticker (marco troquelado, como el logo) ---------- */
.sticker {
  margin: 0;
  background: #fff;
  padding: 9px;
  border-radius: var(--r-lg);
  box-shadow: var(--sombra-st);
  overflow: hidden;
}
.sticker > img { border-radius: calc(var(--r-lg) - 9px); width: 100%; }
.sticker--tilt-a { transform: rotate(-1.6deg); }
.sticker--tilt-b { transform: rotate(2.1deg); }

/* ---------- burbujas de jabón (del logo) ---------- */
.bubbles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bub {
  position: absolute; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.95) 0 8%, rgba(255,255,255,.35) 14%, transparent 32%),
    radial-gradient(circle at 68% 74%, rgba(255,255,255,.30) 0 16%, transparent 40%),
    linear-gradient(150deg, rgba(35,198,242,.42), rgba(18,146,209,.30));
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5);
  animation: float 14s ease-in-out infinite;
}
.bub--1 { width: 92px;  height: 92px;  left: 4%;   top: 18%; animation-duration: 17s; }
.bub--2 { width: 46px;  height: 46px;  left: 14%;  top: 62%; animation-duration: 12s; animation-delay: -3s; }
.bub--3 { width: 26px;  height: 26px;  left: 30%;  top: 12%; animation-duration: 10s; animation-delay: -6s; }
.bub--4 { width: 132px; height: 132px; right: 3%;  top: 8%;  animation-duration: 21s; animation-delay: -8s; }
.bub--5 { width: 34px;  height: 34px;  right: 22%; top: 72%; animation-duration: 13s; animation-delay: -2s; }
.bub--6 { width: 60px;  height: 60px;  right: 12%; bottom: 6%; animation-duration: 16s; animation-delay: -9s; }
.bub--7 { width: 18px;  height: 18px;  left: 52%;  bottom: 14%; animation-duration: 9s; animation-delay: -4s; }
.bubbles--quiet .bub { opacity: .55; }
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33%      { transform: translate3d(14px,-24px,0) scale(1.05); }
  66%      { transform: translate3d(-10px,-12px,0) scale(.97); }
}
@media (prefers-reduced-motion: reduce) { .bub { animation: none; } }

/* ---------- borde de espuma entre secciones ---------- */
.foam {
  position: absolute; left: 0; right: 0; height: 26px; pointer-events: none;
  background:
    radial-gradient(circle at 18px 26px, var(--agua) 17px, transparent 18px) repeat-x 0 0 / 36px 26px,
    radial-gradient(circle at 13px 26px, var(--agua) 12px, transparent 13px) repeat-x 18px 0 / 26px 26px;
}
.foam--top { top: -25px; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--linea);
}
.nav__inner { display: flex; align-items: center; gap: 18px; min-height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.brand img { width: 52px; height: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__txt b {
  font-family: Outfit, sans-serif; font-weight: 800; font-size: 1.16rem;
  color: var(--tinta); letter-spacing: -.02em;
}
.brand__txt i {
  font-style: normal; font-size: .68rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--teal-claro); font-weight: 700;
}
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links > a {
  font-family: Outfit, sans-serif; font-weight: 500; font-size: .93rem;
  color: var(--texto); text-decoration: none; padding: .5em .72em; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links > a:hover { background: var(--agua); color: var(--tinta); }
.nav__menu-cta { display: none; }
.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: Outfit, sans-serif; font-weight: 600; font-size: .94rem;
  color: var(--tinta); text-decoration: none; white-space: nowrap;
}
.nav__phone svg { width: 17px; height: 17px; color: var(--teal); }
.nav__toggle {
  display: none; background: var(--agua); border: 0; color: var(--tinta);
  width: 44px; height: 44px; border-radius: 14px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 23px; height: 23px; }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--espuma), var(--agua) 78%, var(--agua)); }
.hero__check {
  position: absolute; inset: -20% -25%;
  background: var(--check);
  background-size: 74px 74px;
  transform: rotate(-7deg);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 25%, transparent 78%);
  opacity: .9;
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(36px, 6vw, 62px);
  padding-bottom: clamp(56px, 8vw, 92px);
}
.hero__logo { width: clamp(148px, 21vw, 210px); margin-bottom: 14px; }
.hero__script { margin-bottom: .2em; }
.hero h1 { margin-bottom: .38em; }
.hero__sub { font-size: clamp(1.02rem, 1.5vw, 1.16rem); max-width: 34em; color: var(--texto); }
.hero__sub b { color: var(--tinta); font-weight: 700; }
.hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.hero__chips li {
  display: inline-flex; align-items: center; gap: .4em;
  background: rgba(255,255,255,.8); border: 1px solid var(--linea);
  color: var(--tinta); font-family: Outfit, sans-serif; font-weight: 500;
  font-size: .85rem; padding: .38em .85em; border-radius: 999px;
}
.hero__chips svg { width: 14px; height: 14px; color: var(--teal); }

.hero__art { position: relative; }
.hero__ph1 { width: 84%; }
.hero__ph2 {
  position: absolute; right: -2%; bottom: -6%; width: 46%;
  box-shadow: var(--sombra-lg);
}
.hero__badge {
  position: absolute; left: -4%; bottom: 16%;
  display: flex; align-items: center; gap: 9px;
  background: var(--sol); color: #35300a;
  padding: .7em 1.1em; border-radius: 999px;
  box-shadow: 0 3px 0 rgba(16,53,63,.10), 0 18px 30px -16px rgba(16,53,63,.6);
  transform: rotate(-5deg);
}
.hero__badge svg { width: 22px; height: 22px; }
.hero__badge span {
  display: flex; flex-direction: column; line-height: 1.05;
  font-family: Outfit, sans-serif; font-weight: 800; font-size: 1.02rem;
}
.hero__badge b { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; opacity: .72; }

/* ============ TIRA DE CONFIANZA ============ */
.strip { background: var(--teal-med); color: var(--tinta); }
.strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
  padding-block: 26px;
}
.strip__item { display: flex; align-items: flex-start; gap: 11px; padding: 6px 14px; }
.strip__item + .strip__item { border-left: 1px solid rgba(16,53,63,.16); }
.strip__item svg { width: 24px; height: 24px; flex: none; color: var(--tinta); margin-top: 2px; }
.strip__item p { margin: 0; font-size: .89rem; line-height: 1.45; color: rgba(16,53,63,.82); }
.strip__item b {
  display: block; font-family: Outfit, sans-serif; font-weight: 700;
  font-size: .98rem; color: var(--tinta); letter-spacing: -.01em;
}

/* ============ SECCIONES ============ */
.sec { position: relative; padding-block: clamp(56px, 8vw, 96px); }
.sec--agua { background: var(--agua); }
.sec--tinta { background: var(--tinta); color: rgba(255,255,255,.8); }
.sec--tinta h2, .sec--tinta h3 { color: #fff; }
.sec__head { max-width: 44rem; margin-bottom: clamp(30px, 4vw, 48px); }
.sec__head h2 { margin-bottom: .3em; }
.sec__sub { font-size: 1.05rem; color: var(--texto-2); margin: 0; }
.sec--tinta .sec__sub { color: rgba(255,255,255,.6); }

/* ---------- servicios (píldoras del póster) ---------- */
.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc__card {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-start; gap: 15px;
  background: var(--espuma);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: var(--r-xl);
  padding: 30px 28px 30px 24px;
  box-shadow: var(--sombra);
  transition: transform .18s ease, box-shadow .18s ease;
}
.svc__card:hover { transform: translateY(-3px); box-shadow: var(--sombra-lg); }
.svc__card--wide { grid-column: 1 / -1; }
/* marca de agua: el icono de la categoría, grande y casi invisible, en la
   esquina — identifica la tarjeta sin competir con el check del póster */
.svc__wm {
  position: absolute; right: -14px; top: -12px;
  color: var(--teal); opacity: .085; pointer-events: none;
}
.svc__wm svg { width: 108px; height: 108px; }
.svc__card--wide .svc__wm { right: 24px; top: -6px; }
.svc__check {
  position: relative; z-index: 1;
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: var(--teal);
  box-shadow: inset 0 0 0 2.5px var(--teal-med);
  margin-top: 1px;
}
.svc__check svg { width: 19px; height: 19px; }
.svc__body { min-width: 0; position: relative; z-index: 1; }
.svc__card h3 {
  font-size: 1.06rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--teal); font-weight: 700; margin-bottom: .3em;
}
.svc__card p { margin: 0; font-size: .98rem; }
.svc__extras { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.svc__extras li {
  display: inline-flex; align-items: center; gap: .45em;
  background: #fff; border: 1px solid var(--linea);
  font-family: Outfit, sans-serif; font-weight: 500; font-size: .88rem;
  color: var(--tinta); padding: .42em .9em; border-radius: 999px;
}
.svc__extras svg { width: 16px; height: 16px; color: var(--teal-claro); }
.svc__note {
  margin: 26px 0 0; text-align: center; font-size: 1rem; color: var(--texto-2);
}
.svc__note b { color: var(--tinta); }

/* ---------- comercial ---------- */
.com { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.com__txt p { color: rgba(255,255,255,.72); }
.com__list { margin: 22px 0 28px; display: grid; gap: 12px; }
.com__list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .98rem; color: rgba(255,255,255,.85);
}
.com__list svg { width: 19px; height: 19px; flex: none; margin-top: 4px; color: var(--sol); }
.com__art { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.com__art figure:first-child { margin-top: 26px; }

/* ---------- antes / después ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(14px, 2.4vw, 26px); }
.ba__card {
  position: relative; margin: 0;
  background: #fff; padding: 9px 9px 9px;
  border-radius: var(--r-lg); box-shadow: var(--sombra-st); overflow: hidden;
}
.ba__card img { border-radius: calc(var(--r-lg) - 9px); width: 100%; }
.ba__tag {
  position: absolute; z-index: 2; top: 22px; left: 22px;
  font-family: Outfit, sans-serif; font-weight: 700; font-size: .8rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .45em 1.05em; border-radius: 999px;
  box-shadow: 0 8px 18px -10px rgba(16,53,63,.9);
}
.ba__tag--antes { background: var(--tinta); color: #fff; }
.ba__tag--despues { background: var(--sol); color: #35300a; }
.ba__note {
  display: flex; gap: 12px; align-items: flex-start;
  max-width: 46rem; margin: 26px auto 0; padding: 18px 22px;
  background: var(--agua); border-radius: var(--r-md);
  font-size: .96rem; color: var(--texto);
}
.ba__note svg { width: 20px; height: 20px; flex: none; color: var(--teal); margin-top: 3px; }

/* ---------- airbnb ---------- */
.air { display: grid; grid-template-columns: .92fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.air__art { position: relative; padding-bottom: 12%; }
.air__art > figure:first-child { width: 82%; }
.air__ph2 { position: absolute; right: 0; bottom: 0; width: 52%; }
.air__list { display: grid; gap: 14px; margin: 22px 0 28px; }
.air__list li {
  padding-left: 18px; border-left: 3px solid var(--teal-med);
  font-size: .97rem; color: var(--texto);
}
.air__list b {
  display: block; font-family: Outfit, sans-serif; font-weight: 700;
  color: var(--tinta); font-size: 1.02rem;
}

/* ---------- galería ---------- */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); }
.gal__i { transform: none; position: relative; }
/* tiles parejos: las capturas de origen tienen alturas distintas, así que se
   recortan a 4:5 con object-fit en vez de dejar la rejilla dentada */
.gal__i img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gal__i figcaption {
  padding: 12px 6px 4px;
  font-family: Outfit, sans-serif; font-weight: 600; font-size: .86rem;
  letter-spacing: .02em; color: var(--teal-claro); text-align: center;
}
.gal__i:nth-child(3n+1) { transform: rotate(-1.1deg); }
.gal__i:nth-child(3n+3) { transform: rotate(1.3deg); }

/* ---------- reseñas ---------- */
.sec__head--claro .sec__sub { color: rgba(255,255,255,.55); }
.rev { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev__card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r-lg); padding: 26px 24px;
  display: flex; flex-direction: column;
}
.rev__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rev__stars svg { width: 17px; height: 17px; color: var(--sol); }
.rev__card p { color: rgba(255,255,255,.88); font-size: 1.02rem; margin-bottom: 18px; }
.rev__card footer {
  margin-top: auto; font-family: Outfit, sans-serif; font-weight: 600;
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal-med);
}

/* ---------- cotización ---------- */
.cot { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(28px, 4vw, 54px); align-items: start; }
.cot__intro { position: sticky; top: 96px; }
.cot__intro h2 { margin-bottom: .35em; }
.cot__aviso {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border-radius: var(--r-md); padding: 16px 18px;
  box-shadow: var(--sombra); margin: 22px 0 20px;
}
.cot__aviso svg { width: 21px; height: 21px; flex: none; color: var(--teal); margin-top: 3px; }
.cot__aviso p { margin: 0; font-size: .93rem; }
.cot__aviso b { color: var(--tinta); }
.cot__alt { display: flex; flex-wrap: wrap; gap: 18px; }
.cot__alt a {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: Outfit, sans-serif; font-weight: 600; font-size: .96rem;
  color: var(--tinta); text-decoration: none;
}
.cot__alt svg { width: 18px; height: 18px; color: var(--teal); }
.cot__alt a:hover { color: var(--teal); }

.cot__form {
  background: #fff; border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--sombra-lg);
}
.fld { border: 0; padding: 0; margin: 0 0 22px; }
.fld legend {
  font-family: Outfit, sans-serif; font-weight: 700; font-size: .98rem;
  color: var(--tinta); padding: 0; margin-bottom: 11px;
}
.req { color: var(--teal); }
.opt { font-weight: 400; font-size: .82rem; color: var(--texto-2); letter-spacing: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: Outfit, sans-serif; font-weight: 500; font-size: .92rem;
  color: var(--texto); background: var(--espuma);
  border: 1.5px solid var(--linea); border-radius: 999px;
  padding: .55em 1.05em; cursor: pointer;
  transition: all .15s ease;
}
.chip span svg { width: 17px; height: 17px; color: var(--teal-claro); }
.chip:hover span { border-color: var(--teal-med); }
.chip input:checked + span {
  background: var(--teal); border-color: var(--teal); color: #fff;
  box-shadow: 0 8px 16px -10px rgba(45,108,125,.9);
}
.chip input:checked + span svg { color: #fff; }
.chip input:focus-visible + span { outline: 3px solid var(--cielo); outline-offset: 2px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.f { margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; }
.grid2 .f { margin: 0; }
.f label {
  font-family: Outfit, sans-serif; font-weight: 600; font-size: .9rem; color: var(--tinta);
}
.f input, .f select, .f textarea {
  font-family: "Nunito Sans", sans-serif; font-size: 1rem; color: var(--tinta);
  background: var(--espuma); border: 1.5px solid var(--linea);
  border-radius: 14px; padding: .72em .9em; width: 100%;
  transition: border-color .15s ease, background .15s ease;
}
.f textarea { resize: vertical; min-height: 84px; }
.f input:focus, .f select:focus, .f textarea:focus {
  outline: none; background: #fff; border-color: var(--teal);
}
.f input.is-bad, .f select.is-bad { border-color: #d4573f; background: #fdf3f1; }
.cot__fine { margin: 12px 0 0; text-align: center; font-size: .84rem; color: var(--texto-2); }
.cot__err {
  margin: 12px 0 0; padding: 11px 14px; border-radius: 12px;
  background: #fdf0ec; color: #a63a22; font-size: .92rem; font-weight: 600;
}

/* ---------- CTA final ---------- */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--teal) 0%, var(--tinta-2) 62%, var(--tinta) 100%);
  color: rgba(255,255,255,.82); text-align: center;
  padding-block: clamp(52px, 7vw, 84px);
}
.cta__inner { position: relative; z-index: 2; }
.cta h2 { color: #fff; margin-bottom: .3em; }
.cta > .wrap > p { max-width: 34em; margin-inline: auto; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* ---------- footer ---------- */
.ft { background: var(--tinta); color: rgba(255,255,255,.62); padding-top: clamp(40px, 5vw, 62px); }
.ft__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 34px; padding-bottom: 34px; }
.ft__brand img { width: 132px; margin-bottom: 14px; }
.ft__brand p { font-size: .93rem; margin: 0; }
.ft__col h3 {
  font-size: .8rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--teal-med); margin-bottom: 14px;
}
.ft__col li { margin-bottom: 9px; }
.ft__col a {
  display: inline-flex; align-items: center; gap: .55em;
  color: rgba(255,255,255,.72); text-decoration: none; font-size: .95rem;
}
.ft__col a:hover { color: #fff; }
.ft__col svg { width: 17px; height: 17px; color: var(--teal-med); }
.ft__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  padding-block: 20px; font-size: .84rem;
}
.ft__bar p { margin: 0; }
.ft__by a { color: var(--teal-med); text-decoration: none; }
.ft__by a:hover { color: #fff; }

/* ---------- FAB WhatsApp ---------- */
.fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 4px 0 rgba(16,53,63,.14), 0 18px 32px -14px rgba(16,53,63,.75);
  transition: transform .16s ease;
}
.fab svg { width: 28px; height: 28px; }
.fab:hover { transform: scale(1.06); }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.9,.3,1);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1040px) {
  .svc { grid-template-columns: 1fr 1fr; }
  .strip__grid { grid-template-columns: 1fr 1fr; gap: 14px 4px; }
  .strip__item:nth-child(3) { border-left: 0; }
}

@media (max-width: 900px) {
  .nav__links {
    position: fixed; inset: 70px 0 auto; z-index: 59;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--linea);
    padding: 14px var(--pad) 22px;
    box-shadow: 0 24px 40px -26px rgba(16,53,63,.6);
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav__links.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__links > a { padding: .8em .6em; font-size: 1.02rem; border-radius: 12px; }
  .nav__menu-cta {
    display: inline-flex !important; align-items: center; gap: .6em;
    margin-top: 8px; font-weight: 600 !important; color: var(--tinta) !important;
    background: var(--agua); justify-content: center;
  }
  .nav__menu-cta svg { width: 18px; height: 18px; color: var(--teal); }
  .nav__menu-cta--wa { background: var(--wa); color: #fff !important; }
  .nav__menu-cta--wa svg { color: #fff; }
  /* el hamburger va pegado al borde derecho — regla fija de todos los builds.
     .nav__links pasa a position:fixed aquí, así que su margin-left:auto ya no
     empuja nada: el auto tiene que vivir en el contenedor del botón. */
  .nav__cta { margin-left: auto; }
  .nav__toggle { display: inline-flex; }
  .nav__phone, .nav__wa { display: none; }

  .hero__inner { grid-template-columns: 1fr; padding-bottom: clamp(64px, 12vw, 96px); }
  .hero__art { max-width: 480px; margin: 8px auto 0; width: 100%; }
  .hero__badge { left: 0; bottom: 10%; }

  .com, .air, .cot { grid-template-columns: 1fr; }
  .com__art { max-width: 520px; }
  .air__art { max-width: 460px; margin-inline: auto; order: 2; }
  .air__txt { order: 1; }
  .cot__intro { position: static; }
  .rev { grid-template-columns: 1fr; }
  .gal { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .brand__txt i { display: none; }
  .strip__grid { grid-template-columns: 1fr; padding-block: 20px; }
  .strip__item + .strip__item { border-left: 0; border-top: 1px solid rgba(16,53,63,.16); padding-top: 14px; }
  .svc { grid-template-columns: 1fr; }
  .ba { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .hero__btns .btn { flex: 1 1 100%; }
  .cta__btns .btn { flex: 1 1 100%; }
  .sticker--tilt-a, .sticker--tilt-b { transform: none; }
  .gal__i:nth-child(3n+1), .gal__i:nth-child(3n+3) { transform: none; }
  .hero__ph2 { width: 44%; right: 0; }
  .ft__inner { grid-template-columns: 1fr; gap: 26px; }
  .fab { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

@media (max-width: 420px) {
  .gal { grid-template-columns: 1fr; }
  .hero__badge { padding: .6em .9em; }
  .hero__badge span { font-size: .92rem; }
}
