/* ============================================================
   TáNaLista — Landing Page
   Sistema visual: noturno / premium, acento violeta elétrico
   ============================================================ */

:root {
  /* Backgrounds — warm-violet near-black */
  --bg:        oklch(0.165 0.012 286);
  --bg-2:      oklch(0.205 0.014 286);
  --surface:   oklch(0.235 0.016 286);
  --surface-2: oklch(0.275 0.018 286);
  --border:    oklch(0.32 0.02 286);
  --border-soft: oklch(0.28 0.018 286);

  /* Text */
  --text:       oklch(0.975 0.004 286);
  --text-muted: oklch(0.74 0.012 286);
  --text-faint: oklch(0.56 0.014 286);

  /* Accent — violet */
  --accent:        oklch(0.62 0.215 296);
  --accent-bright: oklch(0.72 0.185 300);
  --accent-deep:   oklch(0.50 0.20 294);
  --accent-soft:   oklch(0.62 0.215 296 / 0.16);
  --accent-line:   oklch(0.62 0.215 296 / 0.40);
  /* Secondary glow (pink) — used only in hero ambience */
  --glow-pink:  oklch(0.66 0.20 352);
  --ok:         oklch(0.78 0.16 155);

  /* Fonts — overridden by Tweaks via [data-font] */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 11px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

[data-font="geometrica"] {
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
[data-font="editorial"] {
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
[data-font="editorial"] .display { font-weight: 400; letter-spacing: -0.01em; }

h1.display { font-size: clamp(2.5rem, 6vw, 4.7rem); }
h2.display { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3.display { font-size: clamp(1.4rem, 2.4vw, 2rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 500;
}
.mono { font-family: var(--font-mono); }

p { text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-muted); line-height: 1.55; }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section-sm { padding: clamp(56px, 8vw, 96px) 0; }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700; font-size: 1.02rem;
  padding: 0.95em 1.5em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: oklch(0.99 0 0);
  box-shadow: 0 8px 30px -8px var(--accent-line), inset 0 1px 0 oklch(1 0 0 / 0.25);
}
.btn-primary:hover {
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -10px var(--accent-line), inset 0 1px 0 oklch(1 0 0 / 0.3);
}
.btn-primary .arrow { transition: transform 0.25s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  background: oklch(1 0 0 / 0.04);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: oklch(1 0 0 / 0.08); border-color: var(--accent-line); }
.btn-lg { font-size: 1.12rem; padding: 1.05em 1.8em; }

.microcopy { font-size: 0.85rem; color: var(--text-faint); margin-top: 0.85rem; }
.microcopy .dot { color: var(--accent); margin-inline: 0.4em; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: oklch(0.165 0.012 286 / 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border-soft); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 0.6em; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em; color: var(--text); text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent-deep));
  display: grid; place-items: center;
  box-shadow: 0 4px 16px -4px var(--accent-line);
  position: relative;
}
.brand .mark::after {
  content: ""; width: 11px; height: 6px; border: 2.4px solid oklch(0.99 0 0); border-top: 0; border-right: 0;
  transform: rotate(-45deg) translateY(-1px); border-radius: 1px;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 0.9rem; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(60px, 9vw, 120px); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -10% -10% auto -10%; height: 680px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 22% 18%, var(--accent-soft), transparent 70%),
    radial-gradient(50% 55% at 82% 8%, oklch(0.66 0.20 352 / 0.12), transparent 70%);
  filter: blur(8px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center; position: relative; z-index: 1;
}
.hero-copy { max-width: 620px; }
.pill {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.82rem; font-weight: 600;
  padding: 0.4em 0.9em 0.4em 0.55em; border-radius: 999px;
  background: oklch(1 0 0 / 0.05); border: 1px solid var(--border);
  color: var(--text-muted); margin-bottom: 1.6rem;
}
.pill .badge { font-family: var(--font-mono); font-size: 0.68rem; padding: 0.2em 0.55em; border-radius: 999px; background: var(--accent-soft); color: var(--accent-bright); letter-spacing: 0.04em; }
.hero h1 { margin-bottom: 1.5rem; }
.hero .lead { margin-bottom: 2.2rem; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-cta-block { }
.hero-stats { display: flex; gap: 2.2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }
.hero-stat .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.hero-stat .num .accent { color: var(--accent-bright); }
.hero-stat .lbl { font-size: 0.82rem; color: var(--text-faint); margin-top: 0.2rem; }

/* ---------- Phone mockup ---------- */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone-wrap::before {
  content: ""; position: absolute; inset: -8% -4%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 40%, var(--accent-soft), transparent 72%);
  filter: blur(20px);
}
.phone {
  width: 320px; max-width: 86vw;
  background: oklch(0.13 0.01 286);
  border: 9px solid oklch(0.30 0.014 286);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 40px 90px -30px oklch(0 0 0 / 0.8), inset 0 1px 0 oklch(1 0 0 / 0.08);
  position: relative;
}
.phone .notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: oklch(0.13 0.01 286); border-radius: 999px; z-index: 5; }
.screen {
  background: var(--bg-2); border-radius: 30px; overflow: hidden; height: 600px;
  display: flex; flex-direction: column; position: relative;
}
.scr-top { padding: 34px 18px 14px; border-bottom: 1px solid var(--border-soft); background: oklch(0.22 0.015 286); }
.scr-event { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.01em; }
.scr-meta { font-size: 0.72rem; color: var(--text-faint); margin-top: 0.15rem; display: flex; gap: 0.5em; align-items: center; }
.scr-meta .live { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 var(--ok); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 oklch(0.78 0.16 155 / 0.5);} 70%{box-shadow:0 0 0 7px oklch(0.78 0.16 155 / 0);} 100%{box-shadow:0 0 0 0 oklch(0.78 0.16 155 / 0);} }
.scr-counts { display: flex; gap: 8px; padding: 12px 14px; }
.count-card { flex: 1; background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; padding: 9px 11px; }
.count-card .v { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.count-card .v.in { color: var(--ok); }
.count-card .k { font-size: 0.62rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.3rem; }
.scr-search { margin: 4px 14px 10px; display: flex; align-items: center; gap: 0.5em; background: var(--surface); border: 1px solid var(--border); border-radius: 11px; padding: 9px 12px; font-size: 0.82rem; color: var(--text-muted); }
.scr-search svg { flex-shrink: 0; opacity: 0.6; }
.scr-search .cursor { width: 1px; height: 14px; background: var(--accent-bright); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.scr-list { flex: 1; overflow: hidden; padding: 0 14px 14px; }
.guest {
  display: flex; align-items: center; gap: 10px; padding: 11px 6px; border-bottom: 1px solid var(--border-soft);
  opacity: 0; transform: translateY(8px); animation: guestIn 0.5s var(--ease) forwards;
}
@keyframes guestIn { to { opacity: 1; transform: none; } }
.guest .av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--accent-deep), var(--accent-bright)); display: grid; place-items: center; font-weight: 700; font-size: 0.8rem; color: white; flex-shrink: 0; }
.guest .info { flex: 1; min-width: 0; }
.guest .nm { font-size: 0.86rem; font-weight: 600; }
.guest .tag { font-size: 0.68rem; color: var(--text-faint); }
.guest .chk {
  width: 30px; height: 30px; border-radius: 9px; border: 1.6px solid var(--border); background: transparent;
  display: grid; place-items: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; color: var(--text-faint);
}
.guest .chk:hover { border-color: var(--accent-line); color: var(--accent-bright); }
.guest.done .chk { background: var(--ok); border-color: var(--ok); color: oklch(0.18 0.02 155); }
.guest.done .nm { color: var(--text-faint); text-decoration: line-through; }
.guest .chk svg { opacity: 0; transform: scale(0.5); transition: all 0.2s; }
.guest.done .chk svg { opacity: 1; transform: scale(1); }
.flash { position: absolute; inset: 0; background: var(--ok); opacity: 0; pointer-events: none; }

