/* ============================================================
   Clube Alívio — Jardim noturno que floresce
   Tokens e base
   ============================================================ */
:root {
  --night: #0B0D1C;
  --deep: #11142B;
  --panel: #171A36;
  --ink: #F4F5FC;
  --muted: #A6ABC9;
  --violet: #7C5CFA;
  --violet-soft: #9D86FB;
  --teal: #4ED6C1;
  --hairline: rgba(157, 134, 251, 0.16);
  --hairline-bright: rgba(157, 134, 251, 0.38);
  --radius: 14px;
  --font-display: "Satoshi", "Inter Tight", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --gutter: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; }

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--night);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(124, 92, 250, 0.45); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: var(--gutter); }

/* Tipografia */
h1, h2, h3 { font-weight: 900; letter-spacing: -0.03em; line-height: 1.02; }
.display-xl { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.display-lg { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
.display-md { font-size: clamp(1.35rem, 2.4vw, 1.9rem); }

.grad {
  background: linear-gradient(96deg, var(--violet-soft) 8%, var(--teal) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--violet), transparent);
}

.lead { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.17rem); max-width: 58ch; }

/* ============================================================
   Cursor vagalume (desktop fino apenas)
   ============================================================ */
.firefly-cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(220,210,255,0.95), rgba(124,92,250,0.55) 55%, transparent 75%);
  box-shadow: 0 0 14px 4px rgba(124, 92, 250, 0.35);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
.firefly-cursor.bloom {
  width: 34px; height: 34px;
  background: radial-gradient(circle, rgba(220,210,255,0.5), rgba(78,214,193,0.28) 55%, transparent 75%);
}
@media (hover: none), (pointer: coarse) { .firefly-cursor { display: none; } }

/* ============================================================
   Header
   ============================================================ */
header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: rgba(11, 13, 28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; font-size: 1.14rem; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: clamp(18px, 3vw, 40px); list-style: none; }
.nav-links a {
  position: relative;
  color: var(--muted); font-size: 0.94rem; font-weight: 500;
  transition: color 0.25s ease;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

/* CTA nav: readout mono que digita */
.cta-nav {
  font-family: var(--font-mono);
  font-size: 0.8rem; letter-spacing: 0.06em;
  padding: 11px 18px;
  border: 1px solid var(--hairline-bright);
  border-radius: 8px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  white-space: nowrap;
}
.cta-nav:hover { border-color: var(--violet); box-shadow: 0 0 22px rgba(124, 92, 250, 0.25) inset; }
.cta-nav:active { transform: scale(0.98); }
.cta-nav .caret { display: inline-block; width: 7px; margin-left: 2px; animation: caretBlink 0.9s steps(1) infinite; color: var(--teal); }
@keyframes caretBlink { 50% { opacity: 0; } }

.menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   S1 · Hero — canvas 3D
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: 62% 40%;
  transform: scale(1.06);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,13,28,0.55) 0%, rgba(11,13,28,0.1) 34%, rgba(11,13,28,0.6) 74%, var(--night) 98%),
    linear-gradient(100deg, rgba(11,13,28,0.82) 0%, rgba(11,13,28,0.24) 46%, transparent 70%);
}
#lotus-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero-content {
  position: relative; z-index: 3;
  padding-bottom: clamp(56px, 9vh, 110px);
  padding-top: 140px;
  max-width: 780px;
}
.hero h1 { max-width: 12ch; }
.hero .lead { margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 36px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  background: rgba(11, 13, 28, 0.78);
  border: 1px solid rgba(244, 245, 252, 0.16);
  border-radius: 12px;
  padding: 11px 18px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.store-badge small { display: block; font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); line-height: 1.2; }
.store-badge strong { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(157, 134, 251, 0.55);
  box-shadow: 0 10px 34px rgba(124, 92, 250, 0.3);
}
.store-badge:active { transform: translateY(-1px) scale(0.99); }

