/* Live Cash — Product home (modo claro + tokens CSS)
   Acento esmeralda #10b981 · navy #1e293b · superfícies claras.
*/
:root {
  /* Tokens (acentos / tipografia / raios) */
  --cyan: #22D3EE;
  --teal: #14B8A6;
  --green: #10b981;
  --coral: #F4948C;
  --grad-main: linear-gradient(135deg, #34D399 0%, var(--green) 55%, #059669 100%);
  --grad-text: linear-gradient(135deg, #14B8A6 0%, var(--green) 100%);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --font-head: "Sora", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-glow: 0 0 0 1px rgba(16, 185, 129, 0.14), 0 20px 60px -20px rgba(16, 185, 129, 0.28);
  --container: 1180px;

  /* Modo claro (superfícies) */
  --bg: #F9FAFB;
  --bg-alt: #F3F4F6;
  --panel: #FFFFFF;
  --panel-soft: #F8FAFC;
  --panel-border: rgba(30, 41, 59, 0.08);
  --panel-border-strong: rgba(30, 41, 59, 0.14);
  --text: #1e293b;
  --text-muted: #475569;
  --text-faint: #94A3B8;
  --navy: #1e293b;
  --navy-soft: #334155;
  --border: var(--panel-border-strong);
  --accent: var(--green);
  --accent-hover: #059669;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  --shadow-img: 0 12px 36px rgba(15, 23, 42, 0.1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--navy);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.35em; }
p { margin: 0 0 1em; }
.container { width: min(100% - 40px, var(--container)); margin: 0 auto; }

.text-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--cyan);
}

/* Destaque de palavra-chave em títulos de seção */
.title-kw {
  color: #10b981;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.lede, .section-lede { color: var(--text-muted); font-size: 1.05rem; max-width: 36em; }
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lede { margin-inline: auto; }

/* Buttons — gradiente cyan → teal → green (tokens originais) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  transition: transform .15s, background .15s, box-shadow .15s, border-color .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--grad-main);
  color: #06111A;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  filter: brightness(1.05);
  color: #06111A;
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--navy); }
.btn-sm { min-height: 44px; padding: 10px 16px; font-size: 0.9rem; }
.btn-lg { min-height: 52px; padding: 14px 26px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-text {
  color: var(--navy-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(249, 250, 251, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand-logo { height: 48px; width: auto; }
.brand-logo-header {
  height: 53px; /* 48px + 10% */
  width: auto;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 4px 12px rgba(7, 11, 23, 0.18)) drop-shadow(0 1px 3px rgba(7, 11, 23, 0.12));
}
.main-nav { display: flex; gap: 20px; align-items: center; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}
.main-nav a:hover { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 22px;
  background: var(--navy); border-radius: 2px;
}

/* Hero — texto esq / ilustração dir */
.hero {
  padding: 48px 0 64px;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 24px 0 16px;
}
.hero-seal {
  font-size: 0.875rem;
  color: var(--text-faint);
  margin-bottom: 16px;
}

/* Badge de diferencial no hero */
.diff-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--grad-main);
  color: #052e1c;
  font-family: var(--font-head);
  font-size: clamp(0.78rem, 1.8vw, 0.92rem);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 10px 28px -12px rgba(16, 185, 129, 0.55);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}

/* Seção central de diferenciais */
.section-diff {
  background: var(--panel);
  border-block: 1px solid var(--border);
  padding: 88px 0;
}
.section-diff .section-head { margin-bottom: 2.5rem; }
.section-diff .section-lede { max-width: 40em; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}
.diff-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 8px;
  background: transparent;
  min-width: 0;
}
.diff-card-img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin-bottom: 4px;
}
.diff-card h3 {
  margin: 0;
  font-size: 1.15rem;
}
.diff-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.diff-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Strip de selos */
.seal-strip {
  padding: 48px 0;
  background: var(--bg-alt);
}
.seal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.seal-item {
  padding: 20px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.seal-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.seal-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.seal-item h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.35;
}
.seal-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Quem constrói */
.authority-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.authority-card {
  padding: 28px 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.authority-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}
.authority-card p {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Imagens: card + harmonia de paleta (verde → laranja corporativo) */
.img-card {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-img);
  background: var(--panel);
  object-fit: cover;
}
/* Imagens sem filtro — cores originais dos assets */