/* ---------- Generic section header ---------- */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; }
.sec-head .eyebrow { display: block; margin-bottom: 1rem; }
.sec-head p { color: var(--text-muted); margin-top: 1.1rem; font-size: 1.12rem; }

/* ---------- Value prop (narrative) ---------- */
.narrative { max-width: 760px; margin-inline: auto; }
.narrative p { font-size: clamp(1.25rem, 2.2vw, 1.65rem); line-height: 1.5; color: var(--text-muted); }
.narrative p + p { margin-top: 1.5rem; }
.narrative .accent-line { color: var(--text); font-weight: 600; }
.narrative .kicker {
  font-family: var(--font-display); font-weight: 700; color: var(--text);
  font-size: clamp(1.5rem, 2.6vw, 2rem); border-left: 3px solid var(--accent); padding-left: 1rem;
}

/* ---------- Pain list ---------- */
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pain {
  display: flex; gap: 13px; align-items: flex-start; padding: 22px 24px;
  background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.pain:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.pain .x { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: oklch(0.45 0.16 25 / 0.18); color: oklch(0.72 0.17 25); display: grid; place-items: center; font-weight: 700; margin-top: 2px; }
.pain p { font-size: 1.02rem; color: var(--text-muted); line-height: 1.45; }
.pain-foot { margin-top: 36px; text-align: center; font-size: 1.2rem; color: var(--text); font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.pain-foot .em { color: var(--accent-bright); }

/* ---------- Steps (solution) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 30px 28px; position: relative;
}
.step .n { counter-increment: step; font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent-bright); margin-bottom: 1.2rem; display: block; }
.step .n::before { content: "0" counter(step); }
.step h3 { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.step p { color: var(--text-muted); font-size: 0.98rem; }
.step .tick { position: absolute; top: 26px; right: 26px; width: 38px; height: 38px; border-radius: 11px; background: var(--accent-soft); display: grid; place-items: center; color: var(--accent-bright); }
.solution-note { text-align: center; margin-top: 40px; font-size: 1.15rem; color: var(--text-muted); }
.solution-note strong { color: var(--text); }

/* ---------- Benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.benefit {
  padding: 28px 26px; border-radius: var(--radius); background: var(--bg-2);
  border: 1px solid var(--border-soft); transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.benefit:hover { transform: translateY(-4px); border-color: var(--accent-line); background: var(--surface); }
.benefit .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent-bright); display: grid; place-items: center; margin-bottom: 1.3rem; }
.benefit h3 { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.benefit p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Social proof ---------- */
.proof-band { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(24px, 5vw, 64px); margin-bottom: 56px; }
.proof-stat { text-align: center; }
.proof-stat .v { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.proof-stat .v .accent { color: var(--accent-bright); }
.proof-stat .k { font-size: 0.88rem; color: var(--text-faint); margin-top: 0.3rem; }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial { padding: 28px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--border-soft); display: flex; flex-direction: column; }
.testimonial .quote { font-size: 1.05rem; color: var(--text); line-height: 1.5; flex: 1; }
.testimonial .quote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.4rem; color: var(--accent-line); line-height: 0; vertical-align: -0.35em; margin-right: 0.1em; }
.testimonial .by { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-soft); }
.testimonial .by .av-ph { width: 44px; height: 44px; border-radius: 50%; }
.testimonial .by .nm { font-weight: 600; font-size: 0.92rem; }
.testimonial .by .role { font-size: 0.78rem; color: var(--text-faint); }

