/* =========================================================================
   SGQ Online · Assinatura Completa (vendas-tudo) — Valéria Moura
   Folha DEDICADA desta página (não é compartilhada com /vendas nem
   /vendas-documentos). Estratégia: navy da marca em regime "drenched" no
   topo e no clímax da oferta; verde reservado à conversão; âmbar só para a
   escassez real (vagas de fundador). Fonte única: Source Sans 3 (300-900),
   hierarquia por peso e escala.
   ========================================================================= */

@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/fonts/source-sans-3.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Marca */
  --navy-950: #0c2038;
  --navy-900: #14375a;
  --navy-800: #1f4e79;
  --navy-700: #265f93;
  --blue-600: #2e75b6;
  --blue-300: #7fb0dd;
  --blue-100: #d6e6f5;
  --blue-050: #ebf3fb;

  --green-700: #4e7c30;
  --green-600: #5d9139;
  --green-500: #70ad47;
  --green-100: #dcecc9;

  --amber-500: #e3a02f;
  --amber-300: #f2c56e;
  --amber-100: #fbeccb;

  /* Neutros frios (sem creme) */
  --bg: #f4f8fc;
  --surface: #ffffff;
  --ink: #0f2233;
  --ink-soft: #3d5468;
  --line: #d9e6f2;
  --line-strong: #bfd4e6;

  /* Sobre navy */
  --on-dark: #f3f8fd;
  --on-dark-soft: #c9dcee;
  --on-dark-faint: #8fb1cf;
  --dark-line: rgba(255, 255, 255, 0.14);

  --font: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;

  /* Escala fluida (razão ~1.3) */
  --step--1: clamp(0.85rem, 0.81rem + 0.2vw, 0.95rem);
  --step-0: clamp(1.02rem, 0.97rem + 0.25vw, 1.16rem);
  --step-1: clamp(1.25rem, 1.15rem + 0.5vw, 1.55rem);
  --step-2: clamp(1.55rem, 1.36rem + 0.95vw, 2.1rem);
  --step-3: clamp(1.95rem, 1.6rem + 1.75vw, 3rem);
  --step-4: clamp(2.5rem, 1.9rem + 3vw, 4.3rem);

  --gap: clamp(1rem, 0.7rem + 1.5vw, 2rem);
  --section-y: clamp(3.8rem, 2.5rem + 5.5vw, 7.5rem);
  --container: 1180px;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 55, 90, 0.07), 0 2px 8px rgba(20, 55, 90, 0.06);
  --shadow: 0 14px 34px -14px rgba(20, 55, 90, 0.25), 0 5px 14px -7px rgba(20, 55, 90, 0.14);
  --shadow-lg: 0 34px 80px -30px rgba(9, 28, 48, 0.55), 0 14px 30px -16px rgba(9, 28, 48, 0.3);
  --shadow-green: 0 16px 36px -14px rgba(94, 145, 57, 0.55);

  --z-sticky: 100;
  --z-header: 200;
  --z-mobilebar: 300;
  --z-overlay: 400;

  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul, ol { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--blue-600); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { text-wrap: balance; line-height: 1.12; letter-spacing: -0.015em; }
p { text-wrap: pretty; }

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-y); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-weight: 800; font-size: var(--step-0); line-height: 1.15;
  padding: 0.9em 1.6em; border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-green { background: var(--green-600); color: #fff; box-shadow: var(--shadow-green); }
.btn-green:hover { background: var(--green-500); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--on-dark); border: 1.5px solid var(--dark-line); }
.btn-ghost:hover { border-color: var(--on-dark-faint); background: rgba(255, 255, 255, 0.06); }
.btn-lg { font-size: var(--step-1); padding: 0.85em 1.5em; }
.btn-block { width: 100%; }
.btn .arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-outline { background: transparent; border: 1.5px solid var(--line-strong); color: var(--ink); border-radius: 999px; }
.btn-outline:hover { background: var(--blue-050); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: var(--z-header);
  background: rgba(12, 32, 56, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.55); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; padding-block: 0.8rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--on-dark); }
