/* ============================================================
   Design System — Vinícius Nunes / Advogado Sustentável
   02 · Components (base — NÃO editar por página)

   Camada 1 (este arquivo): BASE + CHROME (navbar, footer, CTA, autor,
   relacionados) — o que o 04-layout.html precisa para renderizar.
   Origem: bloco "HEADER/FOOTER PADRONIZADO (base honorarios-hub-v3)"
   dos wireframes aprovados.

   ⏳ TODO (próximo chunk): componentes de CONTEÚDO de página
   (hero de artigo, breadcrumb, callouts, FAQ, tabelas comparativas,
   type-cards pros/cons, sidebar, prosa) — extrair dos wireframes de
   artigo/subhub e adicionar ao fim deste arquivo.
   ============================================================ */

/* ───────────────────────── Base / reset ───────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
/* Âncoras (#secao) param sob a navbar sticky (64px), não atrás dela. */
html { scroll-padding-top: 80px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: var(--body-size);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
em { font-style: normal; color: var(--c-gold); }   /* ênfase dourada (padrão da marca) */
h1, h2, h3, h4, h5 { font-family: var(--f-head); }
img { display: block; max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; }
main, main > * { min-width: 0; }

/* ───────────────────────── Botões ───────────────────────── */
.btn-gold  { background: var(--c-gold); color: var(--c-black); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 14px 26px; border-radius: var(--r-sm); transition: background .2s; }
.btn-gold:hover  { background: var(--c-gold-dk); }
.btn-ghost { border: 1px solid rgba(255,255,255,.2); color: var(--c-white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 14px 26px; border-radius: var(--r-sm); transition: border-color .2s, background .2s; }
.btn-ghost:hover { border-color: var(--c-gold); background: rgba(204,154,86,.08); }

/* ───────────────────────── Navbar (chrome) ───────────────────────── */
.navbar { position: sticky; top: 0; z-index: 100; background: var(--c-black); }
.navbar a { text-decoration: none; color: inherit; }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 64px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.navbar-logo { justify-self: start; }
.navbar-logo span:first-child { display: block; font-size: 15px; font-weight: 800; color: var(--c-white); letter-spacing: -.3px; font-family: var(--f-sans); }
.navbar-logo span:last-child  { display: block; font-size: 9px; font-weight: 700; color: rgba(255,255,255,.35); letter-spacing: 2px; text-transform: uppercase; }

/* nav-builder-header: <nav> com <a class="nav-link"> achatados (Step 4.5) */
.navbar-nav { justify-self: center; display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.navbar-nav .nav-link { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.55); display: flex; align-items: center; height: 64px; transition: color .2s, border-color .2s; border-bottom: 2px solid transparent; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-link[aria-current="page"] { color: var(--c-white); border-bottom-color: var(--c-gold); }

/* Mega-nav: dropdown por hub (hover). Usado quando o template do tenant é nav-item
   (vinicius); tenants com <a class="nav-link"> plano (FDM) ignoram estas regras. */
.navbar-nav .nav-item { position: relative; display: flex; align-items: center; height: 64px; }
.navbar-nav .nav-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.55); cursor: pointer; display: flex; align-items: center; gap: 4px; transition: color .2s; user-select: none; }
.navbar-nav .nav-label::after { content: "▾"; font-size: 7px; margin-top: 1px; }
.navbar-nav .nav-item:hover > .nav-label { color: var(--c-white); }
/* Cluster da página atual = marcado (sublinhado dourado). Validado no mockup (linha 576).
   O <li class="nav-item active"> do cluster corrente recebe isto; o Step 4.5/layout marca
   o cluster da URL atual em produção. */
.navbar-nav .nav-item.active > .nav-label { color: var(--c-white); padding-bottom: 2px; border-bottom: 2px solid var(--c-gold); }
.nav-dropdown { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--c-black-3); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md); padding: 6px; min-width: 240px; list-style: none; margin: 0; opacity: 0; visibility: hidden; transition: opacity .15s, transform .15s; box-shadow: var(--sh-lg); z-index: 200; }
.navbar-nav .nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown a { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,.58); padding: 9px 12px; border-radius: var(--r); text-transform: none; letter-spacing: 0; white-space: nowrap; transition: background .12s, color .12s; }
.nav-dropdown a:hover { background: rgba(255,255,255,.07); color: var(--c-white); }
.nav-dropdown a::before { content: "\203A"; color: var(--c-gold); font-size: 14px; flex-shrink: 0; }

.navbar-end { justify-self: end; display: flex; align-items: center; gap: 10px; }
.navbar .btn-cta { background: var(--c-gold); color: var(--c-white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .7px; padding: 10px 20px; border-radius: var(--r-sm); display: block; transition: background .2s; }
.navbar .btn-cta:hover { background: var(--c-gold-dk); }

/* Hamburger + menu mobile */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; padding: 0; background: transparent; border: 0; cursor: pointer; justify-self: end; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.navbar.menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.menu-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.navbar.menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar-mobile-menu { display: none; list-style: none; margin: 0; padding: 6px 0; background: #1c1c1c; border-top: 1px solid rgba(255,255,255,.09); }
.navbar-mobile-menu a { display: block; padding: 15px 24px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.05); }
.navbar-mobile-menu li:last-child a { border-bottom: 0; }
.navbar-mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.navbar.menu-open .navbar-mobile-menu { display: block; }

/* ───────────────────────── CTA band (chrome) ───────────────────────── */
/* Estilo VALIDADO do mockup (texto branco sobre dourado, botão branco/dourado).
   Não desviar — validado por UI/UX + cliente. */
.cta-band { background: var(--c-gold); padding: 32px 32px; }
.cta-band-wrap { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7); margin-bottom: 6px; }
.cta-band-title { font-size: 20px; font-weight: 900; color: var(--c-white); letter-spacing: -.3px; line-height: 1.2; }
.cta-band-title span { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-top: 5px; letter-spacing: 0; }
.cta-band-btn { background: var(--c-white); color: var(--c-gold); padding: 14px 28px; font-size: 12px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; border-radius: var(--r-sm); white-space: nowrap; flex-shrink: 0; transition: opacity .2s; display: block; }
.cta-band-btn:hover { opacity: .88; }

/* ───────────────────────── Autor (E-E-A-T) ───────────────────────── */
.author-bio { background: var(--c-cream); padding: 56px 32px; border-top: 1px solid var(--c-border); }
.author-bio-inner { display: grid; grid-template-columns: 120px 1fr; gap: 28px; align-items: center; max-width: 1000px; margin: 0 auto; }
.author-bio-photo { width: 120px; height: 120px; border-radius: var(--r-lg); object-fit: cover; border: 1px solid rgba(204,154,86,.35); }
.author-bio-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold-dk); margin-bottom: 8px; }
.author-bio-name { font-family: var(--f-head); font-size: 20px; font-weight: 800; color: var(--c-black); letter-spacing: -.3px; }
.author-bio-role { font-size: 12px; font-weight: 600; color: var(--c-muted); margin: 4px 0 12px; }
.author-bio-text { font-size: 14px; color: var(--c-body); line-height: 1.7; }
/* Redes/produtos no card do autor (pílulas) */
.author-bio-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.author-bio-link { font-size: 11px; font-weight: 700; color: var(--c-body); border: 1px solid var(--c-border); background: var(--c-white); padding: 8px 14px; border-radius: var(--r-sm); transition: border-color .15s, color .15s, background .15s; }
.author-bio-link:hover { border-color: var(--c-gold); color: var(--c-text); background: var(--c-cream); }
/* Compartilhar (chrome externo, abaixo do card do autor) */
.post-share { display: flex; align-items: center; gap: 16px; max-width: 1000px; margin: 22px auto 0; flex-wrap: wrap; }
.post-share-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-muted); }
.share-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.share-btn { font-family: var(--f-sans); font-size: 11px; font-weight: 700; color: var(--c-body); background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-sm); padding: 9px 16px; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
.share-btn:hover { border-color: var(--c-black); background: var(--c-black); color: var(--c-white); }

/* ───────────────────────── Relacionados / internal-links (chrome) ─────────────────────────
   O 3.3 preenche #internal-links com cards ricos (.related-card): categoria = cluster da
   origem, tempo = pill "N min de leitura" da origem, título = H1. Grid + card vêm de
   .related-grid / .related-card (#internal-links leva class="related-grid"). */
.related { padding: 48px 32px; background: var(--c-bg); }
.related-eyebrow { max-width: 1200px; margin: 0 auto 6px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; color: var(--c-gold); }
.related-title { font-size: 22px; font-weight: 800; color: var(--c-black); letter-spacing: -.4px; max-width: 1200px; margin: 0 auto 22px; }
#internal-links { max-width: 1200px; margin: 0 auto; }
/* auto-oculta a seção quando o Step 3.3 não preencheu nenhuma âncora */
.related:not(:has(#internal-links a)) { display: none; }

/* ───────────────────────── Footer (chrome) ───────────────────────── */
footer[role="contentinfo"] { background: #0a0a0a; padding: 56px 32px 28px; }
/* sem `color: inherit` aqui: ele (espec. 0,1,2) vencia `.footer-links a` (0,1,1) e os
   links herdavam a cor escura do body sobre o footer escuro. As cores dos links vêm
   das regras específicas .footer-links a / .footer-bottom a abaixo. */
footer[role="contentinfo"] a { text-decoration: none; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 30px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-name { font-size: 15px; font-weight: 800; color: var(--c-white); font-family: var(--f-sans); }
.footer-sub  { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.25); margin-bottom: 14px; }
.footer-desc { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,.38); }
.footer-col h5 { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.70); margin-bottom: 14px; font-family: var(--f-head); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.58); transition: color .2s; }
.footer-links a:hover { color: var(--c-white); }
.footer-bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.2); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--c-white); }