/* ---------- Placeholder system ---------- */
.ph {
  background-color: var(--surface);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, oklch(1 0 0 / 0.025) 9px, oklch(1 0 0 / 0.025) 18px);
  border: 1px dashed var(--border); border-radius: 12px;
  display: grid; place-items: center; color: var(--text-faint);
  font-family: var(--font-mono); font-size: 0.7rem; text-align: center; letter-spacing: 0.04em; padding: 8px;
}

/* ---------- Offer ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.offer-card {
  background: linear-gradient(165deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 46px);
  box-shadow: 0 40px 90px -40px oklch(0 0 0 / 0.7), 0 0 0 1px oklch(1 0 0 / 0.02) inset;
  position: relative; overflow: hidden;
}
.offer-card::before { content: ""; position: absolute; top: -40%; right: -20%; width: 60%; height: 80%; background: radial-gradient(circle, var(--accent-soft), transparent 70%); pointer-events: none; }
.offer-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-bright); background: var(--accent-soft); padding: 0.4em 0.9em; border-radius: 999px; margin-bottom: 1.6rem; }
.offer-card h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 0.95rem; margin-bottom: 2rem; }
.offer-list li { display: flex; gap: 0.7em; align-items: flex-start; font-size: 1.02rem; }
.offer-list .ck { color: var(--ok); flex-shrink: 0; margin-top: 3px; }
.offer-price { display: flex; align-items: baseline; gap: 0.5em; padding-top: 1.6rem; border-top: 1px solid var(--border); margin-bottom: 0.4rem; }
.offer-price .big { font-family: var(--font-display); font-size: 3rem; font-weight: 700; letter-spacing: -0.03em; }
.offer-price .ctx { color: var(--text-faint); font-size: 0.95rem; }
.offer-fine { font-size: 0.84rem; color: var(--text-faint); margin-bottom: 1.8rem; }
.offer-fine .dot { color: var(--accent); margin-inline: 0.4em; }
.offer-aside h2 { margin-bottom: 1.2rem; }
.offer-aside p { color: var(--text-muted); font-size: 1.1rem; }
.offer-upsell { margin-top: 1.5rem; font-size: 0.92rem; color: var(--text-faint); font-style: italic; }

/* ---------- Objections ---------- */
.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.obj { padding: 30px 28px; border-radius: var(--radius); background: var(--bg-2); border: 1px solid var(--border-soft); }
.obj .q { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -0.01em; margin-bottom: 1rem; color: var(--text); line-height: 1.25; }
.obj .q .qmark { color: var(--accent-bright); }
.obj p { color: var(--text-muted); font-size: 0.98rem; line-height: 1.55; }