/* Link cipó: seta percorre um caminho desenhado */
.vine-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--muted); font-weight: 700; font-size: 0.98rem;
  transition: color 0.3s ease;
}
.vine-link svg { overflow: visible; }
.vine-link .vine-path {
  stroke-dasharray: 46;
  stroke-dashoffset: 46;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.vine-link .vine-head { transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.vine-link:hover { color: var(--ink); }
.vine-link:hover .vine-path { stroke-dashoffset: 0; }
.vine-link:hover .vine-head { transform: translateX(26px); }

/* ============================================================
   S2 · Faixa de confiança
   ============================================================ */
.trust {
  border-block: 1px solid var(--hairline);
  background: var(--night);
  position: relative; z-index: 4;
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  min-height: 92px; align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.87rem;
  padding: 18px 10px;
  justify-content: center;
  border-left: 1px solid var(--hairline);
}
.trust-item:first-child { border-left: 0; }
.trust-item svg { flex: none; color: var(--violet-soft); }

/* ============================================================
   S3 · Funcionalidades — accordion + painel sticky
   ============================================================ */
.features { padding-block: clamp(90px, 13vh, 160px); background: var(--night); }
.features-head { max-width: 640px; margin-bottom: clamp(48px, 7vh, 84px); }
.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.chapter { margin-bottom: 44px; }
.chapter-label {
  display: flex; align-items: baseline; gap: 14px;
  font-family: var(--font-mono);
  color: var(--teal);
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 6px;
}
.chapter-label em { font-style: normal; color: var(--muted); letter-spacing: 0; font-size: 0.72rem; }

.acc-item { border-bottom: 1px solid var(--hairline); }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 18px;
  padding: 20px 4px;
  text-align: left;
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-trigger:hover { padding-left: 12px; }
.acc-trigger .acc-icon { flex: none; width: 22px; height: 22px; color: var(--violet-soft); transition: color 0.3s ease, filter 0.3s ease; }
.acc-item.open .acc-icon, .acc-trigger:hover .acc-icon { color: var(--teal); filter: drop-shadow(0 0 7px rgba(78, 214, 193, 0.6)); }
.acc-trigger h3 { font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; flex: 1; }
.acc-trigger .acc-plus { flex: none; width: 16px; height: 16px; position: relative; opacity: 0.6; }
.acc-trigger .acc-plus::before, .acc-trigger .acc-plus::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  background: currentColor; border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-trigger .acc-plus::before { width: 16px; height: 2px; transform: translate(-50%, -50%); }
.acc-trigger .acc-plus::after { width: 2px; height: 16px; transform: translate(-50%, -50%); }
.acc-item.open .acc-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc-item.open .acc-plus::before { transform: translate(-50%, -50%) rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.acc-body p { color: var(--muted); font-size: 0.95rem; padding: 0 4px 22px 44px; max-width: 54ch; }

.phone-sticky { position: sticky; top: 110px; }
.phone-frame {
  position: relative;
  border-radius: 42px;
  border: 1px solid rgba(157, 134, 251, 0.3);
  background: #05060f;
  padding: 10px;
  box-shadow: 0 30px 90px rgba(5, 6, 15, 0.8), 0 0 80px rgba(124, 92, 250, 0.14);
  max-width: 330px;
  margin-inline: auto;
}
.phone-frame::before {
  content: "";
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 24px; border-radius: 14px;
  background: #05060f; z-index: 2;
}
.phone-frame img { border-radius: 32px; width: 100%; }
.phone-glow {
  position: absolute; inset: -12%;
  background: radial-gradient(ellipse at center, rgba(124, 92, 250, 0.26), transparent 62%);
  z-index: -1; pointer-events: none;
}

/* ============================================================
   S4 · Capítulo-filme (scrub)
   ============================================================ */
.film { position: relative; background: var(--night); }
.film-stage { position: relative; height: 100dvh; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.film-media { position: absolute; inset: 0; }
.film-media video, .film-media img.film-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.film-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,13,28,0.62), rgba(11,13,28,0.16) 30%, rgba(11,13,28,0.2) 70%, var(--night));
}
.film-content { position: relative; z-index: 2; text-align: center; padding-inline: var(--gutter); }
.film-numeral {
  font-size: clamp(9rem, 26vw, 21rem);
  font-weight: 900; letter-spacing: -0.05em; line-height: 0.85;
  background: linear-gradient(180deg, rgba(244,245,252,0.92), rgba(157,134,251,0.55));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 12px 60px rgba(124, 92, 250, 0.35));
  display: inline-block;
}
.film-caption {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  margin-top: 6px;
}
.film-sub { margin-top: 18px; color: var(--muted); font-size: 0.95rem; }
.film-metrics {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: clamp(20px, 4vw, 52px);
  margin-top: clamp(30px, 5vh, 54px);
  font-family: var(--font-mono);
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted);
}
.film-metrics span { display: inline-flex; align-items: center; gap: 9px; }
.film-metrics svg { color: var(--teal); }

/* ============================================================
   S5 · Gamificação — trilho Semente → Sequoia
   ============================================================ */