/* ───────────────────────── Responsivo (chrome) ───────────────────────── */
@media (max-width: 980px) {
  .navbar-nav { display: none; }
  .nav-hamburger { display: flex; }
  .navbar-inner { padding: 0 18px; }
  .author-bio-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 560px) {
  .cta-band, .related, .author-bio { padding-left: 20px; padding-right: 20px; }
  footer[role="contentinfo"] { padding: 48px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
}

/* ============================================================
   CONTEÚDO DE PÁGINA (artigo / subhub)
   Extraído dos wireframes -v1 aprovados. Usa tokens via aliases
   legados (--gold/--black/--font/--r…) definidos em 01-tokens.css.
   ============================================================ */

/* Reading progress bar (opcional; o template pode incluir #progress-bar) */
#progress-bar { position: fixed; top: 0; left: 0; height: 3px; background: var(--gold); width: 0%; z-index: 999; transition: width .1s linear; }

/* ───────── Article hero ───────── */
.article-hero { background: var(--black); padding: 48px 32px 56px; position: relative; overflow: hidden; }
.article-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border: 2px solid rgba(204,154,86,.08); border-radius: 50%; }
.article-hero::after  { content: ''; position: absolute; bottom: -20px; right: 60px; width: 200px; height: 200px; border: 2px solid rgba(204,154,86,.05); border-radius: 50%; }
.article-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: rgba(255,255,255,.3); margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.6); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: rgba(255,255,255,.55); }
.article-cat { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.article-cat::before { content: ''; width: 20px; height: 2px; background: var(--gold); display: block; }
.article-hero h1 { font-size: 44px; font-weight: 900; color: var(--white); line-height: 1.05; letter-spacing: -1.2px; max-width: 820px; margin-bottom: 14px; }
.article-hero-subtitle { font-size: 17px; font-weight: 500; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 680px; margin-bottom: 28px; }
.hero-features { display: flex; align-items: center; gap: 0; flex-wrap: wrap; margin-bottom: 32px; }
.hero-feat { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.6); padding-right: 20px; margin-right: 20px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-feat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.hero-feat-icon { color: var(--gold); font-size: 13px; }
.article-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.meta-pill { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.62); }
.meta-pill-icon { display: inline-flex; align-items: center; }
.meta-badge { background: rgba(204,154,86,.2); border: 1px solid rgba(204,154,86,.35); color: rgba(255,255,255,.7); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; padding: 4px 10px; border-radius: 16px; }
.meta-divider { width: 1px; height: 28px; background: rgba(255,255,255,.15); }

/* Hero com imagem (slot opcional) — texto à esquerda, retrato editorial à direita.
   Usado quando o brief pede hero de imagem (video: none + hero na pasta da página).
   Hero text-only: omita o .hero-layout e mantenha o conteúdo direto no -inner. */
.hero-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: center; }
.hero-layout, .hero-layout > * { min-width: 0; }
.hero-portrait { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(204,154,86,.28); box-shadow: var(--sh-lg); }
.hero-portrait img { width: 100%; height: auto; display: block; }

/* ───────── Article layout + prose ───────── */
.article-wrapper { max-width: 1200px; margin: 0 auto; padding: 56px 32px 80px; }
.article-layout { display: grid; grid-template-columns: 1fr 280px; gap: 64px; }
.article-layout, .article-layout > * { min-width: 0; }
.article-body { font-size: 15.5px; color: var(--body); line-height: 1.85; overflow-wrap: break-word; }
.article-body h2 { font-size: 24px; font-weight: 800; color: var(--black); line-height: 1.2; letter-spacing: -.3px; margin: 52px 0 18px; padding-top: 52px; border-top: 1px solid var(--border); }
/* No divider above the article's FIRST heading. `:first-of-type` is parent-relative,
   so the drafter's two layouts need both selectors: flat (<h2> direct in .article-body)
   and sectioned (<section><h2>), where every h2 is first-of-type of its own <section>
   — scope the reset to the first <section> only so the others keep their divider. */
.article-body > h2:first-of-type,
.article-body > section:first-of-type > h2 { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 { font-size: 17px; font-weight: 800; color: var(--black); margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { font-weight: 700; color: var(--black); }
.article-body ul, .article-body ol { margin: 14px 0 20px 22px; }
.article-body li { margin-bottom: 7px; }
.article-body a { color: var(--gold); font-weight: 600; border-bottom: 1px solid rgba(204,154,86,.25); transition: border-color .15s; }
.article-body a:hover { border-color: var(--gold); }
.article-body img { max-width: 100%; }
.article-intro { font-size: 16.5px; color: var(--body); line-height: 1.85; margin-bottom: 32px; }
.article-intro p { margin-bottom: 18px; }

/* ───────── Callouts (dica / aviso / nota) ───────── */
.callout { border-radius: var(--r-md); padding: 20px 24px; margin: 28px 0; display: flex; align-items: flex-start; gap: 14px; }
.callout-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; display: flex; }
.callout-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.callout-text { font-size: 13.5px; line-height: 1.7; }
.callout-tip  { background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--black); }
.callout-tip .callout-title { color: var(--black); }
.callout-tip .callout-text { color: var(--body); }
.callout-warn { background: rgba(204,154,86,.04); border: 1px solid rgba(204,154,86,.18); border-left: 4px solid var(--gold); }
.callout-warn .callout-title { color: var(--gold); }
.callout-warn .callout-text { color: var(--body); }
.callout-info { background: var(--bg); border: 1px solid var(--border); border-left: 4px solid var(--black); }
.callout-info .callout-title { color: var(--black); }
.callout-info .callout-text { color: var(--body); }

