/* ============================================================
   BRIVO — Landing pública · Sistema base
   Paleta Violeta Disruptivo + lima · Space Grotesk
   Editá las variables de :root para tunear toda la página.
   ============================================================ */

:root {
  /* Marca */
  --brand:       #7C3AED;  /* violeta eléctrico · principal */
  --brand-deep:  #3B0F7D;  /* violeta oscuro · hero bg, gradients */
  --brand-dark:  #5B21B6;  /* pressed / círculos decor */
  --brand-light: #F4F2FA;  /* tiles, chips */
  --accent:      #84CC16;  /* lima · acentos, dots, "magia" */
  --accent-soft: #B6F03A;  /* lima brillante para halos */
  --accent-text: #365314;  /* texto sobre lima */
  --accent-tint: #E8F5D3;
  --success:     #16A34A;

  /* Texto */
  --ink:        #1E0A3C;   /* sobre claro · NUNCA #000 */
  --ink-2:      #6B47A8;
  --ink-hint:   #A78BCA;
  --on-dark:        #FFFFFF;
  --on-dark-soft:   #D6CFE8;
  --on-dark-hint:   #A78BCA;

  /* Superficie */
  --bg:        #FAF9FF;
  --bg-lime:   #F7FBE5;    /* sección prestadores */
  --bg-cat:    #FAF9FF;
  --surface:   #FFFFFF;
  --surface-2: #F4F2FA;
  --border:    #ECE7F6;
  --border-2:  #E2D9F2;

  /* Tipografía */
  --font: "Space Grotesk", system-ui, -apple-system, sans-serif;

  /* Radios */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Sombras violet-tinted */
  --sh-sm:   0 2px 8px rgba(30,10,60,0.06);
  --sh-md:   0 12px 32px rgba(30,10,60,0.10);
  --sh-lg:   0 30px 70px rgba(30,10,60,0.18);
  --sh-brand: 0 18px 50px rgba(124,58,237,0.40);
  --sh-accent: 0 10px 36px rgba(132,204,22,0.45);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io:  cubic-bezier(0.65, 0, 0.35, 1);
  --dur:      0.7s;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-text); }

/* When smooth-scroll JS is active, body is fixed-position translated */
body.has-smooth { position: fixed; inset: 0; width: 100%; }

/* ============================================================
   TIPOGRAFÍA — escala apple-style
   ============================================================ */
.eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .num { color: var(--ink-hint); font-variant-numeric: tabular-nums; }
.eyebrow.on-dark { color: var(--accent); }
.eyebrow.on-dark .num { color: var(--on-dark-hint); }