.journey { padding-block: clamp(90px, 13vh, 160px); background: var(--deep); position: relative; overflow: hidden; }
.journey-head { max-width: 620px; }
.rail-wrap { position: relative; margin-top: clamp(56px, 8vh, 90px); }
.rail-line {
  position: absolute; left: 0; right: 0; top: 86px; height: 2px;
  background: linear-gradient(90deg, rgba(124,92,250,0.55), rgba(78,214,193,0.7), rgba(126,214,132,0.75));
  border-radius: 2px;
}
.rail-line::after {
  content: "";
  position: absolute; inset: -3px 0;
  background: inherit; filter: blur(9px); opacity: 0.6;
}
.rail {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px; position: relative;
}
.level {
  text-align: center;
  padding-top: 8px;
}
.level-emblem {
  width: clamp(96px, 11vw, 156px); height: clamp(96px, 11vw, 156px);
  margin-inline: auto;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle at 50% 38%, rgba(124, 92, 250, 0.16), rgba(11, 13, 28, 0.6) 70%);
  border: 1px solid var(--hairline-bright);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.level-emblem img { width: 74%; height: 74%; object-fit: contain; border-radius: 50%; }
.level:hover .level-emblem {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(78, 214, 193, 0.65);
  box-shadow: 0 18px 50px rgba(78, 214, 193, 0.22);
}
.level h3 { font-size: 1.02rem; margin-top: 20px; font-weight: 700; }
.level p { color: var(--muted); font-size: 0.83rem; margin-top: 7px; max-width: 21ch; margin-inline: auto; }
.level .lv-tag { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em; color: var(--violet-soft); text-transform: uppercase; display: block; margin-top: 14px; }

/* ============================================================
   S6 · Monitoramento — split invertido
   ============================================================ */
.monitor { padding-block: clamp(90px, 13vh, 160px); background: var(--night); }
.monitor-grid {
  display: grid; grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(44px, 7vw, 110px); align-items: center;
}
.monitor .phone-frame { max-width: 350px; }
.check-list { list-style: none; margin-top: 34px; }
.check-list li {
  display: flex; align-items: center; gap: 16px;
  padding-block: 17px;
  border-bottom: 1px solid var(--hairline);
  font-size: 1rem; font-weight: 500; color: var(--ink);
}
.check-list li:first-child { border-top: 1px solid var(--hairline); }
.check-list svg { flex: none; color: var(--violet-soft); filter: drop-shadow(0 0 6px rgba(124, 92, 250, 0.5)); }
.check-list li span em { display: block; font-style: normal; color: var(--muted); font-size: 0.84rem; font-weight: 400; }

/* ============================================================
   S7 · Planos
   ============================================================ */
.plans { padding-block: clamp(90px, 13vh, 160px); background: var(--deep); position: relative; overflow: hidden; }
.plans-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.5; }
.plans-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--deep), transparent 30%, transparent 70%, var(--deep)); }
.plans .wrap { position: relative; z-index: 2; }
.plans-head { max-width: 620px; margin-bottom: clamp(44px, 6vh, 72px); }
.plans-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 26px; align-items: stretch; }
.plan-card {
  border: 1px solid var(--hairline-bright);
  border-radius: var(--radius);
  background: rgba(11, 13, 28, 0.55);
  backdrop-filter: blur(8px);
  padding: clamp(28px, 4vw, 46px);
  position: relative;
}
.plan-card h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
.plan-card .plan-note { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); display: block; margin-bottom: 16px; }
.plan-list { list-style: none; margin-top: 26px; }
.plan-list li { display: flex; gap: 12px; align-items: flex-start; padding-block: 10px; color: var(--muted); font-size: 0.94rem; }
.plan-list svg { flex: none; margin-top: 4px; color: var(--violet-soft); }
.plan-free-note { margin-top: 26px; color: var(--muted); font-size: 0.85rem; }
.plan-premium {
  border-color: rgba(78, 214, 193, 0.4);
  box-shadow: 0 0 70px rgba(78, 214, 193, 0.1);
  display: flex; flex-direction: column;
}
.plan-premium .plan-note { color: var(--violet-soft); }
.premium-copy { color: var(--muted); font-size: 0.94rem; margin-top: 18px; }
.premium-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.premium-tags span {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--hairline); border-radius: 7px;
  padding: 6px 11px;
}