/* ───────── Inline model CTA (download de modelo) ───────── */
.inline-model-cta { background: var(--black); border-radius: var(--r-lg); border-left: 4px solid var(--gold); padding: 28px 32px; margin: 36px 0; display: flex; align-items: center; gap: 28px; }
.inline-model-icon { color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
.inline-model-info { flex: 1; }
.inline-model-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.inline-model-title { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.3; margin-bottom: 4px; }
.inline-model-meta { font-size: 12px; color: rgba(255,255,255,.62); }
.inline-model-btn { background: var(--gold); color: var(--white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 14px 22px; border-radius: var(--r); white-space: nowrap; flex-shrink: 0; transition: background .2s; display: block; }
.inline-model-btn:hover { background: var(--gold-dark); }
.article-body .inline-model-btn { color: var(--white); border-bottom: none; font-weight: 800; }

/* ───────── Pull quote ───────── */
.pullquote { padding: 18px 22px; margin: 28px 0; background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; }
.pullquote-text { font-size: 15.5px; font-weight: 600; color: var(--black); line-height: 1.65; font-style: italic; margin-bottom: 10px; }
.pullquote-text::before { content: '\201C'; color: var(--gold); font-size: 22px; font-style: normal; line-height: 0; vertical-align: -4px; margin-right: 2px; }
.pullquote-text::after  { content: '\201D'; color: var(--gold); font-size: 22px; font-style: normal; line-height: 0; vertical-align: -4px; margin-left: 2px; }
.pullquote-source { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--gold); }

/* ───────── Data table (+ versão empilhável no mobile) ───────── */
.data-table-wrap { overflow-x: auto; margin: 22px 0 28px; border: 1px solid var(--border); border-radius: var(--r-md); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.data-table thead th { background: var(--black); color: #fff; text-align: left; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 13px 16px; }
.data-table td { padding: 13px 16px; border-top: 1px solid var(--border); color: var(--body); vertical-align: top; line-height: 1.55; }
.data-table tbody tr:nth-child(even) { background: var(--cream); }
.data-table td:first-child { font-weight: 700; color: var(--black); white-space: nowrap; }
.tag-gold { color: var(--gold); font-weight: 700; }

/* ───────── Compliance grid (pode / não pode) ───────── */
.compliance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 22px 0 28px; }
.compliance-col { border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; background: var(--white); }
.compliance-can { border-top: 3px solid var(--gold); }
.compliance-cannot { border-top: 3px solid var(--no); }
.compliance-head { padding: 14px 18px 4px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; display: flex; align-items: center; gap: 8px; color: var(--black); }
.compliance-list { list-style: none; margin: 0; padding: 10px 18px 16px; }
.compliance-list li { display: flex; gap: 10px; font-size: 13px; color: var(--body); padding: 7px 0; line-height: 1.5; }
.ci { font-weight: 900; flex-shrink: 0; }
.ci-ok { color: var(--gold); }
.ci-no { color: var(--no); }
.pn-table td { width: 50%; white-space: normal; font-weight: 600; }
.pn-table td:first-child { color: #1f7a47; }
.pn-table td:last-child { color: var(--no); }
.pn-table thead th:first-child { border-left: 3px solid #1f7a47; }
.pn-table thead th:last-child { border-left: 3px solid var(--no); }

/* ───────── How-to steps ───────── */
.steps-grid { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 28px; }
.step-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px 22px; display: flex; align-items: flex-start; gap: 18px; }
.step-num { width: 32px; height: 32px; background: var(--black); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; flex-shrink: 0; }
.step-title { font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-tip { font-size: 11px; font-weight: 700; color: var(--gold); margin-top: 5px; text-transform: uppercase; letter-spacing: .4px; }

/* ───────── Option cards (type-card) ───────── */
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 20px 0 28px; }
.type-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.type-card:hover { border-color: var(--black); box-shadow: var(--sh-sm); }
.type-card-head { background: var(--black); padding: 14px 18px; }
.type-card-name { font-size: 14px; font-weight: 800; color: var(--white); }
.type-card-ideal { font-size: 10px; color: rgba(255,255,255,.4); margin-top: 2px; }
.type-card-body { padding: 14px 18px; }
.type-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.type-card-pros { font-size: 12px; font-weight: 700; color: var(--body); display: flex; align-items: flex-start; gap: 5px; }
.type-card-cons { font-size: 12px; font-weight: 700; color: var(--muted); display: flex; align-items: flex-start; gap: 5px; margin-top: 4px; }

/* ───────── FAQ (accordion — native <details>/<summary>) ───────── */
/* Native disclosure: the browser toggles open/closed (no JS) and the injector
   (Step 3.1) emits FAQPage JSON-LD from these <details>. .faq-item = <details>,
   .faq-question = <summary>. */
.faq-list { margin: 20px 0 28px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 8px; }
.faq-question { padding: 16px 20px; font-size: 14px; font-weight: 700; color: var(--black); cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; }
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--gold); flex-shrink: 0; transition: transform .15s; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 14px 20px 18px; font-size: 13.5px; color: var(--body); line-height: 1.75; border-top: 1px solid var(--border); }

/* ───────── Tipo list (frentes / numerada) ───────── */
.tipo-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.tipo-item { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 20px; transition: border-color .15s; }
.tipo-item:hover { border-color: var(--black); }
.tipo-num { flex-shrink: 0; width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border); color: var(--gold); font-size: 13px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.tipo-body b { display: block; font-size: 14px; font-weight: 800; color: var(--black); margin-bottom: 2px; }
.tipo-body span { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ───────── Sidebar (TOC + model + share) ───────── */
.sidebar-sticky { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 16px; }
.toc-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.toc-head { background: var(--black); padding: 14px 18px; }
.toc-head-title { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.5); }
.toc-list { list-style: none; padding: 10px 0; margin: 0; }
.toc-link { display: block; padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--muted); border-left: 3px solid transparent; transition: all .15s; line-height: 1.4; }
.toc-link:hover { color: var(--black); border-left-color: var(--border); }
.toc-link.active { color: var(--black); border-left-color: var(--gold); font-weight: 700; }
.toc-link-num { font-size: 10px; color: rgba(204,154,86,.6); margin-right: 4px; font-weight: 800; }
.sidebar-model { background: var(--black); border-radius: var(--r-lg); padding: 22px 20px; border-top: 3px solid var(--gold); }
.sidebar-model-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.55); margin-bottom: 12px; }
.sidebar-model-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.sidebar-model-icon { color: var(--gold); display: flex; flex-shrink: 0; margin-top: -3px; }
.sidebar-model-title { font-size: 14px; font-weight: 800; color: var(--white); line-height: 1.3; }
.sidebar-model-meta { font-size: 11px; font-weight: 500; color: rgba(255,255,255,.58); line-height: 1.5; margin-bottom: 16px; }
.sidebar-model-btn { display: block; background: var(--gold); color: var(--white); text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; padding: 13px; border-radius: var(--r); transition: background .2s; }
.sidebar-model-btn:hover { background: var(--gold-dark); }
.sidebar-share { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 20px; }
.sidebar-share-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--muted); margin-bottom: 12px; }
.sidebar-share .share-btns { display: flex; gap: 8px; }
.sidebar-share .share-btn { flex: 1; padding: 9px 8px; border: 1px solid var(--border); border-radius: var(--r); font-size: 11px; font-weight: 700; color: var(--body); text-align: center; cursor: pointer; transition: all .15s; }
.sidebar-share .share-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

/* ───────── Scorecard (critérios com check; "Como escolher…") — portado do mockup ───────── */
.scorecard { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.score-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 18px; }
.score-item.key { border-color: var(--gold); background: rgba(204,154,86,.05); }
.score-check { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--black); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.score-body b { display: block; font-size: 14px; color: var(--black); font-weight: 800; margin-bottom: 2px; }
.score-body span { font-size: 13px; color: var(--muted); line-height: 1.55; }
.score-tag { display: inline-block; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--gold); margin-top: 6px; }

/* ───────── Author box (E-E-A-T in-body — portado do mockup .author-box) ─────────
   Card branco no fim do .article-body (dentro do <main>, vai pro partial via 4.3).
   Substitui a banda chrome .author-bio do layout. Bio = .author-box-bio (a classe
   .author-bio já é a SEÇÃO chrome neste tenant — não reusar). */
