/* =============================================
   FONTES SELF-HOSTED — Sora + Hanken Grotesk
   (variable fonts; um arquivo por subset cobre toda
   a faixa de peso usada no site — latin / latin-ext)
   ============================================= */
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/sora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/sora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/hanken-grotesk-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Hanken Grotesk';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('fonts/hanken-grotesk-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* =============================================
   CSS CUSTOM PROPERTIES — LARVON BRAND TOKENS
   (decisão do dono, plano 175 — não reabrir)
   ============================================= */
:root {
  --navy: #0b2e57;
  --navy-700: #0b4881;
  --navy-800: #092440;
  --cta: #047857;
  --cta-hover: #065f46;
  /* branco sobre --cta (#047857) = 5.5:1 — AA pass (>=4.5:1) */
  --cta-light: #10b981;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500-text: #64748b; /* WCAG: vs #fff 4.76:1 (AA pass) — variante texto-seguro de --gray-400 */
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-900: #0f172a;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(11,46,87,.07), 0 1px 2px rgba(11,46,87,.05);
  --shadow-md: 0 4px 16px rgba(11,46,87,.10), 0 2px 6px rgba(11,46,87,.06);
  --shadow-lg: 0 12px 40px rgba(11,46,87,.14), 0 4px 12px rgba(11,46,87,.08);

  --transition: 200ms cubic-bezier(.4,0,.2,1);
  --section-gap: clamp(64px, 10vw, 120px);
}

/* =============================================
   SKIP LINK (a11y)
   ============================================= */
.skip-link {
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  transition: top 150ms ease;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--cta);
  outline-offset: 2px;
}

/* =============================================
   RESET + BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

/* =============================================
   REDUCED MOTION GUARD
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* =============================================
   STAGGERED PAGE-LOAD REVEAL
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* .reveal só anima com JS ligado (html.js, ver nav.js) e só em imagens —
   sem JS, ou em título/preço/FAQ, o conteúdo já nasce visível. */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-height: 48px;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--cta); outline-offset: 3px; }

.btn-primary {
  background: var(--cta);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(4,120,87,.30);
}
.btn-primary:hover {
  background: var(--cta-hover);
  box-shadow: 0 6px 24px rgba(4,120,87,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy-700);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-img { height: 34px; width: auto; display: block; max-height: 34px; }
.footer-logo-img { height: 36px; width: auto; display: block; max-height: 36px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  color: var(--gray-600);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions .btn-ghost { padding: 10px 20px; font-size: .88rem; min-height: 40px; }
.nav-actions .btn-primary { padding: 10px 20px; font-size: .88rem; min-height: 40px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: transparent;
  border: none;
  align-items: center;
}
.nav-toggle:focus-visible { outline: 3px solid var(--cta); outline-offset: 2px; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 20px;
  border-top: 1px solid var(--gray-200);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-drawer a:hover { color: var(--navy); background: var(--gray-100); }
.nav-drawer .drawer-ctas { display: flex; gap: 10px; padding: 12px 16px 0; }
.nav-drawer .drawer-ctas .btn { flex: 1; font-size: .9rem; }
.nav-drawer .drawer-ctas .btn-primary { color: var(--white); }
.nav-drawer .drawer-ctas .btn-primary:hover { color: var(--white); background: var(--cta-hover); }
.nav-drawer .drawer-ctas .btn-ghost { color: var(--navy); }
.nav-drawer .drawer-ctas .btn-ghost:hover { color: var(--white); background: var(--navy); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding-top: clamp(28px, 3.5vw, 56px);
  padding-bottom: clamp(48px, 8vw, 96px);
  background: var(--gray-50);
  color: var(--navy);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.14;
  text-wrap: balance;
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeUp .7s .1s ease both;
}
/* em sobre fundo claro: --cta (#047857) = 5,9:1 vs branco/quase-branco — AA pass */
.hero-h1 em { font-style: normal; color: var(--cta); }

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--gray-600);
  max-width: 520px;
  margin-bottom: 16px;
  animation: fadeUp .7s .2s ease both;
}
.hero-microcopy {
  font-size: .85rem;
  color: var(--gray-500-text);
  margin-top: 12px;
  animation: fadeUp .7s .25s ease both;
}
.hero-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}