/* Logos oficiais dos marketplaces */
.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.marketplace-logos.compact {
  margin-top: 12px;
  gap: 12px 16px;
}
.marketplace-logos .mkt-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  max-width: 110px;
}
.marketplace-logos.compact .mkt-logo { height: 32px; max-width: 120px; }
.marketplace-logos .mkt-logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.marketplace-logos .mkt-logo-shopee { height: 36px; }
.marketplace-logos.compact .mkt-logo-shopee { height: 40px; }

/* Pills legacy (wizard/outros) — cores originais */
.marketplace-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.marketplace-pills.compact { margin-top: 12px; }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.pill-ml { background: #FFE600; color: #1a1a1a; }
.pill-shopee { background: #EE4D2D; }
.pill-amazon { background: #232F3E; }
.pill-magalu { background: #0086FF; }
.pill-ifood { background: #EA1D2C; }

.check-card .mkt-logo-inline {
  display: inline-block;
  height: 18px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
}
.check-card .mkt-logo-inline.shopee { height: 22px; }

.footer-trademark {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 42em;
  line-height: 1.45;
}

/* Sections */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.split-grid.reverse .split-media { order: -1; }
.card-stack { display: flex; flex-direction: column; gap: 14px; }
.info-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .15s, box-shadow .15s;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(17, 34, 64, 0.1);
}
.info-icon { font-size: 1.4rem; line-height: 1; }
.info-card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }
.step-badge {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}

.how-media { max-width: 720px; margin: 0 auto 32px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.step-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
  align-items: stretch;
}
.proof-block { height: 100%; }
.proof-label {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-block h3 { margin-bottom: 12px; }
.proof-note {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.proof-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof-list li {
  position: relative;
  padding: 14px 14px 14px 18px;
  background: var(--panel-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  border-left: 3px solid var(--accent);
}
.proof-stats {
  margin-bottom: 18px;
  grid-template-columns: 1fr;
}
.proof-media {
  margin-top: 24px;
  max-width: 720px;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.stat {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.proof-block .stat {
  background: var(--panel-soft);
  box-shadow: none;
}
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 800;
}
.stat span { font-size: 0.85rem; color: var(--text-muted); }
.quote {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: var(--panel);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--navy-soft);
}
.quote p { margin: 0; }
.quote-attr {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.proof-commitment { margin: 0; }
.proof-media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.proof-audit {
  margin: 0;
}
.proof-audit figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.proof-audit figcaption a {
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 768px) {
  .proof-media-split { grid-template-columns: 1fr; }
}
.case-links { display: flex; flex-wrap: wrap; gap: 16px; }
.case-links a { color: var(--accent); font-weight: 700; }

/* Wizard */
.section-wizard { background: var(--bg); }
.wizard-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.wizard-illust { margin-top: 20px; opacity: 0.9; }
.wizard-illust .img-card { box-shadow: var(--shadow); }
.wizard-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-img);
}
.wizard-progress {
  height: 6px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}
.wizard-progress-bar {
  height: 100%;
  width: 25%;
  background: var(--grad-main);
  border-radius: 999px;
  transition: width .35s ease;
}
.wizard-step-label {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0 0 16px;
  font-weight: 600;
}
.wiz-step h3 { font-size: 1.25rem; }
.wiz-hint { color: var(--text-muted); font-size: 0.9rem; margin-top: -4px; }
.wiz-step[hidden] { display: none !important; }
.wiz-nav[hidden],
.wiz-skip[hidden] { display: none !important; }
.wiz-step { animation: fadeUp .3s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.check-grid, .radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 16px 0 8px;
}
.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: border-color .15s, background .15s;
  background: var(--bg);
}
.check-card:hover { border-color: rgba(34, 211, 238, 0.55); }
.check-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.check-card input {
  accent-color: var(--accent);
  width: 18px; height: 18px;
  flex-shrink: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.field input {
  min-height: 48px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
  color: var(--text);
  background: #fff;
}
.field input:focus { outline: none; border-color: var(--accent); }

.wiz-nav {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.wiz-nav .btn-primary { flex: 1; }
.wiz-skip {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: 0;
  color: var(--text-faint);
  font: inherit;
  font-size: 0.9rem;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.wiz-note {
  min-height: 1.2em;
  font-size: 0.9rem;
  color: #DC2626;
  font-weight: 600;
  margin: 8px 0 0;
}
.field-error { border-color: #DC2626 !important; }
.check-grid.field-error .check-card,
.radio-grid.field-error .check-card { border-color: #FCA5A5; }

.result-lead { font-size: 1.05rem; color: var(--text-muted); }
.result-lead strong { color: var(--accent); font-size: 1.15em; }
.result-box {
  background: var(--accent-soft);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px 0 20px;
  text-align: center;
}
.result-range {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--accent);
}
.result-sep { font-size: 0.9rem; color: var(--text-muted); font-weight: 600; }
.result-formula {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}
.faq-icon { color: var(--accent); font-size: 1.25rem; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--text-muted);
}

/* Consultoria — secundária, SEM modo escuro */
.section-consultoria { padding-top: 40px; background: var(--bg-alt); }
.consultoria-box {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.consultoria-box h2 { color: var(--navy); }
.consultoria-box p { color: var(--text-muted); max-width: 40em; margin-inline: auto; }
.scarcity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: var(--accent-soft);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  margin: 8px 0 20px !important;
}
.scarcity .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.22);
}

/* Footer */
.site-footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.footer-inner { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { margin: 8px 0 0; color: var(--text-muted); font-size: 0.9rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-nav a { font-weight: 600; color: var(--text-muted); font-size: 0.9rem; }
.footer-nav a:hover { color: var(--accent); }
.footer-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-faint);
  line-height: 1.45;
  max-width: 42em;
}
.footer-note a {
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-note a:hover { color: var(--accent); }
.footer-copy { font-size: 0.8rem; color: var(--text-faint); margin: 0; }

/* Legal pages (Privacidade / Termos) */
.legal-page { padding-top: 40px; }
.legal-doc {
  max-width: 46rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow);
}
.legal-doc-head { margin-bottom: 1.75rem; }
.legal-doc-head h1 { margin-bottom: 0.35em; }
.legal-meta {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.9rem;
}
.legal-section { margin-bottom: 1.75rem; }
.legal-section h2 {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  margin-bottom: 0.65em;
}
.legal-section p { color: var(--text-muted); }
.legal-section a,
.legal-related a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-section a:hover,
.legal-related a:hover { color: var(--accent); }
.legal-list {
  margin: 0 0 1em;
  padding-left: 1.35em;
  color: var(--text-muted);
}
.legal-list li { margin-bottom: 0.55em; }
.legal-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0 4px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 36rem;
}
.legal-table th,
.legal-table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}
.legal-table th {
  background: var(--bg-alt);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
}
.legal-table tbody tr:last-child td { border-bottom: 0; }
.legal-related {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Wizard LGPD consent */
.wiz-consent {
  margin: 4px 0 14px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-faint);
  text-align: left;
}
.wiz-consent a {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wiz-consent a:hover { color: var(--accent); }
.wiz-result .wiz-consent {
  margin: 0 0 12px;
  text-align: center;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--grad-main);
  color: #06111A;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
}
.floating-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .wizard-layout,
  .steps-grid,
  .proof-grid,
  .diff-grid { grid-template-columns: 1fr; }
  .seal-grid { grid-template-columns: 1fr 1fr; }
  .authority-grid { grid-template-columns: 1fr; }
  .split-grid.reverse .split-media { order: initial; }
  .split-media { order: 2; }
  .card-stack { order: 1; }
  .stats-row { grid-template-columns: 1fr; }

  /* Hero image reduzida — CTA acima da dobra */
  .hero-visual {
    display: block;
    max-height: 40vh;
    overflow: hidden;
    border-radius: var(--radius);
  }
  .hero-visual .img-card,
  .hero-visual img {
    width: 100%;
    height: 40vh;
    max-height: 40vh;
    object-fit: cover;
    object-position: center;
  }
  .hero-grid { gap: 24px; }
  .hero-copy { order: 1; }
  .hero-visual { order: 0; }
  .diff-badge { font-size: 0.78rem; padding: 8px 12px; }
  .section-diff { padding: 64px 0; }

  .wizard-illust { display: none; }
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-actions .btn-sm { display: none; }
}

@media (max-width: 560px) {
  .check-grid, .radio-grid { grid-template-columns: 1fr; }
  .wizard-panel { padding: 20px 16px; }
  .wiz-nav { flex-direction: column-reverse; }
  .wiz-nav .btn { width: 100%; }
  .hero { padding-top: 20px; padding-bottom: 40px; }
  .section { padding: 56px 0; }
  .seal-grid { grid-template-columns: 1fr; }
  .diff-cta-row { flex-direction: column; align-items: stretch; }
  .diff-cta-row .btn { width: 100%; justify-content: center; }
}