.author-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 32px; margin-top: 56px; display: flex; align-items: flex-start; gap: 24px; }
.author-avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); flex-shrink: 0; background: var(--black); }
.author-info { min-width: 0; }
.author-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 5px; }
.author-name { font-family: var(--f-head); font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.author-role { font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.author-box-bio { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.author-links { display: flex; flex-wrap: wrap; gap: 10px; }
.author-link { font-size: 11px; font-weight: 700; color: var(--body); border: 1px solid var(--border); padding: 7px 13px; border-radius: var(--r); white-space: nowrap; transition: border-color .15s, color .15s; }
.author-link:hover { border-color: var(--black); color: var(--black); }

/* ───────── Related cards (grid + card; o chrome .related usa .related-grid no #internal-links) ───────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.related-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .2s, box-shadow .2s; display: flex; flex-direction: column; }
.related-card:hover { border-color: var(--black); box-shadow: var(--sh-sm); }
.related-card-head { background: var(--black); padding: 14px 18px; min-height: 88px; display: flex; flex-direction: column; }
.related-card-type { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.related-card-title { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4; }
.related-card-body { padding: 14px 18px; }
.related-card-meta { font-size: 11px; color: var(--muted); display: flex; align-items: center; justify-content: space-between; }
.related-card-arrow { color: #D0D0D0; transition: color .15s; }
.related-card:hover .related-card-arrow { color: var(--gold); }

/* ───────── In-body CTA strip (maior que o .cta-band do chrome) ───────── */
.cta-strip { background: var(--black); border-top: 3px solid var(--gold); padding: 72px 32px; }
.cta-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 64px; align-items: center; }
.cta-strip-inner, .cta-strip-inner > * { min-width: 0; }
.cta-strip-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.cta-strip h2 { font-size: 38px; font-weight: 900; color: var(--white); line-height: 1.1; letter-spacing: -.5px; margin-bottom: 16px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.8; max-width: 440px; }
.cta-strip-btns { display: flex; flex-direction: column; gap: 12px; min-width: 210px; }
.btn-gold-lg { display: block; background: var(--gold); color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 16px 24px; border-radius: var(--r); text-align: center; transition: background .2s; }
.btn-gold-lg:hover { background: var(--gold-dark); }

/* ───────── Responsivo (conteúdo) ───────── */
@media (max-width: 980px) {
  .article-layout { grid-template-columns: 1fr; gap: 0; }
  .article-sidebar, .sidebar-sticky { display: none; }
  .related-grid, .types-grid, .compliance-grid { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-portrait { max-width: 420px; }
  .author-box { flex-direction: column; gap: 18px; padding: 22px 20px; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-hero h1 { font-size: 32px; }
}
@media (max-width: 600px) {
  .article-wrapper { padding: 32px 20px 56px; }
  .article-hero { padding: 34px 20px 42px; }
  .article-hero h1 { font-size: 26px; }
  .hero-features, .meta-badge, .meta-divider { display: none; }
  .article-meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .inline-model-cta { flex-direction: column; align-items: flex-start; gap: 16px; padding: 22px 20px; }
  .inline-model-btn { width: 100%; text-align: center; }
  /* tabela larga -> cartões empilhados (sem scroll lateral) */
  .data-table-wrap { border: 0; overflow: visible; margin: 18px 0 26px; }
  .data-table--stack thead { display: none; }
  .data-table--stack, .data-table--stack tbody { display: block; width: 100%; }
  .data-table--stack tr { display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 4px 16px 8px; margin-bottom: 10px; }
  .data-table--stack tbody tr:nth-child(even) { background: var(--white); }
  .data-table--stack td { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 9px 0; border: 0; border-top: 1px solid var(--border); white-space: normal; text-align: right; }
  .data-table--stack td::before { content: attr(data-label); text-align: left; font-size: 12px; font-weight: 600; color: var(--muted); flex-shrink: 0; }
  .data-table--stack td:first-child { display: block; text-align: left; border-top: 0; padding: 12px 0 6px; font-size: 15px; font-weight: 800; color: var(--black); white-space: normal; }
  .data-table--stack td:first-child::before { display: none; }
}

/* ============================================================
   HUB + SUBHUB COMPONENTS
   Portados dos mockups aprovados (a Bíblia):
     _source/marketing-juridico-hub-v4_prd.html   (HUB)
     _source/captacao-prospeccao-subhub-v1_prd.html (SUBHUB)
   Camada de CORPO dos hubs/subhubs — o chrome (navbar/footer/mobile-nav)
   já vive acima neste arquivo e NÃO é re-portado.

   Colisões com regras existentes (renomeadas para não corromper o drafter):
     .article-body  -> .subhub-prose      (prosa do pillar; o .article-body
                       existente é o sistema de prosa do drafter, semântica
                       diferente; mantido isolado com seu próprio max-width)
     .faq-list/.faq-item/.faq-a -> .subhub-faq-list/.subhub-faq-item/.subhub-faq-a
                       (a FAQ existente usa .faq-question/.faq-answer em card;
                       o mockup usa <summary> + lista plana com border-bottom)
   .cta-band(+filhos) NÃO é re-portado: já existe acima (banda dourada do tenant);
   os mockups usam .cta-band idêntico, então reaproveita o existente.
   Tokens: usa os aliases já presentes em 01-tokens.css (--c-* e --gold/--black/etc.).
   ============================================================ */

/* ───────── HERO (variante hub — decoração de linhas diagonais) ───────── */
.hero { background: var(--c-black); padding: 48px 32px 52px; position: relative; overflow: hidden; }
/* Decoração: linhas diagonais paralelas (hub de marketing). */
.hero::before, .hero::after { content: ''; position: absolute; pointer-events: none; }
.hero::before {
  right: 0; top: 0; width: 420px; height: 100%;
  background: repeating-linear-gradient(-55deg, transparent, transparent 28px, rgba(204,154,86,.045) 28px, rgba(204,154,86,.045) 29px);
}
.hero::after {
  right: 48px; top: 50%; transform: translateY(-50%);
  width: 2px; height: 60%; background: linear-gradient(to bottom, transparent, rgba(204,154,86,.22), transparent);
}
.hero-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
/* .crumb — breadcrumb do hero do hub. NÃO colide com o .breadcrumb existente
   (componente de página diferente); nome mantido fiel ao mockup. */
.crumb { display: flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: rgba(255,255,255,.3); margin-bottom: 22px; }
.crumb a { color: rgba(255,255,255,.3); transition: color .2s; }
.crumb a:hover { color: rgba(255,255,255,.6); }
.crumb-sep { color: rgba(255,255,255,.18); }
.hero-tag { display: inline-flex; align-items: center; gap: 9px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.hero-tag::before { content: ''; width: 20px; height: 2px; background: var(--c-gold); flex-shrink: 0; }
.hero-h1 { font-size: 46px; font-weight: 900; line-height: 1.02; letter-spacing: -1.5px; color: var(--c-white); max-width: 860px; margin-bottom: 20px; }
.hero-h1 em { font-style: normal; color: var(--c-gold); }
.hero-lead { font-size: 15px; color: rgba(255,255,255,.52); line-height: 1.7; max-width: 480px; }
.hero-lead strong { color: rgba(255,255,255,.85); font-weight: 600; }

/* ───────── OAB STRIP ───────── */
.oab-strip { background: var(--c-black-2); border-top: 1px solid rgba(255,255,255,.06); padding: 12px 32px; }
.oab-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.oab-badge { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; border: 1px solid rgba(204,154,86,.35); color: var(--c-gold); padding: 3px 8px; border-radius: 3px; flex-shrink: 0; }
.oab-text { font-size: 13px; color: rgba(255,255,255,.48); flex: 1; }
.oab-text strong { color: rgba(255,255,255,.8); font-weight: 600; }
.oab-lnk { font-size: 11px; font-weight: 800; color: var(--c-gold); text-transform: uppercase; letter-spacing: .7px; white-space: nowrap; transition: color .2s; }
.oab-lnk:hover { color: var(--c-white); }

/* ───────── NAV SPLIT (card featured + pilha de 5) ───────── */
.mkt-nav { background: var(--c-bg); padding: 60px 32px 68px; border-bottom: 1px solid var(--c-border); }
.mkt-nav-wrap { max-width: 1200px; margin: 0 auto; }
.mkt-nav-hd { margin-bottom: 32px; }
.mkt-nav-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.mkt-nav-hd h2 { font-size: 30px; font-weight: 900; letter-spacing: -.55px; color: var(--c-black); }
.mkt-nav-hd h2 em { font-style: normal; color: var(--c-gold); }
.mkt-split { display: grid; grid-template-columns: 1fr 420px; gap: 10px; align-items: stretch; }

/* Card featured: Captação e Prospecção */
.mkt-feat { background: var(--c-black); border-radius: 4px; padding: 32px 32px 28px; display: flex; flex-direction: column; gap: 0; position: relative; overflow: hidden; }
.mkt-feat::before { content: ''; position: absolute; bottom: -40px; right: -40px; width: 180px; height: 180px; border: 1px solid rgba(204,154,86,.12); border-radius: 4px; transform: rotate(20deg); pointer-events: none; }
.mkt-feat-label { display: inline-flex; align-self: flex-start; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-gold); border: 1px solid rgba(204,154,86,.35); padding: 4px 9px; border-radius: var(--r-sm); margin-bottom: 20px; }
.mkt-feat-icon { display: block; margin-bottom: 16px; color: var(--c-gold); }
.mkt-feat-title { font-size: 26px; font-weight: 900; color: var(--c-white); letter-spacing: -.5px; line-height: 1.1; margin-bottom: 12px; }
.mkt-feat-title em { font-style: normal; color: var(--c-gold); }
.mkt-feat-desc { font-size: 14px; color: rgba(255,255,255,.44); line-height: 1.65; margin-bottom: 24px; max-width: 420px; }
.mkt-feat-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 28px; }
.mkt-feat-tag { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); padding: 5px 11px; border-radius: 100px; border: 1px solid rgba(255,255,255,.12); text-decoration: none; transition: all .15s; }
.mkt-feat-tag:hover { color: var(--c-white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.mkt-feat-cta { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--c-gold); padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); }

/* Pilha dos 5 outros temas */
.mkt-stack { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--c-border); border-radius: 4px; overflow: hidden; }
.mkt-stack-item { display: flex; align-items: center; gap: 16px; padding: 20px 22px; border-bottom: 1px solid var(--c-border); text-decoration: none; background: var(--c-bg); transition: background .15s; flex: 1; }
.mkt-stack-item:last-child { border-bottom: none; }
.mkt-stack-item:hover { background: var(--c-cream); }
.mkt-stack-icon { width: 40px; height: 40px; border-radius: var(--r-md); background: var(--c-cream); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, border-color .15s; color: var(--c-gold); }
.mkt-stack-item:hover .mkt-stack-icon { background: var(--c-black); border-color: var(--c-black); color: var(--c-white); }
.mkt-stack-body { flex: 1; }
.mkt-stack-title { font-size: 14px; font-weight: 800; color: var(--c-text); letter-spacing: -.1px; line-height: 1.2; transition: color .15s; }
.mkt-stack-item:hover .mkt-stack-title { color: var(--c-gold); }
.mkt-stack-desc { font-size: 12px; color: var(--c-muted); margin-top: 2px; }
.mkt-stack-arr { font-size: 20px; color: #D4D4CE; transition: color .15s, transform .15s; flex-shrink: 0; }
.mkt-stack-item:hover .mkt-stack-arr { color: var(--c-gold); transform: translateX(3px); }

/* ───────── CAPTAÇÃO ARTICLE LIST (seção escura) ───────── */
.cap-list-section { background: var(--c-black-3); border-left: 4px solid var(--c-gold); padding: 52px 32px 60px; }
.cap-list-wrap { max-width: 1200px; margin: 0 auto; }
.cap-list-hd { margin-bottom: 32px; }
.cap-list-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 10px; }
.cap-list-hd h2 { font-size: 26px; font-weight: 900; color: var(--c-white); letter-spacing: -.4px; line-height: 1.15; }
.cap-list-hd h2 em { font-style: normal; color: var(--c-gold); }
.cap-list-hd p { font-size: 14px; color: rgba(255,255,255,.4); margin-top: 8px; max-width: 540px; line-height: 1.6; }
.cap-articles { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: 4px; overflow: hidden; }
.cap-article { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,.07); text-decoration: none; transition: background .15s; position: relative; }
.cap-article:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
.cap-article:nth-last-child(1), .cap-article:nth-last-child(2) { border-bottom: none; }
.cap-article:hover { background: rgba(204,154,86,.06); }
.cap-article.cap-highlight { background: rgba(204,154,86,.08); }
.cap-art-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-gold); transition: background .15s, border-color .15s; }
.cap-article:hover .cap-art-icon { background: rgba(204,154,86,.18); border-color: rgba(204,154,86,.4); }
.cap-art-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); line-height: 1.3; flex: 1; transition: color .15s; }
.cap-article:hover .cap-art-title { color: var(--c-white); }
.cap-art-arr { font-size: 16px; color: rgba(255,255,255,.2); flex-shrink: 0; transition: color .15s, transform .15s; }
.cap-article:hover .cap-art-arr { color: var(--c-gold); transform: translateX(2px); }

