/* Forest + Brass — Dark forest green + brass gold
   Estrutura mantida; apenas tokens cromáticos e tipografia atualizados. */

:root {
  --bg:           #0C1612;
  --surface:      #13201B;
  --surface-2:    #0F1A16;
  --surface-3:    #1A2922;

  --ink:          #EDEEEA;
  --ink-soft:     #A4ADA5;
  --ink-muted:    #6E7670;

  --rule:         #1F2D26;
  --rule-soft:    #172620;

  --accent:        #C49A4B;          /* brass gold */
  --accent-strong: #DCB261;
  --accent-soft:   rgba(196, 154, 75, 0.14);
  --accent-ink:    #160F03;          /* tinta escura sobre o dourado */

  --danger:       #D26A6A;
  --ok:           #6FBE89;
  --ok-soft:      rgba(111, 190, 137, 0.14);

  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 0 rgba(255,255,255,0.02), 0 18px 48px -28px rgba(0,0,0,0.6);

  --sans:  "Geist", "IBM Plex Sans", -apple-system, system-ui, sans-serif;
  --serif: "Source Serif 4", "Newsreader", Georgia, serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --gutter: 28px;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

.eyebrow {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: currentColor; opacity: 0.7;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.h1 { font-size: clamp(40px, 5.4vw, 64px); line-height: 1.04; letter-spacing: -0.015em; }
.h2 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.1; }
.h3 { font-size: 20px; line-height: 1.25; }
.h4 { font-size: 18px; line-height: 1.3; }
.h1 em, .h2 em { font-style: italic; color: var(--accent); }

.body-lg { font-size: 18px; color: var(--ink-soft); line-height: 1.6; }
.body { color: var(--ink-soft); }
.body-sm { font-size: 14px; color: var(--ink-muted); line-height: 1.55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 1px solid var(--accent);
  transition: background .18s, color .18s, border-color .18s, transform .12s;
}
.btn:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  background: transparent; color: var(--accent); border-color: var(--accent);
}
.btn-text {
  padding: 0; background: none; border: none; color: var(--ink);
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--accent); border-radius: 8px;
  font-family: var(--serif); font-size: 16px; color: var(--accent);
  font-style: italic;
}
.brand-title { display: flex; flex-direction: column; line-height: 1.15; }
.brand-title b {
  font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-title b em { font-style: italic; color: var(--accent); }
.brand-title small {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted);
}

.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; color: var(--ink-soft); }
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section-sm { padding: 72px 0; }
.section-band { background: var(--surface-2); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::before { display: none; }
.section-head .eyebrow {
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 6px 14px;
  background: var(--surface);
  margin-bottom: 22px;
}
.section-head h2 { margin-bottom: 18px; }
.section-head p { color: var(--ink-soft); font-size: 17px; line-height: 1.55; }

/* ---------- Card ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: color-mix(in oklch, var(--rule) 50%, var(--accent) 30%);
  background: var(--surface-3);
}
.card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  background: var(--surface-2);
  border-radius: 12px;
  margin-bottom: 22px;
  color: var(--accent);
}
.card-icon svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
.card .step-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.card .step-tag b {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--accent); font-weight: 400; letter-spacing: -0.01em;
}

/* ---------- Hero ---------- */
.hero { padding: 80px 0 96px; position: relative; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--rule);
  background: var(--surface);
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; color: var(--ink-soft);
}
.hero-pill .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hero h1 { margin: 28px 0 24px; max-width: 16ch; }
.hero .sub { max-width: 560px; font-size: 19px; color: var(--ink-soft); line-height: 1.55; }
.hero .actions { margin-top: 36px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; display: flex; gap: 14px; flex-wrap: wrap; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--surface);
  font-size: 13px;
  color: var(--ink-soft);
}
.trust-chip svg { width: 14px; height: 14px; color: var(--accent); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Card de pré-visualização da análise no hero */
.hero-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196, 154, 75,0.18), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.hero-card > * { position: relative; z-index: 1; }
.hero-card .label {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 6px;
}
.hero-card .doc {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule-soft);
}
.hero-card .doc b { font-family: var(--serif); font-size: 18px; font-weight: 400; color: var(--ink); }
.hero-card .doc .ok {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ok);
  background: var(--ok-soft);
  border: 1px solid color-mix(in oklch, var(--ok) 30%, transparent);
  padding: 4px 10px; border-radius: 999px;
}
.hero-card .doc .ok::before {
  content: ""; width: 6px; height: 6px; background: var(--ok); border-radius: 50%;
}
.hero-card .rows { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.hero-card .row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--ink-soft);
}
.hero-card .row b { color: var(--ink); font-weight: 500; }
.hero-card .row .v { font-family: var(--mono); color: var(--ink); }
.hero-card .row .v.bad { color: var(--danger); }
.hero-card .total {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--rule);
  display: flex; align-items: baseline; justify-content: space-between;
}
.hero-card .total .k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted);
}
.hero-card .total .v {
  font-family: var(--serif); font-size: 38px; color: var(--accent);
  letter-spacing: -0.01em;
}

