/* Blog BRForms, visual alinhado à landing e à Central de Ajuda (Navy + Cyber Green) */
:root {
  --brand: #0B1B33; --brand-dark: #081323; --brand-soft: #eaf0f7;
  --ink: #0B1B33; --muted: #5b6b7d; --line: #e7ecf2; --soft: #F2F3F5;
  --ink-2: #243244; --green: #00936b; --accent: #00E5A0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; background: #fff; }
a { text-decoration: none; color: inherit; }
code, .mono { font-family: 'IBM Plex Mono', ui-monospace, Menlo, monospace; }

/* ---------- header / rodapé (mesmo padrão da ajuda) ---------- */
.hc-header { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(8px); position: sticky; top: 0; z-index: 50; }
.hc-nav { max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 62px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hc-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.hc-logo img { height: 30px; width: auto; display: block; }
.hc-logo .tag { font-size: 13px; font-weight: 600; color: var(--muted); border-left: 1px solid var(--line); padding-left: 10px; }
.hc-actions { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.hc-actions a.plain { color: var(--muted); font-weight: 600; padding: 8px 10px; }
.hc-actions a.plain:hover { color: var(--ink); }
.btn { display: inline-flex; align-items: center; gap: 7px; background: var(--green); color: #fff; font-weight: 700; padding: 9px 16px; border-radius: 9px; font-size: 14px; transition: transform .08s, background .15s; }
.btn:hover { background: #007d5b; transform: translateY(-1px); }
.hc-foot { border-top: 1px solid var(--line); background: var(--soft); }
.hc-foot .in { max-width: 1080px; margin: 0 auto; padding: 26px 24px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; }
.hc-foot a:hover { color: var(--ink); }

/* ---------- índice ---------- */
.hero { max-width: 760px; margin: 0 auto; padding: 56px 24px 8px; text-align: center; }
.hero h1 { font-size: 38px; font-weight: 700; letter-spacing: -.025em; }
.hero p { color: var(--muted); font-size: 17px; margin-top: 12px; }
.posts-list { max-width: 760px; margin: 0 auto; padding: 32px 24px 80px; display: grid; gap: 16px; }
.bcard { display: block; border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; background: #fff; transition: border-color .15s, box-shadow .15s, transform .08s; }
.bcard:hover { border-color: #cfdae6; box-shadow: 0 10px 30px rgba(11,27,51,.07); transform: translateY(-2px); }
.bcard .bdate { font-size: 12.5px; color: var(--muted); }
.bcard h2 { font-size: 19px; font-weight: 700; margin-top: 6px; letter-spacing: -.01em; }
.bcard p { font-size: 14.5px; color: var(--muted); margin-top: 8px; }
.bcard .arrow { color: var(--green); }

/* ---------- post ---------- */
.art { padding: 34px 24px 90px; min-width: 0; max-width: 760px; margin: 0 auto; }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--green); }
.art h1 { font-size: 32px; font-weight: 700; letter-spacing: -.02em; line-height: 1.2; }
.post-meta { font-size: 13px; color: var(--muted); margin-top: 12px; }
.art .lead { font-size: 17px; color: var(--muted); margin-top: 14px; }
.art h2 { font-size: 22px; font-weight: 700; margin: 40px 0 6px; letter-spacing: -.01em; }
.art h3 { font-size: 17px; font-weight: 700; margin: 26px 0 2px; }
.art h3.faq-q { margin-top: 22px; }
.art p { margin-top: 12px; color: var(--ink-2); }
.art ul, .art ol { margin: 12px 0 0 2px; padding-left: 22px; color: var(--ink-2); }
.art li { margin: 6px 0; }
.art strong { color: var(--brand-dark); }

/* tabela comparativa */
.tbl-wrap { margin-top: 18px; overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.art table { border-collapse: collapse; width: 100%; font-size: 14px; min-width: 560px; }
.art th, .art td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.art thead th { background: var(--brand-soft); color: var(--brand); font-size: 13px; }
.art tbody tr:last-child td { border-bottom: none; }
.art td:first-child { font-weight: 600; color: var(--brand-dark); }

/* callouts (iguais aos da ajuda) */
.callout { margin-top: 22px; border-radius: 12px; padding: 14px 18px; font-size: 14.5px; display: flex; gap: 12px; }
.callout .ci { flex: none; font-size: 18px; line-height: 1.4; }
.callout.dica { background: #eafaf4; border: 1px solid #bdebd9; color: #0c5a43; }
.callout.atencao { background: #fff5e9; border: 1px solid #ffd9a8; color: #8a5300; }
.callout strong { color: inherit; }

/* caixa de CTA */
.cta-box { margin-top: 34px; border: 1px solid var(--line); border-radius: 16px; padding: 26px 28px; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); color: #fff; }
.cta-box .cta-t { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.cta-box p { color: rgba(255,255,255,.82); margin-top: 8px; font-size: 14.5px; }
.cta-box .btn { margin-top: 16px; }

/* relacionados */
.related { margin-top: 52px; border-top: 1px solid var(--line); padding-top: 26px; }
.related h2 { margin: 0 0 14px; font-size: 17px; }
.rlinks { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 12px; }
.rlink { border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; font-weight: 600; font-size: 14.5px; display: flex; align-items: center; justify-content: space-between; gap: 10px; transition: border-color .15s; }
.rlink:hover { border-color: var(--green); }
.rlink .arrow { color: var(--green); }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .art h1 { font-size: 26px; }
  .hc-actions a.plain { display: none; }
}