/* ───────── INFO CARDS (3 colunas, fundo creme) ───────── */
.mkt-info { background: var(--c-cream); padding: 60px 32px 68px; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.mkt-info-wrap { max-width: 1200px; margin: 0 auto; }
.mkt-info-hd { margin-bottom: 28px; }
.mkt-info-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.mkt-info-hd h2 { font-size: 26px; font-weight: 900; color: var(--c-black); letter-spacing: -.4px; }
.mkt-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mkt-info-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: 4px; padding: 26px 24px; }
.mkt-info-card-icon { display: block; margin-bottom: 14px; color: var(--c-gold); }
.mkt-info-card-title { font-size: 16px; font-weight: 800; color: var(--c-black); letter-spacing: -.2px; margin-bottom: 10px; }
.mkt-info-card-body { font-size: 13px; color: var(--c-body); line-height: 1.65; margin-bottom: 16px; }
.mkt-info-list { list-style: none; }
.mkt-info-list li { font-size: 13px; color: var(--c-body); padding: 7px 0; border-bottom: 1px solid var(--c-border); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.mkt-info-list li:last-child { border-bottom: none; }
.mkt-info-list li::before { content: '›'; color: var(--c-gold); font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* Steps: label em coluna fixa + texto alinhado */
.steps-list { list-style: none; }
.steps-list li { font-size: 13px; color: var(--c-body); padding: 8px 0; border-bottom: 1px solid var(--c-border); display: grid; grid-template-columns: 68px 1fr; gap: 6px; align-items: baseline; line-height: 1.45; }
.steps-list li:last-child { border-bottom: none; }
.step-lbl { font-weight: 800; color: var(--c-text); font-size: 12px; text-transform: uppercase; letter-spacing: .3px; white-space: nowrap; }

/* Card OAB: split pode/não pode */
.mkt-oab-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 4px; overflow: hidden; border: 1px solid var(--c-border); margin-top: 16px; }
.mkt-oab-col { padding: 14px 14px; }
.mkt-oab-col.can { background: #F0FDF4; border-right: 1px solid #BBF7D0; }
.mkt-oab-col.cant { background: #FFF1F2; }
.mkt-oab-col-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.mkt-oab-col.can .mkt-oab-col-label { color: #166534; }
.mkt-oab-col.cant .mkt-oab-col-label { color: #9F1239; }
.mkt-oab-items { list-style: none; }
.mkt-oab-items li { font-size: 12px; padding: 4px 0; display: flex; align-items: flex-start; gap: 5px; line-height: 1.35; }
.mkt-oab-col.can .mkt-oab-items li { color: #14532D; }
.mkt-oab-col.cant .mkt-oab-items li { color: #7F1D1D; }
.mkt-oab-col.can .mkt-oab-items li::before { content: '✓'; color: #16A34A; flex-shrink: 0; font-size: 11px; }
.mkt-oab-col.cant .mkt-oab-items li::before { content: '×'; color: #DC2626; flex-shrink: 0; font-size: 11px; }

/* ───────── OUTROS HUBS ───────── */
.other-hubs { background: var(--c-bg); padding: 52px 32px 60px; border-top: 1px solid var(--c-border); }
.other-hubs-wrap { max-width: 1200px; margin: 0 auto; }
.oh-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; color: var(--c-gold); margin-bottom: 6px; }
.oh-title { font-size: 22px; font-weight: 800; color: var(--c-black); margin-bottom: 20px; letter-spacing: -.3px; }
.hub-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hub-item { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 20px 22px; text-decoration: none; display: flex; align-items: center; gap: 14px; transition: border-color .2s, box-shadow .2s; }
.hub-item:hover { border-color: var(--c-black); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.hub-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c-border); flex-shrink: 0; transition: background .15s; }
.hub-item:hover .hub-dot { background: var(--c-gold); }
.hub-item-title { font-size: 14px; font-weight: 700; color: var(--c-black); }
.hub-item-sub { font-size: 11px; color: var(--c-muted); margin-top: 2px; }
.hub-item-arr { font-size: 18px; color: #D0D0D0; margin-left: auto; transition: color .15s; }
.hub-item:hover .hub-item-arr { color: var(--c-gold); }

/* ============================================================
   SUBHUB — corpo do subhub (captacao-prospeccao-subhub-v1)
   ============================================================ */

/* ───────── PARENT STRIP (retorno ao hub pai + contexto OAB) ───────── */
.parent-strip { background: var(--c-black-2); border-top: 1px solid rgba(255,255,255,.05); padding: 11px 32px; }
.parent-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; }
.parent-back { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); display: flex; align-items: center; gap: 6px; transition: color .15s; }
.parent-back:hover { color: rgba(255,255,255,.65); }
.parent-sep { color: rgba(255,255,255,.15); font-size: 12px; }
.parent-oab { font-size: 12px; color: rgba(255,255,255,.48); flex: 1; }
.parent-oab strong { color: rgba(255,255,255,.75); font-weight: 600; }
.parent-link { font-size: 11px; font-weight: 800; color: var(--c-gold); text-transform: uppercase; letter-spacing: .7px; white-space: nowrap; transition: color .15s; }
.parent-link:hover { color: var(--c-white); }

/* ───────── ARTIGO BASE + SEQUÊNCIA HORIZONTAL ───────── */
.base-section { background: var(--c-bg); padding: 60px 32px 60px; border-bottom: 1px solid var(--c-border); }
.base-wrap { max-width: 1200px; margin: 0 auto; }
.base-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.base-h2 { font-size: 26px; font-weight: 900; letter-spacing: -.4px; color: var(--c-black); margin-bottom: 24px; }
.base-card { display: grid; grid-template-columns: 1fr 260px; border: 1px solid var(--c-border); text-decoration: none; transition: border-color .15s; margin-bottom: 1px; }
.base-card:hover { border-color: rgba(204,154,86,.35); }
.base-card-body { padding: 32px 32px 28px; }
.base-card-tag { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-gold); margin-bottom: 12px; display: block; }
.base-card-title { font-size: 20px; font-weight: 900; color: var(--c-black); letter-spacing: -.3px; line-height: 1.2; margin-bottom: 10px; }
.base-card-desc { font-size: 14px; color: var(--c-body); line-height: 1.65; margin-bottom: 20px; }
.base-card-cta { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--c-gold); display: inline-flex; align-items: center; gap: 6px; transition: gap .15s; }
.base-card:hover .base-card-cta { gap: 9px; }
.base-card-panel { background: var(--c-black); padding: 28px 24px; border-left: 1px solid var(--c-border); display: flex; flex-direction: column; justify-content: center; }
.base-card-panel-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.base-card-panel-items { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.base-card-panel-items li { font-size: 12px; color: rgba(255,255,255,.45); display: flex; align-items: flex-start; gap: 7px; line-height: 1.35; }
.base-card-panel-items li::before { content: '›'; color: var(--c-gold); flex-shrink: 0; }

/* Tira horizontal da sequência: 5 colunas compactas */
.seq-strip { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--c-border); border-top: none; }
.seq-col { padding: 18px 20px; border-right: 1px solid var(--c-border); position: relative; }
.seq-col:last-child { border-right: none; }
.seq-col::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--c-border); }
.seq-col:hover::before { background: var(--c-gold); }
.seq-col-num { font-size: 9px; font-weight: 800; color: var(--c-gold); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.seq-col-title { font-size: 12px; font-weight: 800; color: var(--c-black); margin-bottom: 4px; line-height: 1.3; }
.seq-col-desc { font-size: 11px; color: var(--c-muted); line-height: 1.4; }
.seq-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin: 44px 0 14px; }

/* Resposta direta + prosa do pillar.
   .article-answer é novo; .subhub-prose = o .article-body do mockup renomeado
   (o .article-body existente é o sistema de prosa do drafter). */
.article-answer { background: var(--c-cream); border-left: 3px solid var(--c-gold); padding: 22px 26px; margin-bottom: 30px; border-radius: 0 var(--r-md) var(--r-md) 0; max-width: 820px; }
.article-answer p { font-size: 16px; color: var(--c-text); line-height: 1.7; font-weight: 500; }
.article-answer strong { color: var(--c-black); font-weight: 700; }
.subhub-prose { max-width: 760px; }
.subhub-prose p { font-size: 15px; color: var(--c-body); line-height: 1.8; margin-bottom: 18px; }
.subhub-prose strong { color: var(--c-black); font-weight: 700; }

/* TOC navegável (.toc é novo; não colide com .toc-box/.toc-link do drafter) */
.toc { background: var(--c-cream); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 18px 22px; margin: 0 0 34px; max-width: 760px; }
.toc-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); display: block; margin-bottom: 10px; }
.toc ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.toc a { font-size: 13px; font-weight: 600; color: var(--c-body); display: inline-flex; align-items: center; gap: 6px; transition: color .15s; }
.toc a::before { content: '\203A'; color: var(--c-gold); }
.toc a:hover { color: var(--c-gold); }