/* ---------- Como começa ---------- */
.start-banner {
  margin-top: 56px;
  background:
    radial-gradient(120% 200% at 100% 0%, rgba(196, 154, 75,0.18), transparent 50%),
    var(--surface-3);
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 18px;
  padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.start-banner .lead {
  font-family: var(--serif); font-size: 22px; line-height: 1.3;
  max-width: 640px;
}
.start-banner .lead b { font-family: var(--serif); font-weight: 400; color: var(--accent); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---------- Processo (3 cards) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ---------- Resultados ---------- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color .2s, background .2s;
}
.result-card:hover { border-color: color-mix(in oklch, var(--rule) 50%, var(--accent) 30%); background: var(--surface-3); }
.result-card .ic {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  border: 1px solid var(--rule);
  border-radius: 12px; color: var(--accent);
  background: var(--surface-2);
}
.result-card .ic svg { width: 20px; height: 20px; }
.result-card .big {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 60px);
  line-height: 1; letter-spacing: -0.015em;
  color: var(--ink);
}
.result-card .big small {
  font-size: 0.45em; letter-spacing: 0.02em;
  color: var(--ink-muted); margin-left: 4px;
}
.result-card .lbl {
  margin-top: 14px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.disclaimer {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55;
  font-style: italic;
}

/* ---------- Depoimentos ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
}
.testi .stars { display: inline-flex; gap: 2px; color: var(--accent); }
.testi blockquote {
  font-family: var(--serif);
  font-size: 18px; line-height: 1.45;
  color: var(--ink);
  flex: 1;
}
.testi .who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-soft);
}
.testi .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  display: grid; place-items: center;
  font-family: var(--serif);
  color: var(--accent);
  font-size: 16px;
}
.testi .who .meta b { display: block; font-size: 14px; color: var(--ink); font-weight: 500; }
.testi .who .meta small { font-size: 12px; color: var(--ink-muted); }
.testi .amt {
  margin-top: auto;
  padding: 10px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid color-mix(in oklch, var(--accent) 25%, transparent);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  align-self: flex-start;
}

/* ---------- Por que escolher ---------- */
.why {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.why-aside {
  background:
    radial-gradient(140% 140% at 100% 0%, rgba(196, 154, 75,0.14), transparent 50%),
    linear-gradient(180deg, var(--surface-3), var(--surface));
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 22px;
}
.why-aside h3 {
  color: var(--ink); font-family: var(--serif);
  font-size: 24px; line-height: 1.2;
}
.why-aside p { color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.why-aside .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklch, var(--accent) 35%, transparent);
  background: var(--accent-soft);
  font-size: 12px; color: var(--accent);
  letter-spacing: 0.04em; text-transform: uppercase;
  align-self: flex-start;
}
.why-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.why-stats .k {
  font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--ink);
}
.why-stats .l { font-size: 11px; color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }

.security-note {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; align-items: flex-start; gap: 16px;
}
.security-note .ic {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  color: var(--accent);
}
.security-note .ic svg { width: 16px; height: 16px; }
.security-note b { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; font-weight: 500; }
.security-note p { font-size: 13px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  padding: 22px 28px;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  display: inline-block;
  width: 14px; height: 14px;
  position: relative;
  flex: 0 0 auto; margin-left: 18px;
}
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: currentColor; transition: transform .25s ease;
}
.faq-toggle::before { left: 0; right: 0; top: 50%; height: 1.5px; }
.faq-toggle::after { top: 0; bottom: 0; left: 50%; width: 1.5px; }
.faq-item.open .faq-toggle::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 28px 24px; color: var(--ink-soft); font-size: 15px; line-height: 1.6; max-width: 720px; }

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(196, 154, 75,0.15), transparent 60%),
    var(--surface-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 110px 0;
}
.final-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.015em;
  margin-bottom: 22px;
}
.final-cta h2 em { font-style: italic; color: var(--accent); }
.final-cta p { color: var(--ink-soft); font-size: 18px; max-width: 540px; margin: 0 auto 36px; }
.final-cta .actions { display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ---------- Footer ---------- */
.foot {
  padding: 72px 0 40px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.foot h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; }
.foot li { margin-bottom: 10px; font-size: 14px; color: var(--ink-soft); }
.foot li a:hover { color: var(--accent); }
.foot-bot {
  margin-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--ink-muted); flex-wrap: wrap; gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .process-grid, .results-grid, .testi-grid { grid-template-columns: 1fr; }
  .why { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .start-banner { padding: 22px; }
}