.brand-badge {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  color: #fff; font-weight: 900; font-size: 0.95rem; letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.brand-name { font-weight: 800; font-size: 1.02rem; line-height: 1.1; display: flex; flex-direction: column; }
.brand-name small { font-weight: 600; font-size: 0.72rem; color: var(--on-dark-faint); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: 1.35rem; margin-left: auto; }
.nav a { color: var(--on-dark-soft); font-weight: 600; font-size: 0.95rem; transition: color 0.2s; }
.nav a:hover { color: #fff; }
.nav .nav-login { border: 1.5px solid var(--dark-line); border-radius: 999px; padding: 0.45em 1em; }
.nav .header-cta { color: #fff; padding: 0.55em 1.2em; font-size: 0.92rem; box-shadow: none; }
.desktop-only { display: none; }
.nav-toggle { display: none; }

@media (max-width: 940px) {
  .nav {
    position: fixed; inset: 0; z-index: var(--z-overlay);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: rgba(12, 32, 56, 0.98);
    opacity: 0; pointer-events: none; transition: opacity 0.25s;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.3rem; color: var(--on-dark); }
  .nav-toggle {
    display: grid; gap: 5px; margin-left: auto; z-index: calc(var(--z-overlay) + 1);
    padding: 10px; border-radius: 10px;
  }
  .nav-toggle span { display: block; width: 24px; height: 2.5px; border-radius: 2px; background: var(--on-dark); transition: transform 0.25s, opacity 0.2s; }
  .nav.open ~ .nav-toggle span:nth-child(1), body:has(.nav.open) .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body:has(.nav.open) .nav-toggle span:nth-child(2) { opacity: 0; }
  body:has(.nav.open) .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero (drenched navy) ---------- */
.hero {
  position: relative; overflow: clip;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(46, 117, 182, 0.4), transparent 60%),
    radial-gradient(800px 460px at -12% 108%, rgba(46, 117, 182, 0.22), transparent 55%),
    linear-gradient(168deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: var(--on-dark);
  padding-block: clamp(7rem, 5rem + 7vw, 10.5rem) clamp(4rem, 3rem + 4vw, 6.5rem);
}
.hero::after { /* trama sutil de grade, remete a formulário/planilha domada */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.05;
  background-image: linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(900px 600px at 30% 20%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 600px at 30% 20%, #000, transparent 75%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 4vw, 4rem); align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: minmax(0, 1fr); } .hero-copy, .hero-visual { min-width: 0; } }

.founder-badge {
  display: inline-flex; align-items: center; gap: 0.6em; flex-wrap: wrap;
  font-size: var(--step--1); font-weight: 700; color: var(--amber-300);
  background: rgba(227, 160, 47, 0.12); border: 1px solid rgba(227, 160, 47, 0.4);
  padding: 0.5em 1em; border-radius: 999px; margin-bottom: 1.3rem;
}
.founder-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--amber-500); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(227, 160, 47, 0.5); } 70% { box-shadow: 0 0 0 9px rgba(227, 160, 47, 0); } 100% { box-shadow: 0 0 0 0 rgba(227, 160, 47, 0); } }
@media (prefers-reduced-motion: reduce) { .founder-badge .pulse { animation: none; } }

.hero h1 { font-size: var(--step-4); font-weight: 900; letter-spacing: -0.025em; max-width: 15ch; }
.hero h1 .hl { color: var(--amber-300); }
.hero-sub { margin-top: 1.3rem; font-size: var(--step-1); font-weight: 400; color: var(--on-dark-soft); max-width: 54ch; line-height: 1.55; }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 1.7rem; font-size: 0.93rem; font-weight: 600; color: var(--on-dark-soft); }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45em; }
.hero-trust svg { color: var(--green-500); flex-shrink: 0; }

/* Mock do app */
.hero-visual { position: relative; }
.app-window {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transform: perspective(1400px) rotateY(-4deg) rotateX(1.5deg);
}
@media (max-width: 960px) { .app-window { transform: none; max-width: 560px; margin-inline: auto; } }
.app-bar { display: flex; align-items: center; gap: 0.8rem; padding: 0.65rem 1rem; background: var(--blue-050); border-bottom: 1px solid var(--line); }
.app-dots { display: inline-flex; gap: 5px; }
.app-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.app-url { font-size: 0.75rem; font-weight: 700; color: var(--ink-soft); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 0.2em 0.7em; }
.app-body { display: grid; grid-template-columns: 158px minmax(0, 1fr); min-height: 320px; }
@media (max-width: 460px) {
  .app-body { grid-template-columns: 104px minmax(0, 1fr); }
  .app-main { padding: 0.7rem 0.6rem; min-width: 0; }
  .app-kpi { padding: 0.4rem 0.4rem; }
  .app-kpi small { font-size: 0.56rem; }
  .app-kpi b { font-size: 0.95rem; }
  .app-row { padding: 0.4rem 0.45rem; gap: 0.4rem; min-width: 0; }
  .app-pill { font-size: 0.56rem; padding: 0.2em 0.5em; }
  .app-code { font-size: 0.6rem; }
}
.app-side { background: var(--navy-900); color: var(--on-dark-soft); padding: 0.9rem 0.7rem; display: flex; flex-direction: column; gap: 0.22rem; }
.app-logo { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.09em; color: #fff; padding: 0.3rem 0.55rem 0.8rem; }
.app-item { font-size: 0.76rem; font-weight: 600; padding: 0.42rem 0.55rem; border-radius: 7px; }
.app-item.on { background: var(--blue-600); color: #fff; }
.app-main { padding: 1rem 1.1rem; display: flex; flex-direction: column; gap: 0.7rem; }
.app-kpis { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; }
.app-kpi { border: 1px solid var(--line); border-radius: 10px; padding: 0.5rem 0.6rem; }
.app-kpi small { display: block; font-size: 0.62rem; font-weight: 700; color: var(--ink-soft); overflow-wrap: anywhere; }
.app-kpi b { font-size: 1.15rem; }
.app-kpi.ok b { color: var(--green-700); }
.app-kpi.warn b { color: var(--amber-500); }
.app-row { display: flex; align-items: center; gap: 0.6rem; border: 1px solid var(--line); border-radius: 10px; padding: 0.5rem 0.65rem; }
.app-code { font-size: 0.68rem; font-weight: 800; color: var(--navy-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 45%; flex-shrink: 1; }
.app-line { height: 7px; border-radius: 4px; background: var(--blue-050); flex: 1; }
.app-pill { font-size: 0.62rem; font-weight: 800; border-radius: 999px; padding: 0.22em 0.7em; white-space: nowrap; }
.app-pill.green { background: var(--green-100); color: var(--green-700); }
.app-pill.amber { background: var(--amber-100); color: #9a6b14; }
.app-pill.red { background: #fde3e0; color: #b3362a; }
.app-foot { margin-top: auto; display: flex; gap: 0.55rem; }
.app-btn { font-size: 0.72rem; font-weight: 800; background: var(--green-600); color: #fff; border-radius: 8px; padding: 0.45em 0.9em; }
.app-btn.ghost { background: var(--blue-050); color: var(--navy-800); }

.hero-chip {
  position: absolute; display: flex; align-items: center; gap: 0.55rem;
  background: #fff; color: var(--ink); border-radius: 14px; box-shadow: var(--shadow);
  padding: 0.65rem 0.95rem; font-size: 0.8rem; font-weight: 700; line-height: 1.15;
}
.hero-chip small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 0.72rem; }
.hero-chip .n { font-size: 1.7rem; font-weight: 900; color: var(--navy-800); }
.hero-chip .ic { color: var(--green-600); }
.hero-chip.c1 { top: -18px; right: 6%; }
.hero-chip.c2 { bottom: -16px; left: 2%; }
@media (max-width: 960px) { .hero-chip { display: none; } }

/* ---------- Faixa da aritmética (âncora honesta) ---------- */
.math-strip { background: var(--navy-950); color: var(--on-dark); border-top: 1px solid var(--dark-line); }
.math-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding-block: 1.5rem; text-align: center; }
@media (max-width: 760px) { .math-inner { grid-template-columns: 1fr; gap: 0.4rem; text-align: left; } }
.math-item { display: flex; flex-direction: column; gap: 0.15rem; padding-inline: 1rem; position: relative; }
@media (min-width: 761px) {
  .math-item + .math-item::before { content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px; background: var(--dark-line); }
}
@media (max-width: 760px) { .math-item { flex-direction: row; align-items: baseline; gap: 0.6rem; padding-block: 0.35rem; } }
.math-item .v { font-size: 1.45rem; font-weight: 900; }
.math-item .v s { color: var(--on-dark-faint); font-weight: 700; }
.math-item .v.now { color: var(--amber-300); }
.math-item small { font-size: 0.85rem; color: var(--on-dark-soft); font-weight: 600; }

/* ---------- Seções claras ---------- */
.section-head { max-width: 700px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--step-3); font-weight: 900; color: var(--navy-900); }
.section-head .lead { margin-top: 1rem; font-size: var(--step-1); color: var(--ink-soft); line-height: 1.5; }

/* Dor → sistema */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 880px) { .pain-grid { grid-template-columns: minmax(0, 1fr); } }
.pain-grid h2 { font-size: var(--step-3); font-weight: 900; color: var(--navy-900); }
.pain-grid .lead { font-size: var(--step-1); color: var(--ink-soft); }
.pain-list { margin-top: 1.6rem; display: grid; gap: 0.85rem; }
.pain-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--step-0); color: var(--ink-soft); line-height: 1.45; }
.pain-list .x { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: #fde3e0; color: #b3362a; flex-shrink: 0; margin-top: 0.1em; }
.pain-after {
  background: var(--navy-900); color: var(--on-dark); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow);
}
.pain-after h3 { font-size: var(--step-2); font-weight: 800; margin-bottom: 1.2rem; }
.pain-after ul { display: grid; gap: 0.95rem; }
.pain-after li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--on-dark-soft); line-height: 1.45; }
.pain-after li strong { color: #fff; }
.pain-after .check { color: var(--green-500); flex-shrink: 0; margin-top: 0.15em; }

/* ---------- Módulos: índice numerado (sequência real) ---------- */
.mods-grid { display: grid; grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr); gap: clamp(1.8rem, 4vw, 4rem); align-items: start; }
@media (max-width: 880px) { .mods-grid { grid-template-columns: minmax(0, 1fr); } }
.mods-intro { position: sticky; top: 100px; }
@media (max-width: 880px) { .mods-intro { position: static; } }
.mods-intro h2 { font-size: var(--step-3); font-weight: 900; color: var(--navy-900); }
.mods-intro p { margin-top: 1rem; color: var(--ink-soft); font-size: var(--step-0); }
.mods-total {
  margin-top: 1.6rem; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; box-shadow: var(--shadow-sm);
}
.mods-total b { display: block; font-size: 1.3rem; color: var(--navy-900); }
.mods-total small { color: var(--ink-soft); font-weight: 600; }