/* ───────── COMPARATIVO DE CANAIS (seção escura) ───────── */
.comp-section { background: var(--c-black-2); padding: 56px 32px 64px; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.comp-wrap { max-width: 1200px; margin: 0 auto; }
.comp-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.comp-hd h2 { font-size: 24px; font-weight: 900; color: var(--c-white); letter-spacing: -.35px; margin-bottom: 6px; }
.comp-hd p { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 32px; }
.comp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(255,255,255,.08); }
.comp-card { padding: 0; border-right: 1px solid rgba(255,255,255,.08); }
.comp-card:last-child { border-right: none; }
.comp-card-hd { padding: 20px 22px 18px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; gap: 10px; }
.comp-card-icon { color: var(--c-gold); flex-shrink: 0; }
.comp-card-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.3); }
.comp-card-title { font-size: 14px; font-weight: 800; color: var(--c-white); line-height: 1.2; }
.comp-card-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.comp-stat-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-bottom: 5px; }
.comp-stat-val { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.75); line-height: 1.35; }
.comp-stat-val em { font-style: normal; color: var(--c-gold); }
.comp-timeline { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.comp-timeline-fill { height: 100%; border-radius: 2px; background: var(--c-gold); }
.comp-card-footer { padding: 0 22px 20px; border-top: 1px solid rgba(255,255,255,.05); padding-top: 16px; }
.comp-card-footer-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.3); margin-bottom: 8px; }
.comp-artigo { display: flex; align-items: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,.45); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .12s; text-decoration: none; }
.comp-artigo:last-child { border-bottom: none; }
.comp-artigo:hover { color: var(--c-gold); }
.comp-artigo::before { content: '›'; color: var(--c-gold); opacity: .6; flex-shrink: 0; }

/* ───────── CANAIS DE CAPTAÇÃO (3 colunas, fundo creme) ───────── */
.canais-section { background: var(--c-cream); padding: 60px 32px 68px; border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); margin-top: 40px; }
.canais-wrap { max-width: 1200px; margin: 0 auto; }
.canais-hd { margin-bottom: 36px; }
.canais-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.canais-hd h2 { font-size: 26px; font-weight: 900; letter-spacing: -.4px; color: var(--c-black); }
.canais-hd p { font-size: 14px; color: var(--c-muted); margin-top: 6px; }
.canais-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--c-border); background: var(--c-border); gap: 1px; }
.canal { background: var(--c-white); display: flex; flex-direction: column; }
.canal-header { padding: 20px 22px 18px; border-bottom: 1px solid var(--c-border); display: flex; align-items: flex-start; gap: 12px; }
.canal-icon { color: var(--c-gold); flex-shrink: 0; margin-top: 1px; }
.canal-label { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--c-gold); margin-bottom: 3px; }
.canal-title { font-size: 14px; font-weight: 800; color: var(--c-black); letter-spacing: -.1px; line-height: 1.2; }
.canal-desc { font-size: 11px; color: var(--c-muted); margin-top: 3px; line-height: 1.4; }
.canal-artigos { flex: 1; }
.canal-artigo { display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-bottom: 1px solid var(--c-border); text-decoration: none; transition: background .12s; }
.canal-artigo:last-child { border-bottom: none; }
.canal-artigo:hover { background: var(--c-cream); }
.canal-artigo-body { flex: 1; }
.canal-artigo-title { font-size: 13px; font-weight: 700; color: var(--c-black); line-height: 1.3; transition: color .12s; }
.canal-artigo:hover .canal-artigo-title { color: var(--c-gold); }
.canal-artigo-desc { font-size: 11px; color: var(--c-muted); margin-top: 2px; line-height: 1.35; }
.canal-artigo-arr { font-size: 16px; color: var(--c-border); flex-shrink: 0; transition: color .12s, transform .12s; }
.canal-artigo:hover .canal-artigo-arr { color: var(--c-gold); transform: translateX(2px); }

/* ───────── ZONA DE ATENÇÃO (seção escura, limites OAB) ───────── */
.atencao-section { background: var(--c-black-3); border-left: 4px solid var(--c-gold); padding: 52px 32px 60px; }
.atencao-wrap { max-width: 1200px; margin: 0 auto; }
.atencao-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 10px; }
.atencao-hd h2 { font-size: 24px; font-weight: 900; color: var(--c-white); letter-spacing: -.35px; margin-bottom: 8px; }
.atencao-hd p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; max-width: 520px; margin-bottom: 28px; }
.atencao-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid rgba(255,255,255,.08); border-radius: 0; overflow: hidden; }
.atencao-item { display: flex; align-items: center; gap: 16px; padding: 22px 24px; border-bottom: 1px solid rgba(255,255,255,.07); text-decoration: none; transition: background .15s; }
.atencao-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
.atencao-item:hover { background: rgba(204,154,86,.06); }
.atencao-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--c-gold); transition: background .15s, border-color .15s; }
.atencao-item:hover .atencao-icon { background: rgba(204,154,86,.18); border-color: rgba(204,154,86,.4); }
.atencao-body { flex: 1; }
.atencao-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); line-height: 1.3; transition: color .15s; }
.atencao-item:hover .atencao-title { color: var(--c-white); }
.atencao-desc { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 2px; }
.atencao-arr { font-size: 16px; color: rgba(255,255,255,.2); flex-shrink: 0; transition: color .15s, transform .15s; }
.atencao-item:hover .atencao-arr { color: var(--c-gold); transform: translateX(2px); }
.atencao-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.atencao-content-col { border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.atencao-content-col .atencao-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.atencao-content-col .atencao-item:nth-child(odd) { border-right: none; }
.atencao-rules-row { display: grid; grid-template-columns: 1fr 1fr; }
.atencao-rules-col { padding: 16px 22px; border-right: 1px solid rgba(255,255,255,.07); }
.atencao-rules-col:last-child { border-right: none; }
.atencao-rules-group-title { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.atencao-rules-group-title.can { color: #72b97e; }
.atencao-rules-group-title.cannot { color: #d97070; }
.atencao-rules-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.atencao-rules-list li { font-size: 12px; color: rgba(255,255,255,.42); display: flex; align-items: flex-start; gap: 8px; line-height: 1.35; }
.atencao-rules-list li.can::before { content: '✓'; color: #72b97e; flex-shrink: 0; font-weight: 700; }
.atencao-rules-list li.cannot::before { content: '✕'; color: #d97070; flex-shrink: 0; font-weight: 700; }

/* ───────── FAQ (subhub) — renomeado para não colidir com a FAQ do drafter ─────────
   Mockup: <details class="subhub-faq-item"><summary> + <div class="subhub-faq-a">.
   .faq-section/.faq-wrap/.faq-eyebrow/.faq-title são novos (sem colisão). */
.faq-section { background: var(--c-bg); padding: 60px 32px; border-top: 1px solid var(--c-border); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }
.faq-title { font-size: 26px; font-weight: 900; letter-spacing: -.4px; color: var(--c-black); margin-bottom: 28px; }
.subhub-faq-list { border-top: 1px solid var(--c-border); }
.subhub-faq-item { border-bottom: 1px solid var(--c-border); }
.subhub-faq-item summary { font-family: var(--f-head); font-size: 16px; font-weight: 700; color: var(--c-black); padding: 20px 36px 20px 0; cursor: pointer; list-style: none; position: relative; }
.subhub-faq-item summary::-webkit-details-marker { display: none; }
.subhub-faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 16px; font-size: 24px; font-weight: 400; color: var(--c-gold); transition: transform .2s; }
.subhub-faq-item[open] summary::after { content: '\2212'; }
.subhub-faq-a { padding: 0 0 22px; }
.subhub-faq-a p { font-size: 14px; color: var(--c-body); line-height: 1.7; }
.subhub-faq-a strong { color: var(--c-black); font-weight: 700; }

/* ───────── NAVEGAÇÃO DE RETORNO + OUTROS TEMAS (subhub) ───────── */
.nav-back-section { background: var(--c-bg); padding: 52px 32px 60px; border-top: 1px solid var(--c-border); }
.nav-back-wrap { max-width: 1200px; margin: 0 auto; }
.nav-back-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.8px; color: var(--c-gold); margin-bottom: 6px; }
.nav-back-title { font-size: 22px; font-weight: 800; color: var(--c-black); margin-bottom: 20px; letter-spacing: -.3px; }
.nav-back-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.nav-back-item { background: var(--c-bg); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 20px 22px; text-decoration: none; display: flex; align-items: center; gap: 14px; transition: border-color .2s, box-shadow .2s; }
.nav-back-item:hover { border-color: var(--c-black); box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.nav-back-item.parent { border-color: rgba(204,154,86,.35); }
.nav-back-item.parent:hover { border-color: var(--c-gold); box-shadow: 0 4px 14px rgba(204,154,86,.12); }
.nav-back-item.parent .hub-dot { background: rgba(204,154,86,.4); }
.nav-back-item:hover .hub-dot { background: var(--c-gold); }
.nav-back-item:hover .hub-item-arr { color: var(--c-gold); }

/* ───────── RESPONSIVO (hub + subhub) ─────────
   anti-overflow: zera min-width dos filhos de grids/flex que podem estourar. */
.mkt-split, .mkt-split > *, .cap-articles, .cap-articles > *, .mkt-info-grid, .mkt-info-grid > *,
.hub-row, .hub-row > *, .cta-band-wrap, .cta-band-wrap > *,
.base-card, .base-card > *, .seq-strip, .seq-strip > *, .comp-grid, .comp-grid > *,
.canais-grid, .canais-grid > *, .atencao-grid, .atencao-grid > *, .atencao-layout, .atencao-layout > *,
.atencao-rules-row, .atencao-rules-row > *, .nav-back-grid, .nav-back-grid > * { min-width: 0; }

@media (max-width: 980px) {
  .oab-strip { display: none; }
  .mkt-split { grid-template-columns: 1fr; }
  .cap-articles { grid-template-columns: 1fr; }
  .cap-article:nth-child(odd) { border-right: none; }
  .mkt-info-grid { grid-template-columns: 1fr; }
  .hub-row { grid-template-columns: 1fr; }
  .parent-strip { display: none; }
  .base-card { grid-template-columns: 1fr; }
  .base-card-panel { border-left: none; border-top: 1px solid var(--c-border); }
  .seq-strip { grid-template-columns: 1fr; }
  .seq-col { border-right: none; border-bottom: 1px solid var(--c-border); }
  .seq-col:last-child { border-bottom: none; }
  .comp-grid { grid-template-columns: 1fr; }
  .comp-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .comp-card:last-child { border-bottom: none; }
  .canais-grid { grid-template-columns: 1fr; }
  .atencao-grid { grid-template-columns: 1fr; }
  .atencao-item:nth-child(odd) { border-right: none; }
  .atencao-layout { grid-template-columns: 1fr; gap: 28px; }
  .nav-back-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 36px 20px 40px; }
  .hero-h1 { font-size: 30px; letter-spacing: -.8px; }
  .oab-strip { padding: 12px 20px; }
  .mkt-nav, .mkt-info, .other-hubs { padding-left: 20px; padding-right: 20px; }
  .mkt-nav { padding-top: 40px; padding-bottom: 44px; }
  .mkt-info { padding-top: 40px; padding-bottom: 44px; }
  .mkt-nav-hd h2 { font-size: 24px; }
  .mkt-oab-split { grid-template-columns: 1fr; }
  .parent-strip, .base-section, .canais-section, .comp-section, .atencao-section, .nav-back-section, .faq-section { padding-left: 20px; padding-right: 20px; }
  .atencao-rules-row { grid-template-columns: 1fr; }
  .atencao-rules-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .atencao-rules-col:last-child { border-bottom: none; }
}


/* ===== HOME (home-blog-v1_prd.html) — ported home-content styles ===== */

.home-page .wrap { max-width: 1200px; margin: 0 auto; }

.home-page .home-hero { background: var(--c-black); position: relative; overflow: hidden; padding: 18px 32px 0; }

.home-page .masthead { position: absolute; left: -2%; bottom: -6%; font-family: var(--f-head); font-weight: 800; font-size: 17vw; line-height: .8; color: rgba(255,255,255,.03); white-space: nowrap; pointer-events: none; letter-spacing: -.5vw; }

.home-page .hero-edition { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 6px 0 16px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 2; }

.home-page .hero-edition span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: rgba(255,255,255,.4); }

.home-page .hero-edition .ed-gold { color: var(--c-gold); }

.home-page .hero-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; position: relative; z-index: 2; padding: 40px 0 0; }

.home-page .hero-copy { padding-bottom: 48px; }

.home-page .hero-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 20px; }

.home-page .hero-kicker::before { content: ''; width: 24px; height: 2px; background: var(--c-gold); }

.home-page .home-h1 { font-size: 52px; font-weight: 900; line-height: 1.02; letter-spacing: -1.8px; color: var(--c-white); margin-bottom: 22px; }

.home-page .home-h1 em { font-style: normal; color: var(--c-gold); }

.home-page .home-h1 .caps { letter-spacing: -.5px; }

.home-page .hm-hero-lead { font-size: 16px; color: rgba(255,255,255,.55); line-height: 1.7; max-width: 480px; margin-bottom: 30px; }

.home-page .hm-hero-lead strong { color: rgba(255,255,255,.9); font-weight: 600; }

.home-page .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.home-page .hm-btn-gold { background: var(--c-gold); color: var(--c-black); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 14px 26px; border-radius: var(--r-sm); transition: background .2s; }

.home-page .hm-btn-gold:hover { background: var(--c-gold-dk); }

.home-page .hm-btn-ghost { border: 1px solid rgba(255,255,255,.2); color: var(--c-white); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 14px 26px; border-radius: var(--r-sm); transition: border-color .2s, background .2s; }

.home-page .hm-btn-ghost:hover { border-color: var(--c-gold); background: rgba(204,154,86,.08); }

.home-page .hm-hero-portrait { position: relative; align-self: stretch; display: flex; align-items: flex-end; justify-content: center; min-height: 460px; }

.home-page .portrait-frame { position: relative; width: 330px; height: 430px; border-radius: var(--r-lg) var(--r-lg) 0 0; overflow: hidden; background: linear-gradient(165deg, #2A2A2A 0%, #0E0E0E 100%); border: 1px solid rgba(204,154,86,.25); }

.home-page .portrait-frame img,
.home-page .sobre-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

.home-page .portrait-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,6,6,.55), transparent 45%); z-index: 1; }

