@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
  --paper: #E8ECF4;
  --paper-2: #DEE4EF;
  --card: #FFFFFF;
  --card-subtle: #F4F6F9;
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --accent: #1FA36A;
  --accent-deep: #178A59;
  --signal: #C9F04D;
  --signal-ink: #5F7513;
  --signal-bg: #EFF7D0;
  --line: rgba(16, 24, 40, 0.10);
  --line-strong: rgba(16, 24, 40, 0.18);
  --good: #1FA36A;

  /* Painéis escuros (hero, promessa, oferta) - fixos nos dois temas */
  --dark: #0C1F17;
  --dark-2: #12291F;
  --dark-line: rgba(255, 255, 255, 0.10);
  --on-dark: #FFFFFF;
  --on-dark-soft: #ADBDB4;

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.16);
  --shadow-glow: 0 0 0 4px rgba(31, 163, 106, 0.15);

  --maxw: 1120px;
  --readw: 40rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #0A1811;
    --paper-2: #0C1F17;
    --card: #13251C;
    --card-subtle: #182E23;
    --ink: #F0F4F1;
    --ink-soft: #ADBDB4;
    --ink-faint: #7C8F85;
    --accent: #2ABE7F;
    --accent-deep: #1FA36A;
    --signal: #C9F04D;
    --signal-ink: #C9F04D;
    --signal-bg: rgba(201, 240, 77, 0.10);
    --line: rgba(255, 255, 255, 0.10);
    --line-strong: rgba(255, 255, 255, 0.20);
    --good: #2ABE7F;
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
  }
}
:root[data-theme="dark"] {
  --paper: #0A1811;
  --paper-2: #0C1F17;
  --card: #13251C;
  --card-subtle: #182E23;
  --ink: #F0F4F1;
  --ink-soft: #ADBDB4;
  --ink-faint: #7C8F85;
  --accent: #2ABE7F;
  --accent-deep: #1FA36A;
  --signal: #C9F04D;
  --signal-ink: #C9F04D;
  --signal-bg: rgba(201, 240, 77, 0.10);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.20);
  --good: #2ABE7F;
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.4);
}
:root[data-theme="light"] {
  --paper: #E8ECF4;
  --paper-2: #DEE4EF;
  --card: #FFFFFF;
  --card-subtle: #F4F6F9;
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --accent: #1FA36A;
  --accent-deep: #178A59;
  --signal: #C9F04D;
  --signal-ink: #5F7513;
  --signal-bg: #EFF7D0;
  --line: rgba(16, 24, 40, 0.10);
  --line-strong: rgba(16, 24, 40, 0.18);
  --good: #1FA36A;
  --shadow-md: 0 4px 12px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 32px rgba(16, 24, 40, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* ---------- Type ---------- */
h1, h2, h3 { font-family: var(--font-display); text-wrap: balance; margin: 0; }
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  display: inline-block;
}
.lead { color: var(--ink-soft); font-size: 1.15rem; line-height: 1.6; max-width: var(--readw); }
.mono { font-family: var(--font-mono); }
.tnum { font-variant-numeric: tabular-nums; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 16px 32px; border-radius: var(--radius-full); border: none; cursor: pointer;
  text-decoration: none; line-height: 1; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-glow), 0 10px 24px -12px var(--accent); }
.btn-sub { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ink-faint); margin-top: 12px; font-weight: 500; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ---------- Nav ---------- */
.nav {
  /* Barra escura contínua com o hero */
  --ink: #FFFFFF;
  --ink-soft: #ADBDB4;
  --ink-faint: #7C8F85;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #2ABE7F;
  --signal: #C9F04D;
  position: sticky; top: 0; z-index: 50;
  background: rgba(12, 31, 23, 0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--dark-line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; font-size: 1.12rem; display: flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink); }