.mod-list { display: grid; }
.mod {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem 1.3rem; align-items: start;
  padding: clamp(1.2rem, 2.4vw, 1.7rem) clamp(0.2rem, 1vw, 0.8rem);
  border-top: 1px solid var(--line);
}
.mod:last-child { border-bottom: 1px solid var(--line); }
.mod .num {
  font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 900; line-height: 1;
  color: var(--blue-100); -webkit-text-stroke: 1.5px var(--blue-600);
  min-width: 2ch; text-align: right; padding-top: 0.1em;
}
.mod h3 { font-size: var(--step-1); font-weight: 800; color: var(--navy-900); display: flex; flex-wrap: wrap; align-items: center; gap: 0.6em; }
.mod .clause { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.02em; color: var(--navy-800); background: var(--blue-050); border: 1px solid var(--blue-100); border-radius: 999px; padding: 0.25em 0.8em; white-space: nowrap; }
.mod .new { font-size: 0.72rem; font-weight: 900; color: #fff; background: var(--green-600); border-radius: 999px; padding: 0.25em 0.8em; }
.mod p { margin-top: 0.45rem; color: var(--ink-soft); line-height: 1.5; max-width: 62ch; }
.mod .swaps { margin-top: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--green-700); display: inline-flex; align-items: center; gap: 0.45em; }