.home-page .portrait-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(204,154,86,.55); }

.home-page .portrait-ph svg { width: 64px; height: 64px; }

.home-page .portrait-ph span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); }

.home-page .chip { position: absolute; background: rgba(18,18,18,.92); border: 1px solid rgba(204,154,86,.3); border-radius: var(--r-md); padding: 11px 15px; backdrop-filter: blur(4px); box-shadow: 0 16px 40px rgba(0,0,0,.5); z-index: 3; }

.home-page .chip-num { font-family: var(--f-head); font-size: 19px; font-weight: 800; color: var(--c-gold); line-height: 1; }

.home-page .chip-lbl { font-size: 10px; color: rgba(255,255,255,.55); margin-top: 3px; }

.home-page .chip-1 { top: 40px; left: -8px; }

.home-page .chip-2 { top: 150px; right: -18px; }

.home-page .chip-3 { bottom: 70px; left: -26px; }

.home-page .cred { background: var(--c-black-2); border-top: 1px solid rgba(255,255,255,.06); padding: 20px 32px; }

.home-page .cred-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.home-page .cred-item { display: flex; flex-direction: column; gap: 2px; border-left: 2px solid rgba(204,154,86,.4); padding-left: 14px; }

.home-page .cred-num { font-family: var(--f-head); font-size: 22px; font-weight: 800; color: var(--c-white); line-height: 1; }

.home-page .cred-num span { color: var(--c-gold); }

.home-page .cred-lbl { font-size: 11px; color: rgba(255,255,255,.5); }

.home-page .sec { padding: 64px 32px; }

.home-page .sec-cream { background: var(--c-cream); }

.home-page .sec-head { max-width: 1200px; margin: 0 auto 32px; }

.home-page .sec-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 8px; }

.home-page .sec-h2 { font-size: 30px; font-weight: 900; letter-spacing: -.6px; color: var(--c-black); margin-bottom: 8px; }

.home-page .sec-h2 em { font-style: normal; color: var(--c-gold-dk); }

.home-page .sec-sub { font-size: 15px; color: var(--c-muted); max-width: 620px; }

.home-page .pilares-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.home-page .pilar { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--r-md); padding: 26px 22px; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s, border-color .18s; }

.home-page .pilar:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.08); border-color: var(--c-black); }

.home-page .pilar-ico { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--c-black); color: var(--c-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }

.home-page .pilar-n { font-size: 10px; font-weight: 800; letter-spacing: 1.5px; color: var(--c-gold); text-transform: uppercase; margin-bottom: 5px; }

.home-page .pilar-t { font-size: 17px; font-weight: 800; color: var(--c-black); letter-spacing: -.2px; margin-bottom: 8px; }

.home-page .pilar-d { font-size: 13px; color: var(--c-body); line-height: 1.6; flex: 1; margin-bottom: 14px; }

.home-page .pilar-cta { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--c-gold); display: flex; align-items: center; gap: 6px; transition: gap .12s; }

.home-page .pilar:hover .pilar-cta { gap: 9px; }

.home-page .posts-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 1fr; gap: 16px; }

.home-page .post { border: 1px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; background: var(--c-white); text-decoration: none; transition: transform .18s, box-shadow .18s; }

.home-page .post:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0,0,0,.09); }

.home-page .post-thumb { height: 150px; position: relative; display: flex; align-items: center; justify-content: center; background: linear-gradient(150deg, #1F1F1F 0%, #0B0B0B 100%); overflow: hidden; }

.home-page .post-thumb::before { content: ''; position: absolute; right: -30px; bottom: -30px; width: 150px; height: 150px; border: 1px solid rgba(204,154,86,.12); border-radius: 50%; }

.home-page .post-ico { color: rgba(204,154,86,.28); position: relative; z-index: 1; }

.home-page .post-ico svg { width: 58px; height: 58px; }

.home-page .post.feature .post-ico svg { width: 92px; height: 92px; }

.home-page .post-cat { position: absolute; top: 12px; left: 12px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--c-black); background: var(--c-gold); padding: 5px 9px; border-radius: 3px; z-index: 2; }

.home-page .post-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }

.home-page .post-t { font-size: 16px; font-weight: 800; color: var(--c-black); line-height: 1.28; letter-spacing: -.2px; margin-bottom: 8px; }

.home-page .post-d { font-size: 12.5px; color: var(--c-body); line-height: 1.6; flex: 1; }

.home-page .post-meta { font-size: 11px; color: var(--c-muted); margin-top: 14px; display: flex; align-items: center; gap: 7px; }

.home-page .post.feature { grid-row: span 2; }

.home-page .post.feature .post-thumb { height: 260px; }

.home-page .post.feature .post-t { font-size: 24px; line-height: 1.15; }

.home-page .post.feature .post-d { font-size: 14px; }

.home-page .yt { background: var(--c-black); padding: 64px 32px; position: relative; overflow: hidden; }

.home-page .yt-wrap { max-width: 1200px; margin: 0 auto; }

.home-page .yt-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }

.home-page .yt-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }

