/* ==========================================================================
   Aura — Medicina Estética · Rejuvenecimiento facial sin cirugía (Bogotá)
   Template statique calqué sur les patterns d'une landing Webflow premium.
   Tokens extraits du CSS original — voir DESIGN.md.
   ========================================================================== */

:root {
  /* Texte */
  --text-1: #0a151a;
  --text-2: #273237;
  --text-3: #536065;
  --text-subtle: #819299;
  --border: #d3e0e5;

  /* Fonds */
  --bg-primary: #f2f8fa;
  --bg-blue: #e8f5fa;
  --water: #ccf0ff;
  --sky: #a1d1e5;

  /* Marque */
  --gold: #ad8345;
  --grad-gold: linear-gradient(#e0aa5a, #a3793b 50%, #996f31);
  --navy: #11213d;
  --sapphire: #1d59b2;
  --whatsapp: #25d366;

  /* Radius */
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 8px;

  --font: "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-soft: 0 10px 40px rgba(10, 21, 26, .08);
  --shadow-pill: 0 6px 24px rgba(10, 21, 26, .12);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-2);
  background: #fff;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
h1, h2, h3 { color: var(--text-1); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
h4 { color: var(--text-1); font-weight: 600; }
p { color: var(--text-3); }
.gold { color: var(--gold); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  text-align: center;
  max-width: 880px;
  margin: 0 auto 56px;
}

/* Bouton pill or dégradé */
.btn-gold {
  display: inline-block;
  background-image: var(--grad-gold);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 100vh;
  box-shadow: var(--shadow-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 12px 28px rgba(173, 131, 69, .35); }

/* Icônes filaires or */
.icon-48, .icon-32 {
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-48 { width: 48px; height: 48px; }
.icon-32 { width: 32px; height: 32px; flex-shrink: 0; }
.check {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: var(--gold); fill: none; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round;
  margin-top: 2px;
}

/* Animations d'apparition
   (offset via la propriété `translate` pour laisser `transform` libre aux hovers) */
.reveal { opacity: 0; translate: 0 32px; transition: opacity .8s var(--ease), translate .8s var(--ease); }
.reveal.in { opacity: 1; translate: 0 0; }

/* Cascade de chargement du hero (badge → H1 → parrafo → botón) */
.hload { opacity: 0; translate: 0 24px; transition: opacity .6s var(--ease), translate .6s var(--ease); }
.hload.in { opacity: 1; translate: 0 0; }
.hload-media { opacity: 0; scale: .96; transition: opacity .6s var(--ease), scale .6s var(--ease); }
.hload-media.in { opacity: 1; scale: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .hload { opacity: 1; translate: none; transition: none; }
  .hload-media { opacity: 1; scale: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   1. NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow .3s var(--ease);
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(10, 21, 26, .08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .32em;
  color: var(--text-1);
}
.brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-3);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-1);
  transition: color .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { padding: 10px 26px; font-size: .95rem; }

/* Dropdowns desktop (Tratamientos / Resultados) */
.nav-links > li { position: relative; }
.nav-links > li > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-chev { flex-shrink: 0; transition: transform .3s var(--ease); }
.has-drop:hover .nav-chev { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 24px;
  opacity: 0;
  visibility: hidden;
  z-index: 110;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .4s;
}
.has-drop:hover .dropdown,
.has-drop:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s 0s;
}
.dropdown-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10, 21, 26, .14);
  padding: 12px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dropdown-card a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-2);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.dropdown-card a:hover { background: var(--bg-blue); color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text-1); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 76px 0 0 0;
  z-index: 99;
  background: var(--bg-primary);
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a { font-size: 1.35rem; font-weight: 600; color: var(--text-1); }
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .btn-gold { align-self: flex-start; color: #fff; }

/* ==========================================================================
   2. HERO
   ========================================================================== */
.hero {
  padding: 140px 0 0;
  background: linear-gradient(180deg, var(--bg-blue) 0%, #fff 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 100vh;
  padding: 8px 16px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 28px;
  width: fit-content;
}
.g-score { font-weight: 600; color: var(--text-1); font-size: .95rem; }
.g-stars { color: #FBBC04; font-size: .9rem; letter-spacing: 2px; }
.hero h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  line-height: 1.12;
  max-width: 620px;
  margin-bottom: 22px;
}
.hero-copy p { max-width: 470px; margin-bottom: 32px; }
.hero-media { position: relative; align-self: end; }
.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-blue);
  object-fit: cover;
  aspect-ratio: 4 / 5;
  -webkit-mask-image: linear-gradient(to bottom, black 82%, transparent);
  mask-image: linear-gradient(to bottom, black 82%, transparent);
}

/* Halo bleu derrière la photo (glow original) */
.hero-shape {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 38.75rem;
  aspect-ratio: 1;
  background: var(--water);
  border-radius: 100vh;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Pastilles flottantes — style exact original + états interactifs */
.pill {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 2rem;
  padding: .375rem 1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #e8f5fa80);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .75rem;
  font-weight: 600;
  color: #273237;
  box-shadow: 0 12px 24px #0a151a29;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  transition: color .25s var(--ease), scale .25s var(--ease), box-shadow .25s var(--ease);
}
.pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity .25s var(--ease);
  z-index: -1;
}
.pill:hover, .pill.pill-gold { color: #fff; scale: 1.06; }
.pill:hover::before, .pill.pill-gold::before { opacity: 1; }
.pill.pill-in {
  opacity: 1;
  animation: pillIn .5s var(--ease), pillFloat 6s ease-in-out infinite alternate;
}
.pill-1 { top: 8%; left: -2%; }
.pill-2 { top: 30%; right: -4%; }
.pill-3 { top: 44%; left: 0; }
.pill-4 { top: 56%; right: -2%; }
.pill-2.pill-in { animation-delay: 0s, -1.6s; }
.pill-3.pill-in { animation-delay: 0s, -3.1s; }
.pill-4.pill-in { animation-delay: 0s, -4.4s; }
@keyframes pillIn {
  from { opacity: 0; scale: .8; }
  to   { opacity: 1; scale: 1; }
}
@keyframes pillFloat {
  from { translate: 0 -6px; }
  to   { translate: 0 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .pill, .pill.pill-in { animation: none; opacity: 1; translate: none; }
}

/* ==========================================================================
   3. BANDE LOGOS (marquee)
   ========================================================================== */
.logos { background: #fff; padding: 33px 0; border-bottom: 1px solid var(--bg-primary); overflow: hidden; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track img {
  height: 60px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  margin-right: 90px; /* margin (pas gap) pour que la boucle -50% tombe juste */
  filter: grayscale(1) opacity(.55);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ==========================================================================
   4. BÉNÉFICES
   ========================================================================== */
.benefits { padding: 110px 0 120px; background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 100%); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
  max-width: 1080px;
  margin: 0 auto;
}
.benefit { text-align: center; }
.benefit .icon-48 { margin: 0 auto 20px; }
.benefit p { font-size: 1rem; max-width: 320px; margin: 0 auto; }

/* ==========================================================================
   5. ANTES / DESPUÉS (Swiper)
   ========================================================================== */
.results { background: var(--bg-blue); padding: 110px 0 120px; }
.results .section-title { margin-bottom: 48px; }
.results-slider, .why-slider { position: relative; max-width: 1320px; margin: 0 auto; padding: 0 4%; }
.results .swiper-slide {
  background: var(--water);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.results .swiper-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-lg);
  filter: saturate(.92) brightness(1.03);
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(4px);
  color: var(--text-1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.slider-prev { left: 1.2%; }
.slider-next { right: 1.2%; }

/* ==========================================================================
   6. QUÉ ES + FICHE TECHNIQUE
   ========================================================================== */
.about { background: #fff; padding: 120px 0; }
.about-grid, .process-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start;
}
.about-sticky, .process-sticky { position: sticky; top: 130px; }
.about-sticky h2, .process-sticky h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.about-sticky p, .process-sticky p { margin-bottom: 30px; max-width: 460px; }
.about-cards { display: flex; flex-direction: column; gap: 28px; }
.card-blue {
  background: var(--bg-blue);
  border-radius: var(--r-lg);
  padding: 44px 46px;
}
.card-blue h3 { font-size: 1.45rem; margin-bottom: 18px; }
.card-blue > p { margin-bottom: 26px; }
.card-blue hr { border: none; border-top: 1px solid rgba(10, 21, 26, .1); margin-bottom: 26px; }
.card-blue h4 { font-size: 1.15rem; margin-bottom: 18px; }
.checklist { display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; color: var(--text-2); font-weight: 500; }
.checklist.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.card-navy {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px 46px;
  color: #fff;
}
.card-navy .fact { display: flex; align-items: center; gap: 18px; }
.card-navy .fact p { color: rgba(255, 255, 255, .92); font-size: 1.05rem; }
.card-navy .fact strong { color: #fff; }
.card-navy hr { border: none; border-top: 1px solid rgba(255, 255, 255, .14); margin: 22px 0; }

/* ==========================================================================
   7. CANDIDATA IDEAL
   ========================================================================== */
.candidate { background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 60%, var(--bg-blue) 100%); padding: 110px 0 0; overflow: hidden; }
.candidate-stage { position: relative; max-width: 1080px; margin: 0 auto; min-height: 560px; }
.candidate-photo {
  width: min(440px, 80%);
  margin: 60px auto 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 78%, transparent 100%);
  /* Zoom progressif piloté par le scroll (js/main.js) */
  transform: scale(.82);
  opacity: .4;
  transform-origin: center bottom;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .candidate-photo { transform: none; opacity: 1; }
}
.candidate-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  padding: 22px 24px;
  width: 290px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.candidate-card p { font-size: .95rem; color: var(--text-2); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.dot-blue { background: var(--sapphire); }
.dot-sky { background: var(--sky); }
.dot-gold { background: var(--gold); }
.dot-navy { background: var(--navy); }
.cc-1 { top: 18%; left: 0; }
.cc-2 { top: 14%; right: 0; }
.cc-3 { top: 62%; left: 2%; }
.cc-4 { top: 66%; right: 2%; }
/* Reveal échelonné des 4 cartes (+120ms chacune) */
.cc-2.reveal { transition-delay: .12s; }
.cc-3.reveal { transition-delay: .24s; }
.cc-4.reveal { transition-delay: .36s; }

/* ==========================================================================
   8. PROCESO TIMELINE
   ========================================================================== */
.process { background: #fff; padding: 120px 0; }
.timeline { display: flex; flex-direction: column; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 26px; }
.step-rail { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-subtle);
  background: var(--bg-primary);
  transition: background .5s var(--ease), color .5s var(--ease), box-shadow .5s var(--ease);
  flex-shrink: 0;
}
.step.active .step-num {
  background-image: var(--grad-gold);
  color: #fff;
  box-shadow: 0 6px 18px rgba(153, 111, 49, .35);
}
.step-line { flex: 1; width: 1px; background: var(--border); margin: 10px 0; }
.step:last-child .step-line { display: none; }
.step-card {
  background: var(--bg-primary);
  border-radius: var(--r-lg);
  padding: 38px 42px;
  margin-bottom: 36px;
}
.step-card .icon-48 { margin-bottom: 18px; }
.step-card h3 { font-size: 1.35rem; margin-bottom: 14px; }

/* ==========================================================================
   9. CUIDADOS TABS
   ========================================================================== */
.care { background: var(--bg-blue); padding: 110px 0 120px; }
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
  margin-bottom: 56px;
}
.tab {
  padding: 18px 12px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-3);
  position: relative;
  transition: color .3s var(--ease);
}
.tab::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}
.tab.active { color: var(--gold); }
.tab.active::after { transform: scaleX(1); }
.tab-panel { display: none; opacity: 0; transform: translateY(12px); }
.tab-panel.active { display: block; animation: panelIn .5s var(--ease) forwards; }
@keyframes panelIn { to { opacity: 1; transform: translateY(0); } }
.tab-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.tab-cols h3 { font-size: 1.5rem; margin-bottom: 26px; }
.tab-cols img {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   10. CASOS DE ÉXITO
   ========================================================================== */
.cases { background: #fff; padding: 120px 0; }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.case-col { display: flex; flex-direction: column; gap: 24px; }
.video-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; }
.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.video-card:hover img { transform: scale(1.04); }
.video-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 21, 26, 0) 55%, rgba(10, 21, 26, .35) 100%);
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-pill);
  transition: transform .3s var(--ease);
}
.play-btn svg { margin-left: 3px; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 30px;
}
.testimonial p { color: var(--text-2); font-size: 1rem; margin-bottom: 16px; }
.testimonial footer { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.testimonial strong { color: var(--text-1); }
.testimonial span { color: var(--text-subtle); font-size: .88rem; }

/* ==========================================================================
   11. CTA BANDEAU
   ========================================================================== */
.banner {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 100%);
  padding: 130px 0;
  overflow: hidden;
}
.curve {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 320px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.curve-sky { transform: translateY(-46%); }
.banner-inner { position: relative; text-align: center; z-index: 2; }
.banner-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 640px;
  margin: 0 auto 36px;
}