/* ---------- Como funciona: linha do tempo ---------- */
.steps { background: var(--navy-900); color: var(--on-dark); }
.steps .section-head h2 { color: #fff; }
.steps .section-head .lead { color: var(--on-dark-soft); }
.steps-meta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.2rem; font-size: 0.9rem; font-weight: 700; }
.steps-meta .tag { background: rgba(112, 173, 71, 0.18); color: #b9e29a; border: 1px solid rgba(112, 173, 71, 0.4); border-radius: 999px; padding: 0.35em 1em; }
.steps-meta span:not(.tag) { color: var(--on-dark-soft); align-self: center; }
.steps-list { counter-reset: step; display: grid; gap: 0; max-width: 780px; }
.step-item {
  position: relative; counter-increment: step;
  display: grid; grid-template-columns: 44px 1fr; gap: 1.1rem; padding-block: 1rem;
  color: var(--on-dark-soft); font-size: var(--step-0); line-height: 1.5;
}
.step-item::before {
  content: counter(step, decimal-leading-zero);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.07); border: 1px solid var(--dark-line);
  font-weight: 900; font-size: 0.85rem; color: var(--amber-300);
}
.step-item:not(:last-child)::after {
  content: ""; position: absolute; left: 21.5px; top: 60px; bottom: -6px; width: 1px;
  background: linear-gradient(var(--dark-line), transparent);
}
.step-item > span { padding-top: 0.55rem; }
.step-item strong { color: #fff; }

/* ---------- Bônus: inventário ---------- */
.bonus-head { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: end; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
@media (max-width: 760px) { .bonus-head { grid-template-columns: minmax(0, 1fr); align-items: start; } }
.bonus-value {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1rem 1.6rem; box-shadow: var(--shadow-sm);
}
.bonus-value small { font-size: 0.8rem; font-weight: 700; color: var(--ink-soft); }
.bonus-value .v { font-size: 1.5rem; font-weight: 900; color: var(--navy-900); }
.bonus-value .v s { color: var(--ink-soft); font-weight: 700; margin-right: 0.3em; }
.bonus-value .free { color: var(--green-600); }

.kit-manifest { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }
.kit {
  display: grid; grid-template-columns: minmax(190px, 0.8fr) 1fr; gap: 0.4rem 1.6rem;
  padding: 1.05rem clamp(1.1rem, 2.5vw, 1.8rem); align-items: baseline;
}
.kit:nth-child(even) { background: var(--blue-050); }
@media (max-width: 700px) { .kit { grid-template-columns: minmax(0, 1fr); } }
.kit h3 { font-size: 1.02rem; font-weight: 800; color: var(--navy-900); }
.kit h3 small { display: block; font-size: 0.75rem; font-weight: 700; color: var(--blue-600); letter-spacing: 0.02em; }
.kit p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.45; }
.kit-note { padding: 0.9rem 1.6rem; font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); background: var(--green-100); }
.kit-note b { color: var(--green-700); }

