/* Aurelis — página inicial (hero + wizard + resultado) */

main { padding: 0 0 0; }

/* --- Hero (fundo grafite full-bleed) --- */
.hero-section {
  background: radial-gradient(120% 140% at 15% 0%, #1a2b25 0%, var(--graphite-950) 46%);
  color: var(--on-dark-ink);
  padding: 54px 0 84px;
  border-bottom: 1px solid var(--on-dark-line);
}
.hero { text-align: left; max-width: 640px; margin: 0; }
.hero h1 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  color: var(--on-dark-ink);
}
.hero h1 em { font-style: normal; color: var(--emerald-bright); }
.hero p.lead {
  margin: 0;
  max-width: 540px;
  color: var(--on-dark-muted);
  font-size: 16.5px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 32px;
  color: var(--on-dark-muted);
  font-size: 12px;
  font-weight: 600;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row svg { width: 14px; height: 14px; flex: 0 0 auto; color: var(--emerald-bright); }

/* --- Corpo (fundo claro) --- */
.page-body { padding: 40px 0 76px; margin-top: -18px; }
/* Quando a hero é ocultada (tela de resultado), não há mais o respiro do hero
   para absorver a sobreposição — sem isso o card encosta na barra de navegação. */
.hero-section.hidden + .page-body { margin-top: 24px; }

.wizard, .result-card, .refine-card, .lead-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
}
.wizard { overflow: hidden; scroll-margin-top: 24px; }