/* ==========================================================================
   12. POR QUÉ ELEGIRNOS
   ========================================================================== */
.why { background: var(--bg-blue); padding: 110px 0 120px; }
.why .section-title { margin-bottom: 48px; }
.why-card {
  background: #f6fbfd;
  border-radius: var(--r-lg);
  padding: 46px 38px;
  text-align: center;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.why-card p { font-size: 1rem; color: var(--text-2); }
.why .swiper-slide { height: auto; }

/* ==========================================================================
   13. FAQ
   ========================================================================== */
.faq { background: #fff; padding: 130px 0; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: start; }
.faq-title { font-size: clamp(2.4rem, 4.5vw, 3.6rem); }
.faq-list { display: flex; flex-direction: column; gap: 18px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-1);
}
.faq-q .chev { flex-shrink: 0; color: var(--text-3); transition: transform .4s var(--ease); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a p { padding: 0 28px 26px; }

/* ==========================================================================
   14. CTA FINAL
   ========================================================================== */
.final-cta { background: linear-gradient(180deg, #fff 0%, var(--bg-primary) 100%); padding: 60px 0 140px; text-align: center; }
.final-cta h2 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); max-width: 820px; margin: 0 auto 40px; }

/* ==========================================================================
   15. FOOTER
   ========================================================================== */
.footer { background: var(--navy); color: #fff; padding: 90px 0 36px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.brand-light .brand-name { color: #fff; }
.brand-light .brand-sub { color: rgba(255, 255, 255, .6); }
.socials { display: flex; gap: 14px; margin-top: 28px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .5); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 22px; }
.footer-col ul { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { color: rgba(255, 255, 255, .75); font-size: .95rem; transition: color .25s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-sep { border: none; border-top: 1px solid rgba(255, 255, 255, .12); margin: 48px 0; }
.footer-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.footer-info h4 { color: #fff; margin-bottom: 12px; font-size: 1rem; }
.footer-info p, .footer-info a { color: rgba(255, 255, 255, .75); font-size: .95rem; }
.footer-info p + p { margin-top: 10px; }
.footer-info a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255, 255, 255, .55); font-size: .9rem; }
.footer-bottom a { color: rgba(255, 255, 255, .75); font-size: .9rem; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   16. WHATSAPP FLOTANT
   ========================================================================== */
.wa-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ==========================================================================
   RESPONSIVE — 991 / 767 / 479 (breakpoints Webflow)
   ========================================================================== */
@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy p { max-width: 100%; }
  .hero-media { max-width: 520px; margin: 0 auto; width: 100%; }

  .about-grid, .process-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-sticky, .process-sticky { position: static; }

  .candidate-stage { min-height: 0; display: flex; flex-direction: column; align-items: center; }
  .candidate-card { position: static; width: 100%; max-width: 460px; margin-top: 16px; }
  .candidate-photo { order: -1; margin-top: 20px; }

  .tab-cols { grid-template-columns: 1fr; gap: 36px; }
  .tab-cols img { order: -1; }

  .cases-grid { grid-template-columns: 1fr; gap: 48px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .benefits, .results, .about, .process, .care, .cases, .why, .faq { padding-top: 80px; padding-bottom: 88px; }
  .candidate { padding-top: 80px; }
  .banner { padding: 96px 0; }
  .benefits-grid { grid-template-columns: 1fr; gap: 44px; }
  .card-blue, .card-navy { padding: 32px 26px; }
  .checklist.two-col { grid-template-columns: 1fr; }
  .step { grid-template-columns: 40px 1fr; gap: 16px; }
  .step-num { width: 40px; height: 40px; font-size: .95rem; }
  .step-card { padding: 28px 24px; }
  .tabs { grid-template-columns: 1fr; }
  .tab { text-align: left; padding: 16px 4px; }
  .slider-arrow { width: 44px; height: 44px; }
  .footer-info { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 479px) {
  .hero h1 { font-size: 2.1rem; }
  .pill { font-size: .7rem; padding: .375rem .75rem; }
  .pill-1 { left: -3%; }
  .pill-2 { right: -3%; }
  .g-badge { padding: 7px 13px; }
  .section-title { margin-bottom: 40px; }
  .btn-gold { padding: 13px 26px; font-size: .95rem; }
  .wa-float { width: 52px; height: 52px; right: 18px; bottom: 18px; }
  .testimonial { padding: 22px 20px; }
  .faq-q { padding: 20px 20px; font-size: 1rem; }
  .faq-a p { padding: 0 20px 22px; }
}