/* ---------- Autora ---------- */
.author { background: var(--surface); border-block: 1px solid var(--line); }
.author-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .author-grid { grid-template-columns: minmax(0, 1fr); } }
.author-card { text-align: center; background: var(--navy-900); color: var(--on-dark); border-radius: var(--radius-lg); padding: 2rem 1.6rem; box-shadow: var(--shadow); }
.author-mono {
  width: 92px; height: 92px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.9rem; font-weight: 900;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800)); color: #fff;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.25);
}
.a-name { font-size: 1.25rem; font-weight: 800; }
.a-role { font-size: 0.9rem; color: var(--on-dark-soft); font-weight: 600; }
.author-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 1.4rem; }
.author-stats .n { font-size: 1.35rem; font-weight: 900; color: var(--amber-300); }
.author-stats small { font-size: 0.78rem; color: var(--on-dark-soft); font-weight: 600; }
.author-body h2 { font-size: var(--step-2); font-weight: 900; color: var(--navy-900); margin-bottom: 1rem; }
.author-body p { color: var(--ink-soft); line-height: 1.65; max-width: 65ch; }
.author-body p + p { margin-top: 0.9rem; }
.author-body strong { color: var(--ink); }

/* ---------- Prova social ---------- */
.proof-stats { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); margin-bottom: clamp(1.8rem, 3.5vw, 3rem); flex-wrap: wrap; }
.proof-stat { text-align: center; }
.proof-stat .n { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; color: var(--navy-900); }
.proof-stat .star { color: var(--amber-500); }
.proof-stat small { font-weight: 600; color: var(--ink-soft); }
.proof-wall { columns: 2; column-gap: 1.2rem; max-width: 900px; margin-inline: auto; }
@media (max-width: 720px) { .proof-wall { columns: 1; } }
.tcard {
  break-inside: avoid; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.4rem 1.5rem; margin-bottom: 1.2rem; box-shadow: var(--shadow-sm);
}
.tcard .stars { color: var(--amber-500); font-size: 0.9rem; letter-spacing: 0.15em; margin-bottom: 0.6rem; }
.tcard .quote { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.55; }
.tcard .quote b { color: var(--ink); }
.tcard .who { display: flex; align-items: center; gap: 0.65rem; margin-top: 1rem; font-size: 0.85rem; }
.tcard .avatar { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--blue-100); color: var(--navy-800); font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }
.tcard .name { display: block; font-weight: 800; color: var(--ink); }
.tcard .role { display: block; color: var(--ink-soft); font-size: 0.78rem; }
.tcard .verified { margin-left: auto; display: inline-flex; align-items: center; gap: 0.3em; color: var(--green-700); font-weight: 700; font-size: 0.75rem; white-space: nowrap; }
.proof-note { text-align: center; font-size: 0.82rem; color: var(--ink-soft); max-width: 60ch; margin: 1.4rem auto 0; }