/* ---------- Guarantee ---------- */
.guarantee { text-align: center; max-width: 760px; margin-inline: auto; }
.guarantee .seal {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 2rem;
  background: var(--accent-soft); border: 1.5px solid var(--accent-line);
  display: grid; place-items: center; color: var(--accent-bright);
}
.guarantee h2 { margin-bottom: 1.4rem; }
.guarantee p { font-size: 1.2rem; color: var(--text-muted); line-height: 1.55; }
.guarantee .tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.7rem; margin-top: 2rem; }
.guarantee .tags span { font-size: 0.88rem; padding: 0.5em 1.1em; border-radius: 999px; background: oklch(1 0 0 / 0.04); border: 1px solid var(--border); color: var(--text-muted); }

/* ---------- Urgency ---------- */
.urgency {
  background: linear-gradient(135deg, var(--accent-deep), oklch(0.42 0.18 320));
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.urgency::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(120deg, transparent, transparent 30px, oklch(1 0 0 / 0.03) 30px, oklch(1 0 0 / 0.03) 31px); pointer-events: none; }
.urgency .eyebrow { color: oklch(0.95 0.05 320); position: relative; }
.urgency h2 { color: white; margin: 1.2rem auto; max-width: 720px; position: relative; }
.urgency p { color: oklch(0.94 0.03 320); font-size: 1.18rem; max-width: 600px; margin: 0 auto 2rem; position: relative; }
.urgency .btn-primary { background: white; color: var(--accent-deep); position: relative; }
.urgency .btn-primary:hover { background: oklch(0.97 0.02 320); }
.urgency .slots { position: relative; display: inline-flex; align-items: center; gap: 0.6em; margin-top: 1.6rem; font-family: var(--font-mono); font-size: 0.84rem; color: oklch(0.94 0.03 320); }
.urgency .slots .bar { width: 140px; height: 6px; border-radius: 999px; background: oklch(1 0 0 / 0.2); overflow: hidden; }
.urgency .slots .bar i { display: block; height: 100%; width: 72%; background: white; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-2); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--accent-line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); cursor: pointer;
  padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; letter-spacing: -0.01em; }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform 0.3s var(--ease); color: var(--accent-bright); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .pm::before { width: 14px; height: 2px; top: 12px; left: 6px; }
.faq-q .pm::after { width: 2px; height: 14px; top: 6px; left: 12px; transition: transform 0.3s var(--ease); }
.faq-item.open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 26px 24px; color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* ---------- Final CTA ---------- */
.final { text-align: center; position: relative; overflow: hidden; }
.final-glow { position: absolute; inset: 0; z-index: 0; background: radial-gradient(50% 70% at 50% 30%, var(--accent-soft), transparent 70%); pointer-events: none; }
.final .inner { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; }
.final h2 { margin-bottom: 1.4rem; }
.final .chega { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.4rem; }
.final .chega strong { color: var(--text); }

/* ---------- PS ---------- */
.ps { max-width: 720px; margin-inline: auto; background: var(--bg-2); border: 1px solid var(--border-soft); border-left: 3px solid var(--accent); border-radius: var(--radius); padding: clamp(28px, 4vw, 40px); }
.ps .lab { font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent-bright); letter-spacing: 0.1em; margin-bottom: 1rem; }
.ps p { color: var(--text-muted); font-size: 1.05rem; }
.ps p + p { margin-top: 1rem; }
.ps a.btn { margin-top: 1.6rem; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border-soft); padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 40px; }
.footer .brand { margin-bottom: 1rem; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 1rem; }
.footer-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-cols { display: flex; gap: clamp(40px, 7vw, 90px); flex-wrap: wrap; }
.footer-blurb { max-width: 280px; color: var(--text-faint); font-size: 0.92rem; }
.lgpd { font-size: 0.8rem; color: var(--text-faint); border-top: 1px solid var(--border-soft); padding-top: 24px; line-height: 1.6; }
.lgpd a { color: var(--text-muted); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { order: -1; margin-bottom: 1rem; }
  .steps, .benefit-grid, .obj-grid, .testimonials { grid-template-columns: 1fr 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .pain-grid, .steps, .benefit-grid, .obj-grid, .testimonials { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; }
  .hero-stat .num { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