.h-display {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-step {
  font-size: clamp(30px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.lead {
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
}
.lead.on-dark { color: var(--on-dark-soft); }

/* firma de marca */
.lime { color: var(--accent); }
.dot {
  display: inline-block;
  width: 0.5em; height: 0.5em;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: baseline;
  margin-left: 0.04em;
}

/* ============================================================
   BOTONES / BADGES
   ============================================================ */
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  will-change: transform;
}
.store-badge:hover { transform: scale(1.03); box-shadow: var(--sh-md); }
.store-badge .glyph { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge .b-sub { font-size: 11px; opacity: 0.75; letter-spacing: 0.04em; }
.store-badge .b-main { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.store-badge.on-dark { background: #fff; color: var(--ink); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 16px; color: var(--brand);
  transition: gap 0.25s var(--ease-out);
}
.btn-text:hover { gap: 12px; }
.btn-text.on-dark { color: var(--accent); }

.btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: var(--r-full);
  background: var(--brand); color: #fff;
  font-weight: 600; font-size: 16px;
  box-shadow: var(--sh-brand);
  transition: transform 0.25s var(--ease-out);
}
.btn-solid:hover { transform: translateY(-2px) scale(1.02); }

/* ============================================================
   LAYOUT / SECCIONES
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.section-pad { padding: clamp(90px, 14vh, 180px) 0; }

/* color de fondo por sección + transición suave global */
.bg-deep  { background: var(--brand-deep); color: #fff; }
.bg-light { background: var(--bg-cat); }
.bg-lime  { background: var(--bg-lime); }
.bg-white { background: var(--surface); }

/* grain noise overlay reusable */
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  opacity: 0.5; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* ============================================================
   REVEAL-ON-SCROLL (Intersection Observer agrega .in)
   ============================================================ */
/* sólo se esconden si JS está activo — sin JS el contenido se ve siempre */
html.js .reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.97);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

html.js .reveal-x {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
html.js .reveal-x.from-right { transform: translateX(40px); }
html.js .reveal-x.in { opacity: 1; transform: none; }

/* ============================================================
   SPLIT-WORDS · cada palabra fade-up con stagger (Apple headlines)
   ============================================================ */
.split-words .sw-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: inherit;
}
.split-words .sw-inner {
  display: inline-block;
  will-change: transform, opacity;
  padding-bottom: 0.08em; /* descenders no se clipean */
  margin-bottom: -0.08em;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 32px;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(250,249,255,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  padding: 12px 32px;
  border-bottom: 1px solid var(--border);
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  padding: 10px 20px; border-radius: var(--r-full);
  background: var(--brand); color: #fff; font-weight: 600; font-size: 14px;
  transition: transform 0.2s var(--ease-out);
}
.nav-cta:hover { transform: scale(1.04); }
.nav.on-dark .nav-links a { color: var(--on-dark-soft); }
.nav.on-dark .nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a { color: var(--ink-2); }
.nav.scrolled .nav-links a:hover { color: var(--brand); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ============================================================
   WORDMARK
   ============================================================ */
.wordmark { display: inline-flex; align-items: flex-end; gap: 0; position: relative; }
.wordmark svg { overflow: visible; }
.wordmark .arc-stroke { transition: stroke-dashoffset 1.1s var(--ease-out); }

/* shimmer del arco en hover */
.wordmark:hover .arc-shimmer { animation: arcShimmer 1.1s var(--ease-out); }
@keyframes arcShimmer {
  0% { opacity: 0; transform: translateX(-40%); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateX(40%); }
}

/* ============================================================
   HERO (sección 1)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; flex-direction: column;
  background:
    radial-gradient(120% 90% at 50% -10%, #5B21B6 0%, #3B0F7D 45%, #2A0A5C 100%);
  color: #fff;
}
.hero .aurora {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; will-change: transform;
}
.hero .aurora.lime {
  width: 60vw; height: 60vw; right: -15vw; top: 10vh;
  background: radial-gradient(circle, rgba(132,204,22,0.42), transparent 65%);
}
.hero .aurora.lime-2 {
  width: 46vw; height: 46vw; left: -12vw; bottom: -8vh;
  background: radial-gradient(circle, rgba(132,204,22,0.22), transparent 65%);
}
.hero .aurora.violet {
  width: 50vw; height: 50vw; left: 28vw; top: -10vh;
  background: radial-gradient(circle, rgba(167,139,250,0.30), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 3; flex: 1;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding-top: clamp(120px, 18vh, 220px);
}
.hero h1 { max-width: 16ch; margin-bottom: 26px; }
.hero .lead { max-width: 30ch; margin: 0 auto 38px; }
.hero .store-badges { justify-content: center; }

.hero-phone-wrap {
  position: relative; margin-top: clamp(40px, 7vh, 80px);
  display: flex; justify-content: center; will-change: transform;
}
.hero-phone-glow {
  position: absolute; width: 120%; height: 80%; left: -10%; top: 8%;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.7), transparent 62%);
  filter: blur(60px); z-index: -1; will-change: transform;
}
.hero .phone { transform: rotate(-3deg); }

.scroll-prompt {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--on-dark-hint); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
}
.scroll-prompt svg { animation: bobble 1.8s ease-in-out infinite; }
@keyframes bobble {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(7px); opacity: 1; }
}

/* ============================================================
   SECCIÓN 2 — CÓMO FUNCIONA (scroll-pinned)
   ============================================================ */
.flow { position: relative; background: var(--brand-deep); color: #fff; }
.flow .grain { position: absolute; inset: 0; }
.flow-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 40px; max-width: var(--maxw); margin: 0 auto; padding: 0 48px;
}
/* Big number como columna stack (cada step empuja la columna -100%) */
.flow-bignum {
  position: absolute; top: 6vh; left: 48px; z-index: 1;
  font-size: clamp(120px, 22vw, 320px); line-height: 1;
  color: rgba(132,204,22,0.14); letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums; pointer-events: none;
  height: 1em; overflow: hidden;
}
.flow-bignum-stack {
  display: flex; flex-direction: column;
  font-weight: 800;
  will-change: transform;
}
.flow-bignum-stack > div { height: 1em; line-height: 1; }

.flow-text { position: relative; z-index: 4; }
/* Step[0] visible por CSS en first paint (antes de que arranque el JS).
   Cuando GSAP toma el control hace gsap.set() y deja step[0] visible
   también — no hay flash. Sin transitions CSS · GSAP maneja todo el
   crossfade vía timeline scroll-locked.

   IMPORTANTE: max-width va a los CHILDREN, no al wrap. La unidad `ch`
   se calcula con el font-size del elemento — si la ponés en .flow-step
   (que hereda 16px del body), 19ch = 152px y la línea wrappea por
   palabra. Acá ponemos max-width específicos en .h-step y .lead que
   sí tienen font-size propio. */
.flow-step {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.flow-step.active { opacity: 1; pointer-events: auto; }
.flow-step .eyebrow { margin-bottom: 18px; }
.flow-step .h-step  { margin-bottom: 18px; max-width: 13ch; }
.flow-step .lead    { max-width: 28ch; }

.flow-phone-col {
  position: relative; z-index: 3; display: flex; justify-content: center; align-items: center;
  height: 100%;
  will-change: transform;
}
.flow-screens { position: relative; }
.flow-screen {
  position: absolute; inset: 0;
  opacity: 0;
  will-change: transform, opacity;
}
.flow-screen.active { opacity: 1; }

/* progress rail */
.flow-rail {
  position: absolute; right: 36px; top: 50%; transform: translateY(-50%);
  z-index: 6; display: flex; flex-direction: column; gap: 12px;
}
.flow-rail .tick {
  width: 4px; height: 28px; border-radius: 4px;
  background: rgba(255,255,255,0.18);
  /* height + background managed by gsap timeline en runtime;
     defaults acá para que se vean antes del primer paint del JS. */
  will-change: background, height;
}
.flow-rail .tick.active { background: var(--accent); height: 40px; }

@media (max-width: 900px) {
  .flow-sticky { grid-template-columns: 1fr; text-align: center; }
  .flow-bignum { left: 50%; transform: translateX(-50%); top: 3vh; }
  .flow-text { order: 2; height: 30vh; }
  .flow-phone-col { order: 1; }
  .flow-step { position: relative; margin: 0 auto; }
  .flow-rail { display: none; }
}

/* ============================================================
   SECCIÓN 3 — CATEGORÍAS
   ============================================================ */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px;
}
.cat-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform; min-height: 230px;
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: scale(1.04); box-shadow: var(--sh-md); }
.cat-ico {
  width: 60px; height: 60px; border-radius: var(--r-md);
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; color: var(--brand);
}
.cat-card h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 14px; }
.cat-subs { display: flex; flex-direction: column; gap: 7px; margin-top: auto; }
.cat-subs span { font-size: 14px; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.cat-subs span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
}
.cat-card.feature { grid-row: span 1; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cat-grid { grid-template-columns: 1fr; } }

/* ============================================================
   SECCIÓN 4 — CONFIANZA (split, bg deep)
   ============================================================ */
.trust { background: var(--brand-deep); color: #fff; overflow: hidden; position: relative; }
.trust .aurora-l {
  position: absolute; width: 50vw; height: 50vw; right: -16vw; top: 20%;
  background: radial-gradient(circle, rgba(132,204,22,0.16), transparent 65%);
  filter: blur(70px); pointer-events: none;
}
.trust-head { max-width: 22ch; margin-bottom: 70px; }
.trust-rows { display: flex; flex-direction: column; gap: 0; }
.trust-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px; align-items: start;
  padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.12);
}
.trust-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.trust-ico {
  width: 72px; height: 72px; border-radius: var(--r-md);
  background: rgba(132,204,22,0.14); border: 1px solid rgba(132,204,22,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.trust-row h3 { font-size: clamp(24px, 2.6vw, 36px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 12px; }
.trust-row p { font-size: clamp(16px, 1.4vw, 20px); color: var(--on-dark-soft); line-height: 1.5; max-width: 48ch; }
@media (max-width: 640px) {
  .trust-row { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
  .trust-ico { width: 60px; height: 60px; }
}

/* ============================================================
   SECCIÓN 5 — PRESTADORES (bg lima)
   ============================================================ */
.pro { background: var(--bg-lime); overflow: hidden; }
.pro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pro-bullets { display: flex; flex-direction: column; gap: 16px; margin: 34px 0 40px; }
.pro-bullets li {
  list-style: none; display: flex; align-items: center; gap: 14px;
  font-size: 18px; font-weight: 500; color: var(--ink);
}
.pro-bullets .b-check {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--accent); display: flex; align-items: center; justify-content: center;
  color: var(--accent-text);
}
.pro-phone-col { display: flex; justify-content: center; }
@media (max-width: 900px) {
  .pro-split { grid-template-columns: 1fr; gap: 40px; }
  .pro-phone-col { order: -1; }
}

/* ============================================================
   SECCIÓN 6 — ZONA (mapa Pinamar)
   ============================================================ */
.zona { background: var(--surface); }
.zona-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.zona-map { position: relative; }
.zona-map svg { width: 100%; height: auto; }
.zona-pin { transform-box: fill-box; transform-origin: center; }
.zona-pin .pulse { animation: pinPulse 2.6s var(--ease-io) infinite; transform-origin: center; }
@keyframes pinPulse {
  0% { transform: scale(0.6); opacity: 0.7; }
  70% { transform: scale(2.6); opacity: 0; }
  100% { opacity: 0; }
}
.zona-list { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.zona-list .z {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: 17px; font-weight: 500;
}
.zona-list .z .zdot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }
@media (max-width: 820px) { .zona-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   SECCIÓN 7 — FAQ
   ============================================================ */
.faq { background: var(--bg); }
.faq-list { max-width: 880px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--border-2); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 28px 0; font-size: clamp(19px, 2vw, 26px); font-weight: 600;
  letter-spacing: -0.02em; color: var(--ink);
}
.faq-q .pm { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center; color: var(--brand); transition: transform 0.4s var(--ease-out), background 0.3s, color 0.3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--brand); color: #fff; border-color: var(--brand); }
.faq-a { overflow: hidden; height: 0; transition: height 0.45s var(--ease-out); }
.faq-a-inner { padding: 0 0 30px; font-size: 18px; line-height: 1.6; color: var(--ink-2); max-width: 64ch; }

/* ============================================================
   SECCIÓN 8 — CTA FINAL + FOOTER
   ============================================================ */
.cta-final {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(120% 120% at 70% 10%, #5B21B6, #3B0F7D 55%, #2A0A5C);
}
.cta-final .aurora-l {
  position: absolute; width: 55vw; height: 55vw; left: -10vw; bottom: -20vh;
  background: radial-gradient(circle, rgba(132,204,22,0.24), transparent 65%); filter: blur(80px);
}
.cta-split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.cta-split h2 { max-width: 14ch; margin-bottom: 32px; }
.cta-phone-col { display: flex; justify-content: center; }
@media (max-width: 820px) { .cta-split { grid-template-columns: 1fr; text-align: center; } .cta-split .store-badges { justify-content: center; } .cta-phone-col { order: -1; } }

footer { background: #2A0A5C; color: var(--on-dark-soft); padding: 80px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.foot-col h4 { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-hint); margin-bottom: 20px; font-weight: 600; }
.foot-col a { display: block; padding: 7px 0; font-size: 15px; color: var(--on-dark-soft); transition: color 0.2s; }
.foot-col a:hover { color: #fff; }
.foot-brand p { font-size: 15px; color: var(--on-dark-hint); margin-top: 16px; max-width: 28ch; line-height: 1.5; }
.foot-bottom {
  margin-top: 64px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 13px; color: var(--on-dark-hint); flex-wrap: wrap;
}
@media (max-width: 820px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* ============================================================
   MODAL — captura de leads "Próximamente"
   ============================================================ */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(30,10,60,0.55); backdrop-filter: blur(8px);
  opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.modal-scrim.open { display: flex; opacity: 1; }
.modal {
  width: 100%; max-width: 460px; background: var(--surface);
  border-radius: var(--r-xl); padding: 40px 36px; position: relative;
  transform: translateY(16px) scale(0.97); opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  box-shadow: var(--sh-lg);
}
.modal-scrim.open .modal { transform: none; opacity: 1; }
.modal .pill {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--r-full);
  background: var(--accent-tint); color: var(--accent-text); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 18px;
}
.modal h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; }
.modal p { color: var(--ink-2); font-size: 16px; line-height: 1.5; margin-bottom: 24px; }
.modal-form { display: flex; gap: 10px; }
.modal-form input {
  flex: 1; height: 52px; border-radius: var(--r-full); border: 1.5px solid var(--border-2);
  padding: 0 20px; font-family: inherit; font-size: 16px; color: var(--ink); outline: none;
  transition: border-color 0.2s;
}
.modal-form input:focus { border-color: var(--brand); }
.modal-form button {
  height: 52px; padding: 0 24px; border-radius: var(--r-full); background: var(--brand); color: #fff;
  font-weight: 600; font-size: 15px; white-space: nowrap; transition: transform 0.2s var(--ease-out);
}
.modal-form button:hover { transform: scale(1.03); }
.modal-close {
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2); color: var(--ink-2); display: flex; align-items: center; justify-content: center;
}
.modal-ok { display: none; align-items: center; gap: 10px; color: var(--success); font-weight: 600; margin-top: 4px; }
.modal.done .modal-form { display: none; }
.modal.done .modal-ok { display: flex; }

/* ============================================================
   REDUCE MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-x { opacity: 1 !important; transform: none !important; transition: opacity 0.3s; }
  .scroll-prompt svg, .zona-pin .pulse, .hero .arc-shimmer { animation: none !important; }
  body.has-smooth { position: static; }
}