/* ---------- Oferta de fundador (clímax, navy drenched) ---------- */
.offer {
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(46, 117, 182, 0.35), transparent 60%),
    linear-gradient(160deg, var(--navy-950), var(--navy-900) 70%);
  color: var(--on-dark);
}
.offer .section-head h2 { color: #fff; }
.offer .section-head .lead { color: var(--on-dark-soft); }

.founder-progress { max-width: 760px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.fp-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; margin-bottom: 0.6rem; flex-wrap: wrap; }
.fp-top .t { font-weight: 800; color: #fff; font-size: var(--step-0); }
.fp-top .r { font-weight: 800; color: var(--amber-300); font-size: var(--step-0); }
.fp-bar { height: 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.1); border: 1px solid var(--dark-line); overflow: hidden; }
.fp-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--amber-500), var(--amber-300)); box-shadow: 0 0 18px rgba(227, 160, 47, 0.55); }
.fp-note { margin-top: 0.6rem; font-size: 0.88rem; color: var(--on-dark-soft); font-weight: 600; }

.offer-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(1.6rem, 3.5vw, 2.8rem); align-items: stretch; max-width: 1020px; margin-inline: auto; }
@media (max-width: 880px) { .offer-grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; } }

.offer-includes { border: 1px solid var(--dark-line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.2rem); background: rgba(255, 255, 255, 0.04); }
.offer-includes h3 { font-size: 1.2rem; font-weight: 800; color: #fff; margin-bottom: 1.1rem; }
.offer-includes ul { display: grid; gap: 0.7rem; }
.offer-includes li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.97rem; color: var(--on-dark-soft); line-height: 1.4; }
.offer-includes li strong { color: #fff; }
.offer-includes .ic { color: var(--green-500); font-weight: 900; flex-shrink: 0; }
.offer-extra { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px dashed var(--dark-line); font-size: 0.9rem; color: var(--on-dark-soft); line-height: 1.55; }
.offer-extra strong { color: #fff; }

.price-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.3rem); box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.price-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 6px; background: linear-gradient(90deg, var(--amber-500), var(--green-500)); }
.price-flag {
  align-self: center; display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.8rem; font-weight: 900; letter-spacing: 0.02em; color: #9a6b14;
  background: var(--amber-100); border-radius: 999px; padding: 0.4em 1.1em; margin-bottom: 0.9rem;
}
.price-name { text-align: center; font-size: 1.25rem; font-weight: 900; color: var(--navy-900); }
.price-tagline { text-align: center; font-size: 0.9rem; color: var(--ink-soft); font-weight: 600; margin-top: 0.2rem; }
.price-anchor { text-align: center; margin-top: 1rem; font-size: 0.95rem; font-weight: 700; color: var(--ink-soft); }
.price-anchor s { color: #94a3b8; }
.price-value { display: flex; align-items: baseline; justify-content: center; gap: 0.15em; margin-top: 0.2rem; color: var(--navy-900); }
.price-value .cur { font-size: 1.3rem; font-weight: 800; }
.price-value .amt { font-size: clamp(3.4rem, 6vw, 4.6rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
.price-value .per { font-size: 1.05rem; font-weight: 700; color: var(--ink-soft); }
.price-next { text-align: center; margin-top: 0.7rem; font-size: 0.9rem; font-weight: 700; color: #9a6b14; background: var(--amber-100); border-radius: 10px; padding: 0.55em 0.9em; }
.price-feats { display: grid; gap: 0.6rem; margin-block: 1.3rem; }
.price-feats li { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.94rem; font-weight: 600; color: var(--ink-soft); }
.price-feats svg { color: var(--green-600); flex-shrink: 0; margin-top: 0.15em; }
.plan-cta { margin-top: auto; }
.price-note { display: flex; align-items: center; justify-content: center; gap: 0.45em; margin-top: 0.8rem; font-size: 0.82rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- Garantia ---------- */
.guarantee-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; max-width: 980px; margin-inline: auto; }
@media (max-width: 720px) { .guarantee-grid { grid-template-columns: minmax(0, 1fr); justify-items: center; text-align: center; } }
.seal {
  width: 168px; height: 168px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: var(--surface); border: 3px dashed var(--green-500); color: var(--green-700);
  box-shadow: var(--shadow-sm);
}
.seal .big { font-size: 3rem; font-weight: 900; line-height: 1; }
.seal small { font-weight: 700; font-size: 0.82rem; }
.guarantee h2 { font-size: var(--step-2); font-weight: 900; color: var(--navy-900); margin-bottom: 0.9rem; }
.guarantee p { color: var(--ink-soft); line-height: 1.65; max-width: 62ch; }
.guarantee p + p { margin-top: 0.8rem; }
.guarantee strong { color: var(--ink); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-inline: auto; display: grid; gap: 0.8rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.25s; }
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  cursor: pointer; list-style: none; padding: 1.1rem 1.4rem;
  font-weight: 800; font-size: var(--step-0); color: var(--navy-900);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .pm { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-050); color: var(--navy-800); flex-shrink: 0; transition: transform 0.3s var(--ease-out); }
.faq-item[open] .pm { transform: rotate(45deg); }
.faq-answer { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); line-height: 1.6; }
.faq-answer a { color: var(--blue-600); font-weight: 700; text-decoration: underline; }

/* ---------- CTA final ---------- */
.final { background: linear-gradient(165deg, var(--navy-900), var(--navy-950)); color: var(--on-dark); text-align: center; }
.final h2 { font-size: var(--step-3); font-weight: 900; color: #fff; max-width: 22ch; margin-inline: auto; }
.final p { margin-top: 1rem; font-size: var(--step-1); color: var(--on-dark-soft); max-width: 48ch; margin-inline: auto; }
.final .hero-actions { justify-content: center; }
.final .hero-trust { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--on-dark-soft); padding-block: 3rem 5.5rem; font-size: 0.9rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--dark-line); }
@media (max-width: 760px) { .footer-top { grid-template-columns: minmax(0, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; color: #fff; margin-bottom: 0.8rem; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.8rem; }
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a:hover { color: #fff; }
.footer-note { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.4rem; font-size: 0.78rem; color: var(--on-dark-faint); }

/* ---------- Barra móvel fixa ---------- */
.mobile-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: var(--z-mobilebar);
  display: none; align-items: center; gap: 0.8rem; justify-content: space-between;
  background: rgba(12, 32, 56, 0.97); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--on-dark); padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  transform: translateY(110%); transition: transform 0.35s var(--ease-out);
  border-top: 1px solid var(--dark-line);
}
.mobile-bar.show { transform: translateY(0); }
@media (max-width: 880px) { .mobile-bar { display: flex; } }
.mb-price small { display: block; font-size: 0.7rem; color: var(--on-dark-soft); font-weight: 600; }
.mb-price b { font-size: 0.95rem; }
.mobile-bar .btn { padding: 0.65em 1.2em; font-size: 0.9rem; white-space: nowrap; box-shadow: none; }

/* ---------- Consentimento (LGPD) ---------- */
.consent {
  position: fixed; z-index: var(--z-overlay); inset-inline: 0; bottom: 0;
  background: #fff; color: var(--ink); box-shadow: 0 -12px 40px -18px rgba(9, 28, 48, 0.4);
  border-top: 1px solid var(--line);
  transform: translateY(105%); transition: transform 0.4s var(--ease-out);
  padding: 1.1rem clamp(1rem, 4vw, 2.4rem) calc(1.1rem + env(safe-area-inset-bottom));
}
.consent.show { transform: translateY(0); }
.consent-inner { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; max-width: var(--container); margin-inline: auto; }
.consent-text { flex: 1 1 320px; font-size: 0.9rem; color: var(--ink-soft); }
.consent-text a { color: var(--blue-600); font-weight: 700; text-decoration: underline; }
.consent-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.consent-btn { font-size: 0.88rem; padding: 0.6em 1.3em; box-shadow: none; }
.consent-link { font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); text-decoration: underline; }
.consent-prefs { max-width: var(--container); margin-inline: auto; }
.cprefs-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.8rem; }
.cprefs-list { display: grid; gap: 0.6rem; }
.cpref { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: 1px solid var(--line); border-radius: 10px; padding: 0.7rem 1rem; }
.cpref-info b { display: block; font-size: 0.92rem; }
.cpref-info small { color: var(--ink-soft); font-size: 0.8rem; }
.cpref input { width: 20px; height: 20px; accent-color: var(--green-600); }
.cprefs-actions { margin-top: 0.9rem; display: flex; justify-content: flex-end; }

/* ---------- Reveal progressivo (só quando o JS marca .rise-init) ---------- */
.rise-init [data-rise] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.rise-init [data-rise].risen { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rise-init [data-rise] { opacity: 1; transform: none; transition: none; }
}