.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; animation: fadeUp .7s .3s ease both; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeUp .8s .25s ease both;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { order: 1; text-align: left; }
  .hero-visual { order: 2; margin-top: 8px; }
  .hero-ctas { justify-content: flex-start; }
}

/* =============================================
   C1 — COMPONENTES NOVOS (plano 190)
   Título alinhado à esquerda, capturas reais em vez de
   grades de cards com ícone. Ver plans/190-site-larvon-sem-cara-de-ia.md
   ============================================= */

/* Cabeçalho de seção — substitui .section-header.centered */
.sec-head { margin-bottom: clamp(28px, 5vw, 48px); max-width: 640px; }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3.5vw, 2.4rem); color: var(--navy); line-height: 1.18; max-width: 22ch; margin-bottom: 12px; }
.sec-head--center h2 { margin-inline: auto; }
.sec-head p { font-size: clamp(.9rem, 1.6vw, 1.05rem); color: var(--gray-600); max-width: 56ch; line-height: 1.65; }
.sec-head--center p { margin-inline: auto; }

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--cta);
  margin-bottom: 10px;
}

/* Linha dividida texto/imagem — substitui .hero-inner / .product-grid */
.split {
  display: grid;
  grid-template-columns: minmax(0,5fr) minmax(0,7fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.split--reverse { grid-template-columns: minmax(0,7fr) minmax(0,5fr); }
.split--reverse .split-text { order: 2; }
.split--reverse .split-media { order: 1; }
.split-media--bleed { margin-right: calc(50% - 50vw); }
.split--reverse .split-media--bleed { margin-right: 0; margin-left: calc(50% - 50vw); }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split-text, .split--reverse .split-text { order: 1; }
  .split-media, .split--reverse .split-media { order: 2; }
  .split-media--bleed, .split--reverse .split-media--bleed { margin-inline: 0; }
}

/* Captura real do produto */
.shot { position: relative; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--gray-200); box-shadow: var(--shadow-md); background: var(--white); }
.shot img { width: 100%; height: auto; display: block; }
.shot-cap { margin-top: 10px; font-size: .85rem; color: var(--gray-500-text); }

/* Rótulo preso a um ponto da captura */
.pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
}
.pin-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cta); box-shadow: 0 0 0 4px rgba(4,120,87,.22); flex-shrink: 0; }
.pin-label {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600; color: var(--navy);
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px;
  padding: 5px 12px; box-shadow: var(--shadow-sm); white-space: nowrap;
}
@media (max-width: 900px) {
  .pin { display: none; }
  .pin-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; list-style: none; }
  .pin-list li { display: flex; gap: 8px; align-items: flex-start; font-size: .85rem; color: var(--gray-600); }
  .pin-list .pin-dot { margin-top: 5px; }
}
@media (min-width: 901px) { .pin-list { display: none; } }

/* Lista com divisórias — substitui grades de card com ícone */
.rowlist { display: flex; flex-direction: column; }
.rowlist-item { display: flex; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--gray-200); }
.rowlist-item:first-child { padding-top: 0; }
.rowlist-item:last-child { border-bottom: none; }
.rowlist-item-title { flex: 0 0 30%; font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--navy); }
.rowlist-item-text { flex: 1; font-size: .9rem; color: var(--gray-600); line-height: 1.6; }
@media (max-width: 640px) {
  .rowlist-item { flex-direction: column; gap: 6px; }
  .rowlist-item-title { flex-basis: auto; }
}
.rowlist.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.rowlist.cols-2 .rowlist-item { grid-column: span 1; }
@media (max-width: 640px) { .rowlist.cols-2 { grid-template-columns: 1fr; } }

/* Faixa rolável de capturas */
.gallery { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; margin: 0 calc(-1 * clamp(20px, 5vw, 48px)); padding-inline: clamp(20px, 5vw, 48px); }
.gallery .shot { flex: 0 0 min(78vw, 320px); scroll-snap-align: start; margin-bottom: 4px; }
@media (min-width: 1024px) { .gallery { flex-wrap: wrap; overflow: visible; } .gallery .shot { flex: 1 1 calc(20% - 13px); } }