.progress {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}
.progress-copy { font-size: 12px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }
.progress-bar { height: 6px; width: 100%; background: #edece5; border-radius: 999px; overflow: hidden; }
.progress-fill { height: 100%; width: 20%; border-radius: 999px; background: linear-gradient(90deg, var(--emerald), var(--emerald-bright)); transition: width 0.25s ease; }

.screen { display: none; padding: 50px 74px 34px; min-height: 400px; animation: appear 0.22s ease; }
.screen.active { display: block; }
@keyframes appear { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.09em; font-weight: 700; color: #73786a; margin-bottom: 14px; }
.question { font-family: var(--font-display); font-size: clamp(24px, 3.4vw, 33px); line-height: 1.14; letter-spacing: -0.015em; margin: 0; max-width: 600px; font-weight: 600; }
.sub { max-width: 580px; margin: 12px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.6; }

.field-label { display: block; margin-bottom: 8px; color: #4c5058; font-size: 12px; font-weight: 700; }
.input-shell { position: relative; max-width: 420px; }
.large-input {
  width: 100%; border: 1px solid #d6d3c9; border-radius: 14px; padding: 16px 18px;
  background: #fff; font-size: 21px; font-weight: 700; color: var(--ink); outline: 0; transition: 0.15s ease;
}
.large-input:focus { border-color: var(--emerald); box-shadow: 0 0 0 4px rgba(18, 128, 95, 0.13); }
.large-input[aria-invalid="true"] { border-color: var(--red); }
.prefix, .suffix { position: absolute; top: 50%; transform: translateY(-50%); font-size: 15px; font-weight: 700; color: #7a7669; pointer-events: none; }
.prefix { left: 18px; }
.suffix { right: 18px; }
.currency .large-input { padding-left: 52px; }
.with-suffix .large-input { padding-right: 82px; }
.helper { color: var(--soft); font-size: 12px; line-height: 1.5; margin: 10px 0 0; }

.choices { display: grid; gap: 11px; max-width: 590px; }
.choice { display: block; position: relative; border: 1px solid #ded9cb; border-radius: 15px; padding: 16px 17px; background: #fff; cursor: pointer; transition: 0.15s ease; }
.choice:hover { border-color: #bcccc2; background: #fbfcfa; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice:has(input:checked) { border-color: var(--emerald); box-shadow: inset 0 0 0 1px var(--emerald); background: var(--emerald-soft); }
.choice-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.choice strong { font-size: 14px; letter-spacing: -0.01em; }
.choice p { font-size: 12px; line-height: 1.5; color: var(--muted); margin: 5px 0 0; }
.radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid #b8bbb0; display: grid; place-items: center; flex: 0 0 auto; }
.choice:has(input:checked) .radio { border-color: var(--emerald); }
.choice:has(input:checked) .radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--emerald); }

.note { display: flex; gap: 10px; align-items: flex-start; max-width: 590px; margin-top: 24px; padding: 13px 14px; border: 1px solid #e7e4d9; border-radius: 14px; background: #faf9f5; color: #5c5f57; font-size: 12px; line-height: 1.5; }
.note b { color: #383b34; }
.note-mark { font-size: 15px; line-height: 1; color: var(--copper); }

.error { min-height: 18px; margin: 9px 0 0; color: var(--red); font-size: 12px; font-weight: 700; }

.wizard-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 26px; border-top: 1px solid var(--line); }
.back-btn { border: 0; background: transparent; color: var(--muted); font-size: 13px; font-weight: 700; padding: 9px 5px; visibility: hidden; }
.back-btn.visible { visibility: visible; }
.back-btn:hover { color: var(--emerald-dark); }

/* --- Resultado --- */
.results { display: none; }
.results.active { display: block; animation: appear 0.32s ease; }
.result-card { overflow: hidden; scroll-margin-top: 24px; }
.result-head { padding: 36px 42px 28px; background: linear-gradient(132deg, #f2f5f1 0%, #fff 62%); border-bottom: 1px solid var(--line); }
.result-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: #6b7a6f; }
.result-title { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); line-height: 1.12; letter-spacing: -0.015em; margin: 10px 0 11px; max-width: 650px; font-weight: 600; }
.result-title.positive { color: var(--emerald-ink); }
.result-title.caution { color: var(--copper-dark); }
.result-title.negative { color: var(--red); }
.result-summary { margin: 0; max-width: 660px; color: #5b5f5c; font-size: 14px; line-height: 1.62; }
.result-body { padding: 30px 42px 36px; }

.metrics { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.metric { position: relative; padding: 17px; border: 1px solid #e8e6de; border-radius: var(--radius-md); background: #fff; }
.metric-label { display: block; color: #71736c; font-size: 10px; text-transform: uppercase; letter-spacing: 0.075em; font-weight: 800; }
.metric strong { display: block; margin-top: 6px; font-size: 22px; letter-spacing: -0.02em; font-family: var(--font-display); }
.metric small { display: block; margin-top: 6px; color: #71756d; font-size: 11px; line-height: 1.4; }
.metric.premium strong, .metric.premium small { filter: blur(5px); user-select: none; }
.metric.premium { background: #fbfaf7; }
.metric-lock { position: absolute; top: 12px; right: 13px; font-size: 13px; opacity: 0.55; }
.results.unlocked .metric.premium strong, .results.unlocked .metric.premium small { filter: none; user-select: auto; }
.results.unlocked .metric-lock { display: none; }

.summary-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.panel { border-radius: var(--radius-md); border: 1px solid #e8e6de; padding: 16px; }
.panel h2 { font-size: 13px; letter-spacing: -0.01em; margin: 0 0 6px; font-family: var(--font-sans); font-weight: 700; }
.panel p { font-size: 12px; line-height: 1.55; color: var(--muted); margin: 0; }
.panel strong { color: #263025; }
.panel.itbi { background: var(--copper-soft); border-color: var(--copper-line); }
.panel.itbi h3 { color: var(--copper-dark); }
.panel.succession { background: var(--emerald-soft); border-color: var(--emerald-line); }
.panel.succession h3 { color: var(--emerald-ink); }

.comparison { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.comparison-top h3 { font-size: 15px; letter-spacing: -0.01em; margin: 0; font-family: var(--font-sans); font-weight: 700; }
.comparison-top p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 4px 0 0; }
.compare-row { margin: 14px 0; }
.compare-label { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 7px; color: #4c504a; font-size: 12px; font-weight: 700; }
.compare-label b { color: #263025; }
.track { height: 9px; border-radius: 999px; overflow: hidden; background: #edece3; }
.fill { height: 100%; border-radius: 999px; background: #a9a396; width: 0; transition: width 0.35s ease; }
.fill.holding { background: linear-gradient(90deg, var(--emerald), var(--emerald-bright)); }
.fill.negative { background: var(--red); }
.status-box { margin-top: 19px; padding: 14px 15px; border-radius: 14px; font-size: 12px; line-height: 1.5; }
.status-box.tone-info { background: var(--emerald-soft); border: 1px solid var(--emerald-line); color: var(--emerald-ink); }
.status-box.tone-warn { background: var(--copper-soft); border: 1px solid var(--copper-line); color: var(--copper-dark); }
.status-box.tone-good { background: #eef6f1; border: 1px solid var(--emerald-line); color: var(--emerald-ink); }

.actions { display: flex; align-items: center; gap: 11px; flex-wrap: wrap; margin-top: 20px; }

/* --- Painel de ajustes --- */
.refine-card { display: none; margin-top: 18px; overflow: hidden; }
.refine-card.active { display: block; animation: appear 0.26s ease; }
.refine-head { padding: 22px 26px; border-bottom: 1px solid var(--line); }
.refine-head h2 { font-family: var(--font-display); font-size: 18px; letter-spacing: -0.01em; margin: 0; font-weight: 600; }
.refine-head p { margin: 5px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.refine-body { padding: 18px 26px 26px; }
.refine-section { border: 1px solid #e9e7df; border-radius: var(--radius-md); margin-top: 10px; overflow: hidden; }
.refine-section summary { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 16px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; color: #383c33; }
.refine-section summary::-webkit-details-marker { display: none; }
.refine-section summary::after { content: "+"; font-size: 18px; font-weight: 400; color: #71736c; }
.refine-section[open] summary::after { content: "\2013"; }
.refine-content { border-top: 1px solid #f0efe8; padding: 16px; }
.field-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.field label { display: block; color: #4c504a; font-size: 11px; font-weight: 700; margin-bottom: 7px; }
.field input { width: 100%; border: 1px solid #dad7cc; border-radius: 10px; padding: 10px 11px; color: var(--ink); font-size: 13px; font-weight: 700; outline: 0; }
.field input:focus { border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(18, 128, 95, 0.12); }
.toggle { display: flex; gap: 10px; align-items: flex-start; color: #565952; font-size: 12px; line-height: 1.5; margin-top: 2px; }
.toggle input { accent-color: var(--emerald); margin-top: 2px; }
.preset-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.preset-btn { border: 1px solid var(--line-strong); background: #fff; color: #3f4339; border-radius: 999px; padding: 7px 12px; font-size: 11.5px; font-weight: 700; }
.preset-btn:hover { background: var(--emerald-soft); border-color: var(--emerald-line); }
.refine-help { margin: 13px 0 0; color: #86897f; font-size: 11px; line-height: 1.5; }
.refine-actions { margin-top: 17px; }

/* --- Ações livres (metodologia / reiniciar) --- */
.free-actions { margin-top: 14px; }

/* --- Paywall (desbloqueio via Pix) --- */
.paywall-card { margin-top: 18px; padding: 32px 34px; text-align: left; background: linear-gradient(150deg, #12241d 0%, var(--graphite-950) 65%); border: 1px solid var(--on-dark-line); overflow: hidden; }
.paywall-teaser .eyebrow { margin-bottom: 12px; }
.paywall-teaser h2 { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.015em; margin: 0 0 14px; color: var(--on-dark-ink); font-weight: 600; max-width: 480px; }
.paywall-list { margin: 0 0 22px; padding: 0; list-style: none; max-width: 480px; }
.paywall-list li { position: relative; padding-left: 22px; margin-top: 9px; color: var(--on-dark-muted); font-size: 13px; line-height: 1.5; }
.paywall-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--emerald-bright); font-weight: 700; }
.paywall-list li b { color: var(--on-dark-ink); }
.paywall-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 18px; }
.paywall-price strong { font-family: var(--font-display); font-size: 26px; color: var(--on-dark-ink); letter-spacing: -0.01em; }
.paywall-price span { color: var(--on-dark-muted); font-size: 12.5px; }

/* --- Painel Pix (real, via Mercado Pago) --- */
.pix-panel { animation: appear 0.28s ease; }
.pix-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pix-head h2 { font-family: var(--font-display); font-size: 18px; color: var(--on-dark-ink); margin: 0; font-weight: 600; }
.pix-back { border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--on-dark-ink); width: 32px; height: 32px; border-radius: 10px; font-size: 15px; cursor: pointer; }
.pix-back:hover { background: rgba(255,255,255,0.12); }
.pix-body { display: flex; gap: 26px; flex-wrap: wrap; }
.pix-qr { flex: 0 0 auto; width: 148px; height: 148px; border-radius: 14px; background: #fff; padding: 10px; }
.pix-qr svg, .pix-qr img { width: 100%; height: 100%; display: block; object-fit: contain; }
.pix-details { flex: 1 1 260px; min-width: 0; }
.pix-amount { font-family: var(--font-display); font-size: 24px; color: var(--on-dark-ink); margin: 0 0 12px; font-weight: 600; }
.pix-amount-note { font-family: var(--font-sans); font-size: 12.5px; color: var(--on-dark-muted); font-weight: 500; }
.pix-code-row { display: flex; gap: 8px; }
.pix-code {
  flex: 1 1 auto; min-width: 0; border: 1px solid rgba(255,255,255,0.16); border-radius: 12px; padding: 11px 13px; font-size: 12px;
  font-family: var(--font-mono); background: rgba(255,255,255,0.06); color: var(--on-dark-muted);
}
.pix-code-row button { flex: 0 0 auto; }
.pix-hint { margin: 10px 0 0; color: #767c70; font-size: 11.5px; line-height: 1.5; }
.pix-fields { grid-template-columns: 1fr 1fr; margin-top: 16px; }
.pix-fields input {
  border: 1px solid rgba(255,255,255,0.16); border-radius: 10px; padding: 10px 11px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,0.06); color: var(--on-dark-ink); width: 100%; outline: 0;
}
.pix-fields input::placeholder { color: #6f7568; }
.pix-fields input:focus { border-color: var(--emerald-bright); box-shadow: 0 0 0 4px rgba(35, 197, 140, 0.16); }
.pix-fields input:disabled { opacity: 0.55; cursor: not-allowed; }
.pix-fields label { color: var(--on-dark-muted); }
.pix-confirm { margin-top: 18px; width: 100%; }
.pix-status { margin-top: 12px; font-size: 12.5px; line-height: 1.5; min-height: 16px; }
.pix-status.tone-good { color: var(--emerald-bright); font-weight: 700; }
.pix-status.tone-pending { color: var(--on-dark-muted); font-weight: 600; }
.pix-status.tone-bad { color: var(--red-bright); font-weight: 700; }
.pix-legal { margin-top: 10px; font-size: 11px; color: #767c70; line-height: 1.5; }
.pix-legal a { color: var(--on-dark-muted); text-decoration: underline; }
.pix-legal a:hover { color: var(--emerald-bright); }

/* --- Conteúdo desbloqueado --- */
.unlockable { margin-top: 0; }
.unlockable:not([hidden]) { animation: appear 0.4s ease; }
.detail-card { margin-top: 14px; }
.credits-banner {
  margin: 18px 0 0; padding: 12px 16px; border-radius: 12px; font-size: 12.5px; font-weight: 600;
  background: var(--emerald-soft); border: 1px solid var(--emerald-line); color: var(--emerald-ink);
}

/* --- Painel de insights (gráficos pós-pagamento) --- */
.insight-card { margin-top: 14px; }
.breakdown-head h3, .projection-head h3, .detail-head h3 { font-size: 15px; margin: 0 0 4px; font-family: var(--font-display); font-weight: 600; color: #263025; }
.breakdown-head p, .projection-head p, .detail-head p { margin: 0 0 20px; font-size: 12.5px; color: var(--muted); line-height: 1.5; max-width: 540px; }
.projection { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }

.breakdown-row { margin-bottom: 20px; }
.breakdown-row:last-child { margin-bottom: 0; }
.breakdown-label { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.breakdown-label span { font-size: 12.5px; font-weight: 700; color: #3f4339; }
.breakdown-label b { font-family: var(--font-display); font-size: 15px; letter-spacing: -0.01em; }
.breakdown-bar { display: flex; height: 32px; border-radius: 8px; overflow: hidden; background: #f0efe8; }
.breakdown-seg { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; min-width: 2px; }
.breakdown-seg + .breakdown-seg { margin-left: 2px; }
.breakdown-seg span.seg-label { font-size: 10.5px; font-weight: 700; color: #fff; white-space: nowrap; padding: 0 7px; overflow: hidden; }
.breakdown-seg.hide-label span.seg-label { display: none; }
.breakdown-seg.impostos { background: #5f5738; }
.breakdown-seg.custos { background: #b8ae8f; }
.breakdown-seg.liquido { background: var(--emerald); }
.breakdown-tooltip {
  position: absolute; bottom: calc(100% + 9px); left: 50%; transform: translateX(-50%);
  background: var(--graphite-950); color: #f6f5f1; font-size: 11px; font-weight: 600; padding: 7px 10px;
  border-radius: 9px; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.15s ease; z-index: 3;
}
.breakdown-seg:hover .breakdown-tooltip, .breakdown-seg:focus-visible .breakdown-tooltip { opacity: 1; }
.breakdown-overrun { margin-top: 10px; font-size: 12px; color: var(--red); font-weight: 700; }
.breakdown-legend { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.breakdown-legend-item { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--muted); }
.breakdown-legend-item i { width: 10px; height: 10px; border-radius: 3px; display: inline-block; flex: 0 0 auto; }
.breakdown-legend-item i.impostos { background: #5f5738; }
.breakdown-legend-item i.custos { background: #b8ae8f; }
.breakdown-legend-item i.liquido { background: var(--emerald); }

.projection-chart { position: relative; height: 168px; display: flex; align-items: flex-start; gap: 6px; }
.projection-zero-line { position: absolute; left: 0; right: 0; height: 1px; background: var(--line-strong); z-index: 1; }
.projection-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
/* Altura fixa em px (não flex:1) — o JS calcula top/height de cada barra em px
   contra este mesmo número, para casar exatamente com a linha do zero. */
.projection-bar-track { position: relative; width: 100%; height: 130px; }
.projection-bar {
  position: absolute; left: 50%; transform: translateX(-50%); width: 62%; max-width: 26px;
  border-radius: 3px; background: var(--emerald); transition: height 0.25s ease, top 0.25s ease;
}
.projection-bar.negative { background: var(--red); }
.projection-bar.payback-year { box-shadow: 0 0 0 2px var(--emerald-bright) inset; }
.projection-year-label { margin-top: 8px; font-size: 10px; color: var(--soft); font-weight: 700; }
.projection-callout {
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 800;
  color: var(--emerald-dark); white-space: nowrap; text-transform: uppercase; letter-spacing: 0.02em;
}

/* --- Detalhamento completo (accordion: memória de cálculo, sensibilidade, checklist) --- */
.detail-toggle-card { margin-top: 14px; padding: 0; overflow: hidden; }
.detail-accordion summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 26px;
  cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 15px; font-weight: 600; color: #263025;
}
.detail-accordion summary::-webkit-details-marker { display: none; }
.detail-chevron { width: 20px; height: 20px; position: relative; flex: 0 0 auto; }
.detail-chevron::before {
  content: ""; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px;
  border-right: 2px solid var(--soft); border-bottom: 2px solid var(--soft);
  transform: translate(-50%, -60%) rotate(45deg); transition: transform 0.2s ease;
}
.detail-accordion[open] .detail-chevron::before { transform: translate(-50%, -40%) rotate(-135deg); }
.detail-accordion-body { padding: 4px 26px 30px; border-top: 1px solid var(--line); }
.memory-block { margin-top: 26px; }
.memory-block:first-child { margin-top: 22px; }
.memory-block h4 { font-size: 13px; margin: 0 0 12px; font-weight: 700; color: #3f4339; }
.memory-table { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.memory-table tr { border-bottom: 1px solid #f0efe8; }
.memory-table tr:last-child { border-bottom: none; }
.memory-table td { padding: 8px 4px; color: #4c504a; }
.memory-table td:last-child { text-align: right; font-weight: 700; color: #263025; white-space: nowrap; }
.memory-table tr.total td { font-weight: 800; color: #263025; border-top: 1px solid var(--line-strong); }
.memory-table tr.reference td { color: var(--emerald-dark); font-weight: 800; }
.onpage-checklist { list-style: none; margin: 0; padding: 0; }
.onpage-checklist li { position: relative; padding-left: 26px; margin-top: 11px; font-size: 12.5px; color: #4c504a; line-height: 1.5; }
.onpage-checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 13px; height: 13px; border-radius: 4px;
  border: 1.5px solid var(--emerald); background: var(--emerald-soft);
}

@media (max-width: 700px) {
  .breakdown-seg span.seg-label { display: none; }
  .projection-chart { height: 140px; }
  .projection-bar { max-width: 18px; }
}

/* --- FAQ --- */
.faq { max-width: 720px; margin: 56px auto 0; }
.faq h2 { font-family: var(--font-display); text-align: center; font-size: 23px; letter-spacing: -0.01em; margin: 0 0 22px; font-weight: 600; }
.faq-item { border-top: 1px solid var(--line); padding: 16px 2px; }
.faq-item summary { cursor: pointer; list-style: none; font-weight: 700; font-size: 14px; display: flex; justify-content: space-between; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: #9a9d92; font-weight: 400; font-size: 18px; }
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin: 10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

@media (max-width: 700px) {
  .hero-section { padding: 44px 0 70px; }
  .screen { padding: 34px 24px 26px; min-height: 380px; }
  .result-head, .result-body { padding-left: 24px; padding-right: 24px; }
  .metrics, .summary-panels { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr 1fr; }
  .actions .btn { flex: 1; text-align: center; }
  .question { font-size: 26px; }
  .paywall-card { padding: 26px; }
  .pix-fields { grid-template-columns: 1fr; }
  .pix-qr { width: 120px; height: 120px; }
}
@media (max-width: 440px) {
  .screen { padding: 28px 18px 22px; }
  .question { font-size: 23px; }
  .result-head, .result-body { padding-left: 18px; padding-right: 18px; }
  .field-grid { grid-template-columns: 1fr; }
  .metric strong { font-size: 20px; }
  .actions { gap: 8px; }
  .actions .btn { flex: 1; }
}

/* --- Card de indicação a parceiros (não-bloqueante, independente de pagamento) --- */
.lead-share-card {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 24px 26px;
  z-index: 60;
  animation: leadShareIn 0.4s ease;
}
@keyframes leadShareIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.lead-share-card .eyebrow { margin-bottom: 10px; }
.lead-share-close {
  position: absolute; top: 12px; right: 12px; width: 28px; height: 28px; border: 0; background: transparent;
  color: var(--soft); font-size: 20px; line-height: 1; cursor: pointer; border-radius: 8px;
}
.lead-share-close:hover { background: #f0efe8; color: var(--ink); }
.lead-share-card h2 { font-family: var(--font-display); font-size: 16.5px; margin: 0 0 8px; font-weight: 600; letter-spacing: -0.01em; max-width: 90%; }
.lead-share-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0 0 16px; }
.lead-share-card .field { margin-bottom: 12px; }
.lead-share-consent { font-size: 11px; margin-bottom: 16px; }
.lead-share-consent a { color: var(--emerald-dark); font-weight: 700; text-decoration: none; }
.lead-share-consent a:hover { text-decoration: underline; }
.lead-share-actions { display: flex; align-items: center; gap: 6px; }
.lead-share-status { margin-top: 10px; font-size: 12px; line-height: 1.5; min-height: 0; }
.lead-share-status.tone-good { color: var(--emerald-dark); font-weight: 700; }
.lead-share-status.tone-bad { color: var(--red); font-weight: 700; }

@media (max-width: 520px) {
  .lead-share-card { left: 16px; right: 16px; bottom: 16px; width: auto; padding: 20px 22px; }
}