.brand .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(42, 190, 127, 0.22); }
.brand b { color: var(--signal); font-weight: 700; }
.brand-mark { flex: none; }
.brand-word { letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); text-decoration: none; }
.nav-link:hover { color: #fff; }
.nav-link[aria-current="page"] { color: var(--signal); }
.nav-cta { font-size: 0.85rem; font-weight: 600; color: #fff; text-decoration: none; background: var(--accent); padding: 11px 20px; border-radius: var(--radius-full); transition: background .15s ease; }
.nav-cta:hover { background: var(--accent-deep); color: #fff; }

/* ---------- Hero (painel verde-escuro com grid) ---------- */
.hero {
  background: var(--dark);
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 72px 72px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 76px 0 64px;
  overflow: hidden;
  min-height: calc(100vh - 66px);
  min-height: calc(100svh - 66px);
  display: flex;
  align-items: center;
}
.hero > .wrap { width: 100%; }
.hero .eyebrow { color: var(--signal); }
.hero .eyebrow::before { background: var(--signal); }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; margin: 20px 0 22px; color: var(--on-dark); }
.hero h1 .hl { color: var(--signal); }
.hero .lead { margin-bottom: 28px; color: var(--on-dark-soft); }
.hero .btn-sub { color: var(--on-dark-soft); }
/* Escopo do serviço: imóveis de locação, online, sem visita presencial */
.hero-scope {
  margin: 0 0 26px;
  max-width: var(--readw);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--on-dark-soft);
  border-left: 2px solid var(--signal);
  padding-left: 14px;
}
.hero-scope b { color: var(--on-dark); font-weight: 600; }

.trustbar { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.trustbar span { font-size: 0.82rem; font-weight: 500; color: var(--on-dark-soft); display: inline-flex; align-items: center; gap: 7px; }
.hero .check { color: var(--signal); }
.check { color: var(--accent); font-weight: 700; }

/* Laudo mock card - sempre claro, flutuando sobre o painel escuro */
.laudo {
  --paper: #E8ECF4;
  --paper-2: #F4F6F9;
  --card: #FFFFFF;
  --ink: #101828;
  --ink-soft: #475467;
  --ink-faint: #667085;
  --line: rgba(16, 24, 40, 0.10);
  --line-strong: rgba(16, 24, 40, 0.18);
  --good: #1FA36A;
  background: var(--card);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: rotate(-1.1deg);
}
.laudo-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--line); background: var(--paper-2); }
.laudo-head .l { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.laudo-head .doc { font-family: var(--font-mono); font-size: 0.7rem; color: var(--ink-faint); }
.laudo-photo { height: 168px; background:
    linear-gradient(135deg, rgba(31, 163, 106, 0.28) 0%, #DFE7E2 60%),
    repeating-linear-gradient(45deg, transparent 0 11px, rgba(16, 24, 40, 0.05) 11px 12px);
  position: relative; border-bottom: 1px solid var(--line); }
.laudo-photo .tstamp { position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 0.68rem; color: #fff; background: rgba(12, 31, 23, 0.78); padding: 4px 8px; border-radius: 6px; letter-spacing: 0.02em; }
.laudo-photo .geo { position: absolute; right: 12px; top: 12px; font-family: var(--font-mono); font-size: 0.64rem; color: var(--ink); background: rgba(255, 255, 255, 0.88); padding: 4px 8px; border-radius: 6px; border: 1px solid var(--line); }
.laudo-rows { padding: 8px 20px 6px; }
.lrow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.9rem; }
.lrow:last-child { border-bottom: none; }
.lrow .k { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.lrow .v { font-weight: 600; }
.stamp {
  position: absolute; top: 128px; right: 22px; z-index: 3;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em;
  color: var(--good); border: 2.5px solid var(--good); padding: 7px 14px; border-radius: var(--radius-full);
  transform: rotate(-9deg); text-transform: uppercase; background: rgba(255, 255, 255, 0.82);
}
.hero-figure { position: relative; z-index: 1; }
.hero-figure img { display: block; width: 100%; height: auto; max-width: 100%; filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5)); }

/* Composição do hero: WhatsApp → laudo */
.wa-flow { display: grid; grid-template-columns: 1fr 1.05fr; gap: 20px; align-items: start; position: relative; }
.wa-flow .laudo { position: relative; margin-top: 34px; transform: rotate(1.2deg); }
.wa-flow .laudo-head { padding: 10px 14px; }
.wa-flow .laudo-head .l { font-size: 0.6rem; }
.wa-flow .laudo-head .doc { font-size: 0.6rem; white-space: nowrap; }
.wa-flow .laudo-photo { height: 128px; }
.wa-flow .laudo-photo .tstamp { font-size: 0.56rem; left: 10px; bottom: 10px; }
.wa-flow .laudo-photo .geo { font-size: 0.54rem; right: 10px; top: 10px; }
.wa-flow .laudo-rows { padding: 4px 14px 4px; }
.wa-flow .lrow { font-size: 0.74rem; padding: 7px 0; gap: 10px; }
.wa-flow .lrow .k { font-size: 0.58rem; flex: none; align-self: center; }
.wa-flow .lrow .v { text-align: right; }
.wa-flow .stamp { top: 88px; right: 12px; font-size: 0.66rem; padding: 5px 10px; border-width: 2px; }
.wa-arrow { position: absolute; left: 50%; top: 2%; transform: translateX(-58%); width: 62px; color: var(--signal); z-index: 3; pointer-events: none; }
.whats {
  background: #EFE7DC;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: rotate(-1.4deg);
}
.wa-head { display: flex; align-items: center; gap: 10px; background: #075E54; padding: 11px 14px; }
.wa-avatar { width: 30px; height: 30px; border-radius: 50%; background: #25D366; color: #fff; font-weight: 700; font-size: 0.85rem; display: grid; place-items: center; flex: none; }
.wa-id { display: flex; flex-direction: column; line-height: 1.2; }
.wa-name { color: #fff; font-weight: 600; font-size: 0.82rem; }
.wa-status { color: rgba(255, 255, 255, 0.72); font-size: 0.62rem; }
.wa-body { display: flex; flex-direction: column; gap: 7px; padding: 14px 12px 16px; }
.msg { max-width: 88%; padding: 7px 11px; border-radius: 12px; font-size: 0.76rem; line-height: 1.45; color: #111B21; box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); }
.msg.in { background: #FFFFFF; border-top-left-radius: 4px; align-self: flex-start; }
.msg.out { background: #D9FDD3; border-top-right-radius: 4px; align-self: flex-end; }
.msg.photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; padding: 5px; width: 78%; }
.msg.photos span { aspect-ratio: 1; border-radius: 7px; display: block; background: linear-gradient(135deg, #C9C2B2 0%, #9DAB9E 55%, #7E8F82 100%); }
.msg.file { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.msg .pdf { background: #E5484D; color: #fff; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em; padding: 4px 6px; border-radius: 6px; flex: none; }

/* ---------- Section scaffolding ---------- */
section { padding: 96px 0; }
section + section { border-top: 1px solid var(--line); }
/* Painéis de destaque ocupam a altura da tela */
.promise, .offer, .variants {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); display: flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.sec-label .num { color: var(--accent); }
.sec-h { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; max-width: 24ch; }
.sec-sub { color: var(--ink-soft); font-size: 1.08rem; max-width: var(--readw); margin-top: 16px; }

/* Promise band - painel escuro com grid */
.promise {
  background: var(--dark);
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 72px 72px;
  color: var(--on-dark);
  border-top: none !important;
  border-radius: var(--radius-xl);
  max-width: calc(var(--maxw) + 48px);
  margin: 0 auto;
}
.promise .sec-label { color: var(--on-dark-soft); }
.promise .sec-label .num { color: var(--signal); }
.promise .big { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; font-size: clamp(1.9rem, 4.4vw, 3rem); }
.promise .big em { font-style: normal; color: var(--signal); }
.promise .big u { text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.promise .note { color: var(--on-dark-soft); font-size: 0.95rem; font-weight: 500; margin-top: 22px; }

/* Old vs new */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.col { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; background: var(--card); box-shadow: var(--shadow-md); }
.col.old { background: transparent; box-shadow: none; }
.col h4 { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 16px; }
.col.old h4 { color: var(--ink-faint); }
.col.new h4 { color: var(--accent); }
.col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.col li { display: flex; gap: 11px; font-size: 0.96rem; line-height: 1.45; color: var(--ink-soft); }
.col.new li { color: var(--ink); }
.col li .mk { flex: none; font-weight: 700; }
.col.old .mk { color: var(--ink-faint); }
.col.new .mk { color: var(--good); }

/* Steps / mechanism */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.step { border: none; border-radius: var(--radius-lg); padding: 28px; background: var(--card); position: relative; box-shadow: var(--shadow-md); }
.step .n { display: inline-block; font-weight: 600; font-size: 0.72rem; color: var(--accent); letter-spacing: 0.08em; background: rgba(31, 163, 106, 0.10); padding: 5px 12px; border-radius: var(--radius-full); }
.step h3 { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.01em; margin: 16px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Value stack / receipt */
.receipt { background: var(--card); border: none; border-radius: var(--radius-lg); overflow: hidden; margin-top: 34px; box-shadow: var(--shadow-lg); }
.receipt-top { padding: 20px 28px; border-bottom: 1px dashed var(--line-strong); display: flex; justify-content: space-between; align-items: baseline; }
.receipt-top .t { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); }
.receipt-top .t2 { font-family: var(--font-mono); font-size: 0.74rem; color: var(--ink-faint); }
.item { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 17px 28px; border-bottom: 1px dashed var(--line); align-items: baseline; }
.item:last-of-type { border-bottom: none; }
.item .desc b { font-weight: 600; }
.item .desc small { display: block; color: var(--ink-soft); font-size: 0.86rem; margin-top: 3px; font-weight: 400; line-height: 1.4; }
.item .price { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--ink); white-space: nowrap; }
.item.bonus { background: var(--signal-bg); }
.item.bonus .tag { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal-ink); border: 1px solid var(--signal-ink); padding: 3px 9px; border-radius: var(--radius-full); margin-right: 9px; vertical-align: middle; }
.item.bonus .price { color: var(--signal-ink); }
.item .free { text-decoration: line-through; color: var(--ink-faint); font-weight: 600; }
.receipt-total { display: grid; grid-template-columns: 1fr auto; gap: 16px; padding: 20px 28px; border-top: 2px solid var(--ink); align-items: baseline; }
.receipt-total .lbl { font-weight: 600; font-size: 1.05rem; }
.receipt-total .sum { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 1.2rem; }

/* Anchor */
.anchor-box { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; margin-top: 30px; }
.anchor-list { display: flex; flex-direction: column; gap: 16px; }
.anchor-list .ai { display: flex; gap: 14px; align-items: flex-start; }
.anchor-list .ai .q { font-weight: 700; color: var(--signal-ink); font-size: 0.9rem; flex: none; padding-top: 2px; }
.anchor-list .ai p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.anchor-list .ai b { color: var(--ink); }
.pricecard {
  --ink: #101828; --ink-soft: #475467; --ink-faint: #667085;
  position: relative; overflow: hidden;
  background: #FFFFFF; color: var(--ink);
  border-radius: var(--radius-xl); padding: 40px 32px; text-align: center;
  border: none; box-shadow: var(--shadow-lg);
}
.pricecard::before { content: ""; position: absolute; top: -45%; left: 50%; width: 340px; height: 340px; transform: translateX(-50%); background: radial-gradient(circle, rgba(201, 240, 77, 0.35), transparent 68%); pointer-events: none; }
.pricecard > * { position: relative; }
.pricecard .was { color: var(--ink-faint); }
.pricecard .was s { text-decoration-thickness: 2px; }
.pricecard .now { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.04em; line-height: 1; margin: 12px 0 4px; }
.pricecard .now .cur { font-size: 1.7rem; vertical-align: 24px; color: var(--accent); }
.pricecard .now .val { font-size: 5.2rem; color: var(--ink); }
.pricecard .per { font-size: 0.82rem; font-weight: 500; color: var(--ink-faint); }
.pricecard .btn-sub { color: var(--ink-faint) !important; }
.pricecard .btn { margin-top: 22px; width: 100%; background: var(--accent); color: #fff; box-shadow: 0 10px 22px -8px rgba(31, 163, 106, 0.5); }
.pricecard .btn:hover { background: var(--accent-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(31, 163, 106, 0.6); }

/* Offer / final CTA - painel escuro com grid */
.offer {
  background: var(--dark);
  background-image:
    linear-gradient(var(--dark-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--dark-line) 1px, transparent 1px);
  background-size: 72px 72px;
  border-radius: var(--radius-xl);
  max-width: calc(var(--maxw) + 48px);
  margin: 0 auto;
  border-top: none !important;
}
.offer .sec-label { color: var(--on-dark-soft); }
.offer .sec-label .num { color: var(--signal); }
.offer .sec-h { color: var(--on-dark); }
.offer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.offer .checklist { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.offer .checklist li { display: flex; gap: 11px; font-size: 0.98rem; color: var(--on-dark-soft); }
.offer .checklist .check { flex: none; color: var(--signal); }

/* Guarantee (stamp) */
.guarantee { display: grid; grid-template-columns: 150px 1fr; gap: 34px; align-items: center; border: none; border-radius: var(--radius-lg); padding: 36px; background: var(--card); margin-top: 8px; box-shadow: var(--shadow-md); }
.seal { width: 148px; height: 148px; border-radius: 50%; border: 3px solid var(--good); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--good); transform: rotate(-7deg); position: relative; background: rgba(31, 163, 106, 0.06); }
.seal::before { content: ""; position: absolute; inset: 8px; border: 1.5px dashed var(--good); border-radius: 50%; }
.seal .big { font-weight: 700; font-size: 2.6rem; line-height: 1; letter-spacing: -0.03em; }
.seal .sm { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
.guarantee h3 { font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; }
.guarantee p { color: var(--ink-soft); margin: 12px 0 0; }
.guarantee b { color: var(--ink); }

/* Assinatura eletrônica gov.br */
.assina { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; border: none; border-radius: var(--radius-lg); padding: 36px; background: var(--card); margin-top: 8px; box-shadow: var(--shadow-md); }
.govbr-chip { flex: none; display: inline-flex; align-items: center; justify-content: center; background: #fff; border: 1px solid rgba(19, 81, 180, 0.14); border-radius: var(--radius-lg); padding: 22px 30px; box-shadow: 0 8px 24px -16px rgba(19, 81, 180, 0.5); }
.govbr-logo { display: block; width: 150px; height: auto; }
.assina h3 { font-size: 1.45rem; font-weight: 600; letter-spacing: -0.01em; }
.assina p { color: var(--ink-soft); margin: 12px 0 0; max-width: 60ch; }
.assina p a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.assina b { color: var(--ink); }
.assina-tags { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px; }
.assina-tags span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 7px; }

/* Urgency */
.urgency { border: 1px solid rgba(95, 117, 19, 0.35); background: var(--signal-bg); border-radius: var(--radius-lg); padding: 26px 28px; margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px 40px; align-items: center; justify-content: space-between; }
.urgency .u-txt { max-width: 46ch; }
.urgency .u-txt strong { display: block; font-weight: 600; font-size: 1.12rem; margin-bottom: 4px; color: var(--ink); }
.urgency .u-txt span { color: var(--ink-soft); font-size: 0.95rem; }
.meter { min-width: 220px; flex: 1; }
.meter .bar { height: 12px; border-radius: var(--radius-full); background: rgba(16, 24, 40, 0.10); overflow: hidden; }
.meter .fill { height: 100%; width: 74%; background: var(--accent); border-radius: var(--radius-full); }
.meter .cap { font-size: 0.74rem; font-weight: 500; color: var(--ink-soft); margin-top: 8px; display: flex; justify-content: space-between; }

/* FAQ */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; margin-top: 30px; }
details { border-bottom: 1px solid var(--line); padding: 6px 0; }
summary { cursor: pointer; list-style: none; font-weight: 600; padding: 12px 0; display: flex; justify-content: space-between; gap: 12px; align-items: center; font-size: 0.98rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; line-height: 1; font-weight: 500; display: inline-block; transition: transform .2s ease; }
details[open] summary::after { transform: rotate(45deg); }
details p { margin: 0 0 14px; color: var(--ink-soft); font-size: 0.95rem; max-width: 52ch; }

/* Headline variants */
.variants { background: var(--dark); color: var(--on-dark); border-radius: var(--radius-xl); max-width: calc(var(--maxw) + 48px); margin: 0 auto; border-top: none !important; }
.variants .sec-label { color: var(--on-dark-soft); }
.variants .sec-label .num { color: var(--signal); }
.variants .sec-h { color: var(--on-dark); }
.vlist { display: flex; flex-direction: column; gap: 2px; margin-top: 30px; border-top: 1px solid var(--dark-line); }
.vrow { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 4px; border-bottom: 1px solid var(--dark-line); align-items: baseline; }
.vrow .vn { color: var(--signal); font-weight: 700; font-size: 0.85rem; }
.vrow .vt { font-weight: 600; font-size: clamp(1.05rem, 2.2vw, 1.4rem); letter-spacing: -0.01em; line-height: 1.25; color: var(--on-dark); }

/* Product cards (home → produtos) */
.prodgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 34px; }
.prodcard { border: none; border-radius: var(--radius-lg); padding: 32px; background: var(--card); display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: inherit; box-shadow: var(--shadow-md); transition: transform .15s ease, box-shadow .15s ease; }
.prodcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.prodcard .pc-tag { display: inline-block; align-self: flex-start; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(31, 163, 106, 0.10); padding: 5px 12px; border-radius: var(--radius-full); }
.prodcard h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: -0.01em; }
.prodcard p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }
.prodcard .pc-go { font-size: 0.88rem; color: var(--accent); font-weight: 600; margin-top: auto; }

/* Footer */
footer { padding: 46px 0; border-top: 1px solid var(--line); }
.foot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; align-items: center; }
.foot .fbrand { font-weight: 700; }
.foot .fnote { font-size: 0.78rem; color: var(--ink-faint); max-width: 52ch; }
.foot-links { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px; }
.foot-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-soft); text-decoration: none; border-bottom: 1px solid var(--line-strong); padding-bottom: 1px; }
.foot-links a:hover { color: var(--accent); border-color: var(--accent); }
.fnote-legal b { display: block; margin-bottom: 8px; font-weight: 600; color: var(--ink-soft); }
.fdisclaimer { margin: 26px 0 0; padding-top: 20px; border-top: 1px solid var(--line); max-width: none; line-height: 1.5; }

/* Cookie consent (LGPD) */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; background: var(--card); border-top: 1px solid var(--line-strong); box-shadow: 0 -18px 40px -28px rgba(0, 0, 0, 0.4); padding: 18px 0; transform: translateY(120%); transition: transform .35s ease; }
.cookie-bar.show { transform: none; }
@media (prefers-reduced-motion: reduce) { .cookie-bar { transition: none; } }
.cookie-inner { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; }
.cookie-txt { font-size: 0.9rem; color: var(--ink-soft); max-width: 64ch; line-height: 1.5; margin: 0; }
.cookie-txt a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-actions .btn { padding: 11px 22px; font-size: 0.9rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

a:focus-visible, button:focus-visible, summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .anchor-box, .offer-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr; }
  .compare, .faq, .prodgrid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 520px; }
  .wa-flow { grid-template-columns: 1fr; gap: 26px; }
  .wa-flow .laudo { margin-top: 0; }
  .wa-arrow { display: none; }
  .guarantee, .assina { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .nav-links { gap: 14px; }
  .promise, .offer, .variants { border-radius: var(--radius-lg); min-height: 0; }
  .hero { min-height: 0; padding: 60px 0 56px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 48px 0 40px; border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
  section { padding: 56px 0; }
  .pricecard .now .val { font-size: 3.8rem; }
  .item { grid-template-columns: 1fr; gap: 6px; }
  .item .price { justify-self: start; }
  .nav-cta, .nav-links { display: none; }
  .btn { padding: 15px 24px; font-size: 0.95rem; }
}

/* ==========================================================================
   BLOG  ·  área editorial (SEO/GEO) - isolada do funil de produto
   ========================================================================== */

/* Índice do blog */
.blog-hero { padding: 64px 0 20px; border-bottom: 1px solid var(--line); }
.blog-hero h1 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.12; }
.blog-hero .lead { margin-top: 16px; }

.blog-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; padding: 40px 0 8px; }
.post-card {
  display: flex; flex-direction: column; gap: 12px;
  background: var(--card); border: none; border-radius: var(--radius-lg);
  padding: 28px 26px; text-decoration: none; color: var(--ink);
  box-shadow: var(--shadow-md);
  transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-card .pc-kicker { display: inline-block; align-self: flex-start; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: rgba(31, 163, 106, 0.10); padding: 4px 11px; border-radius: var(--radius-full); }
.post-card h2, .post-card h3 { font-size: 1.24rem; font-weight: 600; line-height: 1.28; letter-spacing: -0.01em; }
.post-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
.post-card .pc-read { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.03em; color: var(--ink-faint); margin-top: auto; }

/* Artigo */
.breadcrumb { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.02em; color: var(--ink-faint); padding: 26px 0 0; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--line-strong); margin: 0 8px; }

.article { max-width: 44rem; margin: 0 auto; padding: 0 24px 24px; }
.article-head { padding: 18px 0 6px; }
.article-head .kicker { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.article-head h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; margin: 14px 0 0; }
.article-meta { font-size: 0.76rem; font-weight: 500; color: var(--ink-faint); margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px 16px; }

/* Caixa de resposta rápida - otimizada para featured snippet e citação por IA */
.tldr { background: var(--card); border: none; border-left: 3px solid var(--accent); border-radius: var(--radius-md); padding: 20px 22px; margin: 28px 0; box-shadow: var(--shadow-md); }
.tldr .t { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.tldr p { margin: 8px 0 0; font-size: 1.05rem; color: var(--ink); line-height: 1.55; }

.article-body { font-size: 1.06rem; line-height: 1.7; color: var(--ink); }
.article-body > * + * { margin-top: 1.15em; }
.article-body h2 { font-size: 1.5rem; font-weight: 600; letter-spacing: -0.01em; margin-top: 2.2em; line-height: 1.25; }
.article-body h3 { font-size: 1.18rem; font-weight: 600; margin-top: 1.8em; }
.article-body p, .article-body li { color: var(--ink-soft); }
.article-body strong { color: var(--ink); }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.article-body ul, .article-body ol { padding-left: 1.3em; }
.article-body li + li { margin-top: 0.5em; }
.article-body blockquote { border-left: 3px solid var(--line-strong); margin: 1.4em 0; padding: 4px 0 4px 20px; color: var(--ink-soft); font-style: italic; }
.article-body table { width: 100%; border-collapse: collapse; font-size: 0.96rem; }
.article-body th, .article-body td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article-body th { color: var(--ink); background: var(--card-subtle); font-weight: 600; }
.article-body figure { margin: 0; }
.article-tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); }

/* CTA embutido no artigo - leva de volta ao produto */
.article-cta { background: var(--card); border: none; border-radius: var(--radius-lg); padding: 32px 30px; margin: 40px 0; text-align: center; box-shadow: var(--shadow-md); }
.article-cta h3 { font-size: 1.32rem; font-weight: 600; letter-spacing: -0.01em; }
.article-cta p { color: var(--ink-soft); margin: 10px auto 20px; max-width: 46ch; }

/* CTA discreta inline - apontando para a página principal do produto */
.cta-soft {
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0 14px 16px;
  border-left: 2px solid var(--accent);
  margin: 1.8em 0;
  text-decoration: none;
}
.cta-soft:hover { color: var(--ink); }
.cta-soft b { color: var(--ink); font-weight: 600; }
.cta-soft .go { color: var(--accent); font-weight: 600; white-space: nowrap; }
.cta-soft:hover .go { text-decoration: underline; text-underline-offset: 2px; }

.article-faq { margin-top: 2.4em; }
.article-faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.article-faq summary { font-weight: 600; color: var(--ink); cursor: pointer; padding: 14px 0; list-style: none; }
.article-faq summary::-webkit-details-marker { display: none; }
.article-faq summary::before { content: "+"; color: var(--accent); font-weight: 700; margin-right: 10px; display: inline-block; transition: transform .2s ease; }
.article-faq details[open] summary::before { transform: rotate(45deg); }
.article-faq p { padding: 0 0 14px; color: var(--ink-soft); }

.article-foot { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--ink-faint); }
.article-foot .disc { font-size: 0.76rem; line-height: 1.5; }

/* Bloco de autoria e confiança - padrão reutilizável em todo artigo do blog.
   Uso: <section class="article-sources"> com as fontes (só quando o artigo tratar
   de legislação) + <div class="article-foot"> com .authorbox e o disclaimer .disc. */
.article-sources { margin-top: 2.4em; }
.article-sources ul { padding-left: 1.3em; margin: 0.8em 0 0; }
.article-sources li { color: var(--ink-soft); }
.article-sources li + li { margin-top: 0.5em; }

.authorbox { background: var(--card-subtle); border-radius: var(--radius-md); padding: 16px 18px; margin-bottom: 20px; font-size: 0.82rem; line-height: 1.55; color: var(--ink-faint); }
.authorbox p { margin: 0; }
.authorbox p + p { margin-top: 6px; }
.authorbox .ab-by { font-size: 0.92rem; font-weight: 600; color: var(--ink); }

@media (max-width: 560px) {
  .blog-hero { padding: 44px 0 16px; }
  .article-body { font-size: 1.02rem; }
}