/* Bloco de código real (robots.txt) */
.code { background: var(--navy-800); color: #d7e6ff; border-radius: var(--radius-md); padding: 20px 22px; font-family: 'Courier New', monospace; font-size: .82rem; line-height: 1.7; overflow-x: auto; }

/* Tabela de planos compacta (home) */
.plan-table-wrap { overflow-x: auto; }
.plan-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.plan-table th, .plan-table td { padding: 14px 12px; text-align: left; border-bottom: 1px solid var(--gray-200); font-variant-numeric: tabular-nums; }
.plan-table th { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.plan-table td:first-child, .plan-table th:first-child { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.plan-table tr.plan-featured { background: rgba(4,120,87,.06); }
.plan-table .plan-badge { display: block; font-size: .72rem; font-weight: 600; color: var(--cta); margin-top: 2px; }
@media (max-width: 700px) {
  .plan-table thead { display: none; }
  .plan-table, .plan-table tbody, .plan-table tr, .plan-table td { display: block; width: 100%; }
  .plan-table tr { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; padding: 6px 0; }
  .plan-table td { border-bottom: none; padding: 6px 14px; display: flex; justify-content: space-between; gap: 12px; }
  .plan-table td::before { content: attr(data-label); font-weight: 600; color: var(--gray-500-text); }
  .plan-table td:first-child { display: block; }
  .plan-table td:first-child::before { content: none; }
}

/* Situação → plano → preço */
.scenario { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 10px; padding: 14px 0; border-bottom: 1px solid var(--gray-200); font-size: .92rem; color: var(--gray-700); }
.scenario:last-child { border-bottom: none; }
.scenario strong { color: var(--navy); font-family: var(--font-display); }
.scenario .arrow { color: var(--gray-400); }
.scenario .scenario-price { margin-left: auto; font-family: var(--font-display); font-weight: 800; color: var(--cta); font-variant-numeric: tabular-nums; }

/* FAQ em 2 colunas */
.faq-flat { display: grid; grid-template-columns: minmax(0,4fr) minmax(0,8fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.faq-flat-side p { font-size: .9rem; color: var(--gray-600); margin-top: 10px; }
.faq-flat-side a { color: var(--cta); font-weight: 600; text-decoration: underline; }
.faq-flat .faq-list { max-width: none; gap: 0; }
/* .faq-flat = lista com divisórias finas, não cartões com borda/sombra */
.faq-flat .faq-item { border: none; border-bottom: 1px solid var(--gray-200); border-radius: 0; }
.faq-flat .faq-item:last-child { border-bottom: none; }
.faq-flat .faq-item:hover { border-bottom-color: var(--cta); }
.faq-flat .faq-item[open] { box-shadow: none; border-bottom-color: var(--cta); }
.faq-flat .faq-item summary { padding-inline: 0; }
.faq-flat .faq-answer { padding-inline: 0; }
@media (max-width: 900px) { .faq-flat { grid-template-columns: 1fr; } }

/* CTA final sólido — substitui .cta-band em degradê */
.closer { background: var(--navy); }
.closer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: clamp(40px, 7vw, 64px); }
.closer-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--white); max-width: 20ch; }
.closer-conditions { display: flex; flex-direction: column; gap: 8px; }
.closer-condition { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.85); }
.closer-condition svg { color: var(--cta-light); flex-shrink: 0; }
@media (max-width: 900px) { .closer-inner { flex-direction: column; align-items: flex-start; } }

/* Faixa de fatos institucionais */

/* Números tabulares em preço (checklist D2) */
.price-num, .cmp-price, .plan-table td { font-variant-numeric: tabular-nums; }

/* =============================================
   SECTIONS — SHARED
   ============================================= */
section { padding-block: var(--section-gap); }
section.tone-soft { background: var(--gray-50); }

/* =============================================
   PRICING (teaser + full page)
   ============================================= */
#precos { background: var(--gray-50); }
/* minmax(0,1fr), não 1fr puro: 1fr sozinho vira minmax(auto,1fr) e a coluna
   cresce além do container quando o conteúdo (badge, texto do plano) não
   cabe no track — foi o que empurrava o card "Rede" pra fora da viewport. */
.pricing-grid-full { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; align-items: start; }
@media (min-width: 1200px) {
  .pricing-grid-full.cols-5 { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; }
  /* precos.html: Solo/Corretor mais estreitos, Imobiliária em destaque (C3.4).
     minmax(0, Nfr), não Nfr puro: Nfr sozinho vira minmax(auto,Nfr) e a coluna
     recusa encolher abaixo do min-content do preço, empurrando "/mês" pra fora
     do card (mesma causa do comentário acima sobre o card "Rede"). */
  .pricing-grid-full.cols-5.cols-5--uneven { grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1.25fr) minmax(0,1fr) minmax(0,1fr); }
  .pricing-grid-full.cols-5 .price-card { padding: 22px 16px; }
  /* 5 colunas deixam pouca largura por card (ex.: "R$ 599,90 /mês" do plano Rede
     cortava o "/mês" na borda em 1440/1280/1024). clamp() reduz o número conforme
     a viewport encolhe, sem mexer no layout de 3 colunas (2/3/4 planos). */
  .pricing-grid-full.cols-5 .price-num { font-size: clamp(1.25rem, .85rem + 1.2vw, 2.1rem); }
  .pricing-grid-full.cols-5 .price-period { font-size: clamp(.62rem, .55rem + .2vw, .8rem); }
  .pricing-grid-full.cols-5 .price-amount { flex-wrap: wrap; gap: 2px; row-gap: 0; }
  .pricing-grid-full.cols-5 .price-currency { font-size: clamp(.72rem, .6rem + .4vw, .95rem); }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  min-width: 0;
  overflow-wrap: break-word;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
/* Card em destaque (precos.html, único uso): fundo branco + borda verde
   2px (C3.4) — não é mais a variante navy sólida, então o texto usa as
   MESMAS cores do card normal (sem overrides inline no HTML). */
.price-card.featured {
  border: 2px solid var(--cta);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(11,46,87,.10), 0 0 0 1px var(--cta);
}
.price-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--cta);
  color: var(--white);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.price-plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.price-plan-sub { font-size: .8rem; color: var(--gray-500-text); margin-bottom: 18px; }