.home-page .yt-h2 { font-size: 30px; font-weight: 900; color: var(--c-white); letter-spacing: -.6px; line-height: 1.1; }

.home-page .yt-h2 em { font-style: normal; color: var(--c-gold); }

.home-page .yt-sub { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 8px; }

.home-page .yt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.home-page .yt-card { background: var(--c-black-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); overflow: hidden; text-decoration: none; transition: border-color .18s, transform .18s; }

.home-page .yt-card:hover { border-color: rgba(204,154,86,.4); transform: translateY(-3px); }

.home-page .yt-thumb { height: 168px; position: relative; display: flex; align-items: center; justify-content: center; background: #000; overflow: hidden; }

.home-page .yt-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.home-page .yt-thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,.05) 55%); }

.home-page .yt-play { position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: rgba(204,154,86,.95); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(0,0,0,.6); }

.home-page .yt-play svg { width: 20px; height: 20px; color: var(--c-black); margin-left: 3px; }

.home-page .yt-dur { position: absolute; bottom: 10px; right: 10px; font-size: 10px; font-weight: 700; color: #fff; background: rgba(0,0,0,.75); padding: 3px 7px; border-radius: 3px; }

.home-page .yt-card-body { padding: 16px 18px 18px; }

.home-page .yt-title { font-size: 14px; font-weight: 700; color: var(--c-white); line-height: 1.3; }

.home-page .yt-views { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 7px; }

.home-page .yt-cta-row { margin-top: 28px; text-align: center; }

.home-page .sobre { background: var(--c-cream); padding: 70px 32px; }

.home-page .sobre-wrap { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center; }

.home-page .sobre-portrait { position: relative; }

.home-page .sobre-frame { width: 100%; max-width: 360px; aspect-ratio: 4/5; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(165deg, #2A2A2A, #0E0E0E); border: 1px solid rgba(204,154,86,.25); position: relative; }

.home-page .sobre-frame .portrait-ph { color: rgba(204,154,86,.5); }

.home-page .sobre-badge { position: absolute; bottom: 18px; left: -16px; background: var(--c-black); border: 1px solid rgba(204,154,86,.3); border-radius: var(--r-md); padding: 12px 16px; box-shadow: 0 16px 40px rgba(0,0,0,.3); }

.home-page .sobre-badge .b-num { font-family: var(--f-head); font-size: 18px; font-weight: 800; color: var(--c-gold); line-height: 1; }

.home-page .sobre-badge .b-lbl { font-size: 10px; color: rgba(255,255,255,.6); margin-top: 3px; }

.home-page .sobre-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: var(--c-gold-dk); margin-bottom: 10px; }

.home-page .sobre-h2 { font-size: 30px; font-weight: 900; color: var(--c-black); letter-spacing: -.6px; margin-bottom: 16px; }

.home-page .sobre-p { font-size: 15px; color: var(--c-body); line-height: 1.75; margin-bottom: 16px; }

.home-page .sobre-p strong { color: var(--c-black); font-weight: 700; }

.home-page .sobre-creds { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--c-border); }

.home-page .cred-pill { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--c-body); }

.home-page .cred-pill svg { width: 16px; height: 16px; color: var(--c-gold-dk); flex-shrink: 0; }

.home-page .ladder-grid { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

.home-page .step { background: var(--c-black-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-md); padding: 24px 22px; display: flex; flex-direction: column; position: relative; transition: border-color .18s, transform .18s; }

.home-page .step:hover { border-color: rgba(204,154,86,.4); transform: translateY(-3px); }

.home-page .step.highlight { border-color: var(--c-gold); background: linear-gradient(165deg, #E0B36A 0%, var(--c-gold) 55%, var(--c-gold-dk) 100%); box-shadow: 0 16px 40px rgba(204,154,86,.28); }

.home-page .step.highlight .step-stage { color: rgba(6,6,6,.6); }

.home-page .step.highlight .step-name { color: var(--c-black); }

.home-page .step.highlight .step-price { color: rgba(6,6,6,.78); }

.home-page .step.highlight .hm-step-desc { color: rgba(6,6,6,.82); }

.home-page .step.highlight .step-cta { color: var(--c-black); }

.home-page .step-stage { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.2px; color: rgba(255,255,255,.4); margin-bottom: 10px; }

.home-page .step-name { font-size: 17px; font-weight: 800; color: var(--c-white); letter-spacing: -.2px; margin-bottom: 6px; }

.home-page .step-price { font-family: var(--f-head); font-size: 14px; font-weight: 700; color: var(--c-gold); margin-bottom: 12px; }

.home-page .hm-step-desc { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.6; flex: 1; margin-bottom: 16px; }

.home-page .step-cta { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; color: var(--c-gold); display: flex; align-items: center; gap: 6px; transition: gap .12s; }

.home-page .step:hover .step-cta { gap: 9px; }

.home-page .canais { background: var(--c-black); padding: 56px 32px; border-top: 1px solid rgba(255,255,255,.06); }

.home-page .hm-canais-wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: center; }

.home-page .canais-h2 { font-size: 26px; font-weight: 900; color: var(--c-white); letter-spacing: -.5px; line-height: 1.15; margin-bottom: 10px; }

.home-page .canais-h2 em { font-style: normal; color: var(--c-gold); }

.home-page .canais-p { font-size: 13px; color: rgba(255,255,255,.5); }

.home-page .hm-canais-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.home-page .hm-canal { display: flex; align-items: center; gap: 14px; background: var(--c-black-2); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 16px 18px; transition: border-color .18s; }

.home-page .hm-canal:hover { border-color: rgba(204,154,86,.4); }

.home-page .canal-ico { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(204,154,86,.12); color: var(--c-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.home-page .canal-ico svg { width: 20px; height: 20px; }

.home-page .canal-name { font-size: 13px; font-weight: 700; color: var(--c-white); }

.home-page .canal-meta { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }

.home-page .hm-cta-band { background: var(--c-gold); padding: 36px 32px; }

.home-page .hm-cta-band-wrap { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }

.home-page .hm-cta-band-eyebrow { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(6,6,6,.55); margin-bottom: 6px; }

.home-page .hm-cta-band-title { font-size: 23px; font-weight: 900; color: var(--c-black); letter-spacing: -.4px; line-height: 1.15; }

.home-page .hm-cta-band-title span { display: block; font-size: 13px; font-weight: 600; color: rgba(6,6,6,.7); margin-top: 5px; letter-spacing: 0; }

.home-page .hm-cta-band-btn { background: var(--c-black); color: var(--c-white); padding: 16px 30px; font-size: 12px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase; border-radius: var(--r-sm); white-space: nowrap; flex-shrink: 0; transition: opacity .2s; }

.home-page .hm-cta-band-btn:hover { opacity: .88; }

@media (max-width: 980px) {
  .home-page .hero-grid { grid-template-columns: 1fr; gap: 8px; }
  .home-page .hm-hero-portrait { min-height: 0; order: -1; margin-bottom: 8px; }
  .home-page .portrait-frame { width: 260px; height: 320px; border-radius: var(--r-lg); }
  .home-page .chip-2 { right: 0; }
  .home-page .chip-3 { left: 0; }
  .home-page .home-h1 { font-size: 40px; }
  .home-page .cred-wrap { grid-template-columns: 1fr 1fr; gap: 16px; }
  .home-page .pilares-grid { grid-template-columns: 1fr 1fr; }
  .home-page .posts-grid { grid-template-columns: 1fr 1fr; }
  .home-page .post.feature { grid-row: span 1; grid-column: span 2; }
  .home-page .yt-grid { grid-template-columns: 1fr; }
  .home-page .sobre-wrap { grid-template-columns: 1fr; gap: 32px; }
  .home-page .sobre-portrait { display: flex; justify-content: center; }
  .home-page .ladder-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .home-page .hm-canais-wrap { grid-template-columns: 1fr; gap: 24px; }
  .home-page .masthead { font-size: 26vw; }
}

@media (max-width: 560px) {
  .home-page .home-h1 { font-size: 32px; }
  .home-page .cred-wrap { grid-template-columns: 1fr 1fr; }
  .home-page .pilares-grid { grid-template-columns: 1fr; }
  .home-page .posts-grid { grid-template-columns: 1fr; }
  .home-page .post.feature { grid-column: span 1; }
  .home-page .ladder-grid { grid-template-columns: 1fr; }
  .home-page .hm-canais-grid { grid-template-columns: 1fr; }
  .home-page .hero-ctas { flex-direction: column; }
  .home-page .hero-ctas a { text-align: center; }
}

.home-page .hero-grid,
.home-page .hero-grid > *,
.home-page .cred-wrap,
.home-page .pilares-grid,
.home-page .posts-grid,
.home-page .yt-grid,
.home-page .sobre-wrap,
.home-page .ladder-grid,
.home-page .hm-canais-wrap,
.home-page .hm-canais-grid,
.home-page main,
.home-page main > * { min-width: 0; }

@media (max-width: 560px) {
  .home-page .home-hero { padding: 18px 20px 0; }
  .home-page .cred { padding: 20px 20px; }
  .home-page .sec { padding: 48px 20px; }
  .home-page .yt { padding: 48px 20px; }
  .home-page .sobre { padding: 52px 20px; }
  .home-page .canais { padding: 44px 20px; }
  .home-page .hm-cta-band { padding: 32px 20px; }
  .home-page .hero-edition { display: none; }
}