/* Avise-me: framed block com fill clipado */
.notify-form { margin-top: auto; padding-top: 30px; display: grid; gap: 12px; }
.notify-form label { font-size: 0.8rem; color: var(--muted); }
.notify-row { display: flex; border: 1px solid var(--hairline-bright); border-radius: 10px; overflow: hidden; }
.notify-row input {
  flex: 1; min-width: 0;
  background: rgba(11, 13, 28, 0.6);
  border: 0; outline: none;
  color: var(--ink); font: inherit; font-size: 0.92rem;
  padding: 14px 16px;
}
.notify-row input::placeholder { color: rgba(166, 171, 201, 0.55); }
.notify-btn {
  position: relative; overflow: hidden;
  font-weight: 700; font-size: 0.9rem;
  padding: 14px 22px;
  background: transparent;
  border-left: 1px solid var(--hairline-bright);
  white-space: nowrap;
}
.notify-btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(96deg, var(--violet), var(--teal));
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.notify-btn span { position: relative; z-index: 1; transition: color 0.3s ease; }
.notify-btn:hover::before { clip-path: inset(0 0 0 0); }
.notify-btn:hover span { color: #0B0D1C; }
.notify-hint { font-size: 0.78rem; color: var(--muted); }

/* ============================================================
   S8 · FAQ
   ============================================================ */
.faq { padding-block: clamp(90px, 12vh, 150px); background: var(--night); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 100px); align-items: start; }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left; padding-block: 22px;
  font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em;
}
.faq-q .acc-plus { flex: none; width: 15px; height: 15px; position: relative; color: var(--violet-soft); }
.faq-q .acc-plus::before, .faq-q .acc-plus::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: currentColor; border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-q .acc-plus::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .acc-plus::after { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.faq-item.open .acc-plus::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-a p { color: var(--muted); font-size: 0.95rem; padding-bottom: 24px; max-width: 60ch; }

/* ============================================================
   S9 · CTA final + footer
   ============================================================ */
.final { position: relative; padding-block: clamp(110px, 16vh, 200px); background: var(--night); overflow: hidden; text-align: center; }
.final-glow {
  position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 1100px; height: 700px;
  background: radial-gradient(ellipse at center, rgba(124, 92, 250, 0.22), rgba(78, 214, 193, 0.07) 45%, transparent 70%);
  pointer-events: none;
}
.final-lotus { width: 74px; height: 74px; margin: 0 auto 30px; border-radius: 18px; box-shadow: 0 14px 44px rgba(124, 92, 250, 0.4); }
.final h2 { position: relative; }
.final .lead { margin: 24px auto 0; }
.final .hero-ctas { justify-content: center; margin-top: 40px; }

footer { border-top: 1px solid var(--hairline); background: #080A16; padding-block: 64px 34px; position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-top: 18px; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: grid; gap: 11px; }
.footer-col a { color: var(--muted); font-size: 0.92rem; transition: color 0.25s ease; position: relative; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  margin-top: 54px; padding-top: 26px;
  border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  color: var(--muted); font-size: 0.8rem;
}
.footer-bottom .mono { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; }

/* ============================================================
   Reveals (screenshot-safe: nunca opacity 0 esperando viewport)
   ============================================================ */
.rise { transform: translateY(0); }
.js .rise { will-change: transform; }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr; }
  .phone-sticky { position: relative; top: 0; max-width: 340px; margin-inline: auto; }
  .monitor-grid { grid-template-columns: 1fr; }
  .monitor .phone-frame { margin-inline: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    background: rgba(8, 10, 22, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; gap: 0;
    padding: 10px var(--gutter) 26px;
    border-bottom: 1px solid var(--hairline);
    transform: translateY(-130%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 15px 0; font-size: 1.05rem; }
  .menu-btn { display: flex; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .trust-item { border-left: 0; border-top: 1px solid var(--hairline); justify-content: flex-start; }
  .trust-item:nth-child(-n+2) { border-top: 0; }
  .plans-grid { grid-template-columns: 1fr; }
  .rail-wrap { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); }
  .rail-wrap::-webkit-scrollbar { display: none; }
  .rail { grid-template-columns: repeat(5, minmax(200px, 1fr)); width: max-content; min-width: 100%; padding-bottom: 8px; }
  .level { scroll-snap-align: center; }
  .rail-line { top: 78px; }
}
@media (max-width: 560px) {
  .hero-content { padding-top: 120px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .film-metrics { gap: 16px; font-size: 0.66rem; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .firefly-cursor { display: none; }
  .hero-bg { transform: none; }
}