.price-promo { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.price-old { font-size: .9rem; color: var(--gray-500-text); text-decoration: line-through; font-weight: 600; }
.price-off {
  font-family: var(--font-display); font-size: .7rem; font-weight: 800;
  /* #b91c1c sólido (6.47:1 vs branco); o gradiente ef4444→dc2626 anterior
     tinha ponta com 3.76:1 (AA fail em texto pequeno) */
  color: #fff; background: #b91c1c;
  padding: 2px 8px; border-radius: 100px; line-height: 1.5;
}

.price-amount { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.price-currency { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--gray-600); }
.price-num { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-period { font-size: .8rem; color: var(--gray-500-text); }

.price-anchor { font-size: .78rem; color: var(--gray-600); margin-bottom: 16px; }

.price-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex: 1; }
.price-feat { display: flex; align-items: flex-start; gap: 8px; font-size: .85rem; color: var(--gray-600); }
.feat-check {
  width: 16px; height: 16px;
  background: rgba(4,120,87,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.price-cta { width: 100%; }

.price-sub-link { display: block; text-align: center; margin-top: 8px; font-size: .8rem; color: var(--gray-500-text); }
.price-card.featured .price-sub-link { color: rgba(255,255,255,.6); }
.price-sub-link a { color: inherit; text-decoration: underline; }

@media (max-width: 768px) { .pricing-grid-full { grid-template-columns: 1fr; } }

/* Bloco "incluso em todos os planos" */
.included-block { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: clamp(28px,4vw,40px); margin-top: 32px; }
.included-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-bottom: 20px; text-align: center; }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.included-item { display: flex; gap: 10px; align-items: flex-start; }
.included-item svg { color: var(--cta); flex-shrink: 0; margin-top: 3px; }
.included-item-title { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--navy); }
.included-item-text { font-size: .82rem; color: var(--gray-600); line-height: 1.5; }
@media (max-width: 768px) { .included-grid { grid-template-columns: 1fr; } }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-section { margin-top: clamp(48px, 8vw, 80px); }
.comparison-section h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 2.5vw, 2rem); color: var(--navy); margin-bottom: 24px; text-align: center; }
.comparison-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.comparison-table th, .comparison-table td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--gray-200); }
.comparison-table th { font-family: var(--font-display); font-weight: 700; color: var(--navy); background: var(--gray-50); }
.comparison-table td:first-child, .comparison-table th.feature-col { text-align: left; font-weight: 500; color: var(--gray-700); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .col-featured { background: rgba(4,120,87,.06); }
.check-yes { color: #22c55e; font-size: 1.1rem; }
.check-no { color: var(--gray-500-text); }
.comparison-table thead .cmp-name { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: .9rem; }
.comparison-table thead .cmp-price { font-size: .74rem; font-weight: 600; color: var(--cta); margin-top: 2px; }
.comparison-table thead .cmp-price small { color: var(--gray-500-text); font-weight: 500; }

/* Mobile: comparison table vira lista por plano, cada valor com o nome do plano ao lado */
@media (max-width: 768px) {
  .comparison-table thead { display: none; }
  .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td { display: block; width: 100%; }
  .comparison-table tr { border: 1px solid var(--gray-200); border-radius: var(--radius-md); margin-bottom: 12px; padding: 8px 0; }
  .comparison-table td { text-align: left; border-bottom: none; padding: 6px 14px; }
  .comparison-table td:first-child { font-weight: 700; color: var(--navy); }
  .comparison-table td[data-label] { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
  .comparison-table td[data-label]::before { content: attr(data-label); font-weight: 600; color: var(--gray-600); }
  .comparison-table td.col-featured { background: rgba(4,120,87,.06); border-radius: var(--radius-sm, 6px); }
}

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--white); }
.faq-list { max-width: 740px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition), box-shadow var(--transition); }
.faq-item:hover { border-color: var(--cta); }
.faq-item[open] { border-color: var(--cta); box-shadow: var(--shadow-sm); }
.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; min-height: 48px; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--cta); outline-offset: -3px; }
.faq-chevron {
  width: 20px; height: 20px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-item[open] .faq-chevron { background: var(--cta); transform: rotate(180deg); }
.faq-chevron svg { width: 12px; height: 12px; }
.faq-item[open] .faq-chevron svg { color: var(--white); }
.faq-answer { padding: 0 22px 18px; font-size: .92rem; color: var(--gray-600); line-height: 1.7; }

/* =============================================
   CTA FINAL BAND
   ============================================= */

/* =============================================
   FOOTER
   ============================================= */
footer { background: var(--gray-900); color: rgba(255,255,255,.55); padding-block: 48px 32px; }
.footer-grid { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 40px; margin-bottom: 40px; }
.footer-grid > nav { flex: 1 1 150px; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; flex: 2 1 240px; }
.footer-desc { font-size: .85rem; line-height: 1.6; max-width: 260px; color: rgba(255,255,255,.4); }
.footer-col-title { font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.5); transition: color var(--transition); min-height: 36px; display: flex; align-items: center; }
.footer-links a:hover { color: var(--white); }
.footer-links a:focus-visible { outline: 2px solid var(--cta); outline-offset: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .8rem; color: rgba(255,255,255,.25); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

@media (max-width: 768px) {
  .footer-brand { flex-basis: 100%; }
  .footer-grid > nav { flex-basis: 40%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) { .footer-grid > nav { flex-basis: 100%; } }

/* =============================================
   STICKY MOBILE CTA
   ============================================= */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 12px 20px;
}
.mobile-sticky-cta .btn { width: 100%; font-size: 1rem; }
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  footer { padding-bottom: 80px; }
}

/* =============================================
   PAGE HERO (precos / legal / contato)
   ============================================= */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%); padding-block: clamp(40px, 6vw, 70px); color: var(--white); text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 12px; line-height: 1.18; }
.page-hero p { font-size: clamp(.9rem, 1.6vw, 1.05rem); color: rgba(255,255,255,.7); max-width: 560px; margin-inline: auto; }
.page-hero .eyebrow { font-family: var(--font-display); font-size: .77rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cta-light); margin-bottom: 12px; }
/* Variante clara — precos.html (C3.1): hero de página de preços não é bloco navy sólido */
.page-hero--light { background: var(--gray-50); color: var(--navy); }
.page-hero--light h1 { color: var(--navy); }
.page-hero--light p { color: var(--gray-600); }
.page-hero--light .eyebrow { color: var(--cta); }
.page-hero--light .trust-item { color: var(--gray-700); background: var(--white); border-color: var(--gray-200); }
.page-hero .trust-items { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.page-hero .trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); padding: 5px 14px; border-radius: 100px;
}
.page-hero .trust-item svg { width: 13px; height: 13px; opacity: .85; flex-shrink: 0; }

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner-wrap { background: var(--gray-50); padding-top: 28px; }
.promo-banner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  max-width: 780px; margin-inline: auto;
  background: rgba(4,120,87,.08); border: 1px solid rgba(4,120,87,.28); border-radius: 14px;
  padding: 12px 20px; font-size: .9rem; color: var(--navy); text-align: center;
}
.promo-banner svg { color: var(--cta); flex-shrink: 0; }
.promo-banner strong { color: var(--navy); font-weight: 700; }

.precos-note { text-align: center; margin-top: 20px; font-size: .85rem; color: var(--gray-600); max-width: 680px; margin-inline: auto; line-height: 1.65; }

/* =============================================
   404 PAGE
   ============================================= */
.not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding-block: clamp(60px, 10vw, 100px); }
.not-found-code { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 10rem); font-weight: 800; color: var(--gray-200); line-height: 1; margin-bottom: 0; }
.not-found h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.5vw, 1.8rem); color: var(--navy); margin-bottom: 16px; }
.not-found p { font-size: 1rem; color: var(--gray-600); max-width: 400px; margin-bottom: 32px; }

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-shell { padding-block: clamp(48px, 8vw, 80px); }
.legal-doc { max-width: 820px; margin-inline: auto; }
.legal-doc h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 10px; line-height: 1.18; }
.legal-doc h2 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-top: 36px; margin-bottom: 12px; }
.legal-doc p { margin-bottom: 14px; font-size: .95rem; line-height: 1.75; }
.legal-doc ul, .legal-doc ol { margin-bottom: 14px; padding-left: 1.5rem; font-size: .95rem; line-height: 1.75; }
.legal-doc ul { list-style: disc; }
.legal-doc a { color: var(--cta); }
.legal-doc a:hover { color: var(--navy); }
.legal-meta { font-size: .84rem; color: var(--gray-500-text); margin-bottom: 28px; }

/* =============================================
   CONTACT (contato.html)
   ============================================= */
.contact-shell { padding-block: clamp(48px, 8vw, 80px); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-bottom: 40px; }
.contact-card { display: block; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; text-decoration: none; transition: box-shadow var(--transition), transform var(--transition); }
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(4,120,87,.10); display: flex; align-items: center; justify-content: center; }
.contact-card h2 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); margin: 10px 0 4px; }
.contact-card p { font-size: .9rem; color: var(--gray-600); }
.contact-form { max-width: 560px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid var(--gray-200); border-radius: 10px; padding: 11px 14px;
  font: inherit; font-size: .92rem; color: var(--gray-900); background: var(--white);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--cta); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-size: .9rem; margin-top: 12px; min-height: 1.2em; }
.form-status.ok { color: var(--cta); }
.form-status.error { color: #b42318; }

/* =============================================
   BLOG (blog/index.html)
   ============================================= */
.blog-shell { padding-block: clamp(48px, 8vw, 80px); }
.post-grid { display: grid; gap: 16px; }
.post-card { display: block; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 24px; text-decoration: none; transition: box-shadow var(--transition), transform var(--transition); }
.post-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.post-card-eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cta); }
.post-card-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin: 8px 0; }
.post-card-excerpt { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }
.blog-empty { text-align: center; padding-block: 40px; color: var(--gray-600); }
.blog-empty svg { color: var(--gray-300); margin-bottom: 16px; }

/* =============================================
   FERRAMENTA — verificador de anuncio
   ============================================= */
.tool-shell { padding-block: clamp(40px, 6vw, 60px); }
.tool-grid { display: grid; gap: 32px; max-width: 720px; margin-inline: auto; }
.tool-check { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.tool-check .tool-check-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }
.tool-check.ok .tool-check-icon { color: var(--cta); }
.tool-check.fail .tool-check-icon { color: var(--gray-400); }
.tool-check.ok span:last-child { color: var(--gray-900); }
.tool-check.fail span:last-child { color: var(--gray-500-text); }
.tool-score { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--navy); text-align: center; padding: 16px 0; }
