/* ==========================================================================
   Saiu no Diário — página comercial

   Só a vitrine pública. Herda os tokens e os componentes de app.css (botões,
   formulário, alertas, marca) e prefixa tudo com `lp-` para não esbarrar nas
   classes do painel, que vivem na mesma folha.
   ========================================================================== */

html { scroll-behavior: smooth; scroll-padding-top: 78px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body.lp { background: var(--surface); }
.lp ::selection { background: var(--amber-200); color: var(--ink-950); }

.lp-wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.lp-wrap-estreito { max-width: 780px; }

/* Botão maior, só a página comercial usa. */
.btn-lg { padding: 12px 20px; font-size: 14.5px; border-radius: var(--radius); }
.btn-lg svg { width: 17px; height: 17px; }

/* ── Barra de topo ────────────────────────────────────────────────────── */

.lp-nav {
    position: sticky; top: 0; z-index: 60;
    background: rgba(255,255,255,.86); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.lp-nav-inner {
    width: 100%; max-width: 1140px; margin: 0 auto; padding: 12px 24px;
    display: flex; align-items: center; gap: 24px;
}
.lp-brand .brand-name { color: var(--text); }
.lp-brand .brand-name em { color: var(--amber-600); }
.lp-brand .brand-tag { color: var(--text-4); }

.lp-nav-links { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.lp-nav-links a { font-size: 13.5px; font-weight: 500; color: var(--text-2); }
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-actions { display: flex; align-items: center; gap: 8px; }
.lp-entrar { color: var(--text-2); }

/* ── Hero ─────────────────────────────────────────────────────────────── */

.lp-hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(70% 60% at 8% 0%, rgba(233,167,35,.16) 0%, transparent 60%),
        radial-gradient(60% 70% at 100% 10%, rgba(39,50,80,.10) 0%, transparent 62%),
        var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 72px 0 84px;
}
.lp-hero::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(23,26,33,.035) 1px, transparent 1px);
    background-size: 100% 30px;
    mask-image: linear-gradient(180deg, transparent, #000 25%, #000 65%, transparent);
}
.lp-hero > * { position: relative; }

.lp-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }

.lp-h1 {
    font-family: var(--font-display); font-weight: 400;
    font-size: clamp(34px, 4.6vw, 58px); line-height: 1.08; letter-spacing: -.025em;
    color: var(--ink-950);
}
.lp-h1 em { font-style: normal; color: var(--amber-600); }

.lp-lede { font-size: 16.5px; line-height: 1.68; color: var(--text-2); max-width: 52ch; margin-top: 20px; }

.lp-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.lp-hero-notas { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 22px; }
.lp-hero-notas li { font-size: 13px; color: var(--text-3); display: flex; align-items: center; gap: 7px; }
.lp-hero-notas li::before {
    content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--amber-400);
}

/* Maquete do resumo diário */
.lp-mail {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
    transform: rotate(-.5deg);
}
.lp-mail-top {
    background: var(--ink-950); padding: 13px 18px;
    display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.lp-mail-de { font-family: var(--font-display); font-size: 16px; color: #fff; }
.lp-mail-assunto { font-size: 11.5px; color: var(--amber-300); font-weight: 600; letter-spacing: .01em; }
.lp-mail-body { padding: 18px; display: grid; gap: 12px; }
.lp-mail-intro { font-size: 13px; color: var(--text-2); }

.lp-oco {
    border: 1px solid var(--line); border-left: 3px solid var(--amber-400);
    border-radius: var(--radius-sm); padding: 13px 14px; background: var(--surface-2);
}
.lp-oco-head { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.lp-oco-nome { font-size: 14px; font-weight: 650; letter-spacing: -.01em; }
.lp-oco-meta { font-size: 11.5px; color: var(--text-3); margin-top: 2px; }
.lp-oco-trecho {
    font-size: 12.5px; line-height: 1.6; color: var(--text-2); margin-top: 9px;
    padding-top: 9px; border-top: 1px dashed var(--line-strong);
}
.lp-oco-trecho mark { background: var(--amber-100); color: var(--ink-900); font-weight: 600; padding: 0 2px; border-radius: 3px; }
.lp-mail-foot {
    padding: 11px 18px; border-top: 1px solid var(--line); background: var(--surface);
    font-size: 11.5px; color: var(--text-4);
}

/* ── Seções ───────────────────────────────────────────────────────────── */

.lp-section { padding: 78px 0; }
.lp-section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.lp-head { max-width: 640px; margin: 0 auto 42px; text-align: center; }
.lp-kicker {
    display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .13em; color: var(--amber-600);
}
.lp-kicker-claro { color: var(--amber-300); }
.lp-h2 {
    font-family: var(--font-display); font-weight: 400; color: var(--ink-950);
    font-size: clamp(26px, 3.1vw, 38px); line-height: 1.16; letter-spacing: -.02em; margin-top: 10px;
}
.lp-h2-claro { color: #fff; }
.lp-sub { font-size: 15px; line-height: 1.68; color: var(--text-2); margin-top: 14px; }

/* ── Para que serve ───────────────────────────────────────────────────── */

/* Duas listas lado a lado: cada público encontra a sua na hora da conversa. */
.lp-publicos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 20px; }
.lp-publico {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 24px 26px; box-shadow: var(--shadow-xs);
}
.lp-publico-titulo {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em;
    color: var(--text-2); padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.lp-publico-titulo svg {
    width: 19px; height: 19px; flex-shrink: 0;
    stroke: var(--amber-500); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.lp-publico-itens { list-style: none; display: grid; gap: 14px; margin-top: 16px; }
.lp-publico-itens li {
    font-size: 13.5px; line-height: 1.6; color: var(--text-2);
    padding-left: 22px; position: relative;
}
.lp-publico-itens li::before {
    content: ''; position: absolute; left: 2px; top: 7px;
    width: 9px; height: 5px; border-left: 2px solid var(--amber-500); border-bottom: 2px solid var(--amber-500);
    transform: rotate(-45deg);
}
.lp-publico-itens strong { color: var(--text); font-weight: 650; }

.lp-nota-fonte { margin-top: 20px; text-align: center; font-size: 12.5px; color: var(--text-3); }

/* ── Vantagem competitiva ─────────────────────────────────────────────── */

.lp-ganhos { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 24px 32px; }
.lp-ganho { display: flex; align-items: flex-start; gap: 13px; }
.lp-ganho svg {
    width: 21px; height: 21px; flex-shrink: 0; margin-top: 2px;
    stroke: var(--amber-500); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.lp-ganho strong { display: block; font-size: 14.5px; font-weight: 650; letter-spacing: -.015em; }
.lp-ganho p { font-size: 13.5px; line-height: 1.6; color: var(--text-2); margin-top: 4px; }

/* ── Passos ───────────────────────────────────────────────────────────── */

.lp-passos {
    list-style: none; display: grid; gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.lp-passo {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 24px; position: relative;
}
.lp-passo-n {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 9px;
    background: var(--amber-400); color: var(--ink-950);
    font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums;
}
.lp-passo h3 { font-size: 15px; font-weight: 650; letter-spacing: -.015em; margin-top: 14px; }
.lp-passo p { font-size: 13.5px; line-height: 1.65; color: var(--text-2); margin-top: 7px; }

/* ── Destaque escuro ──────────────────────────────────────────────────── */

.lp-destaque {
    margin-top: 22px; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--ink-950);
    background-image:
        radial-gradient(80% 70% at 6% 4%, rgba(233,167,35,.16) 0%, transparent 58%),
        radial-gradient(70% 60% at 96% 100%, rgba(59,74,107,.5) 0%, transparent 60%);
    padding: 38px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 38px; align-items: center;
}
.lp-destaque h3 {
    font-family: var(--font-display); font-weight: 400; color: #fff;
    font-size: clamp(22px, 2.5vw, 30px); line-height: 1.2; letter-spacing: -.02em; margin-top: 10px;
}
.lp-destaque p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,.7); margin-top: 14px; max-width: 56ch; }

.lp-destaque-visual { display: grid; gap: 10px; }
.lp-chip {
    display: flex; align-items: center; gap: 11px; padding: 13px 15px;
    border-radius: var(--radius); border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05); font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.45;
}
.lp-chip strong { color: #fff; font-weight: 600; }
.lp-chip svg { width: 19px; height: 19px; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.lp-chip-ok svg { stroke: #6fd39b; }
.lp-chip-hold svg { stroke: var(--amber-300); }
.lp-chip-hold { border-color: rgba(233,167,35,.3); background: rgba(233,167,35,.09); }

/* ── Cobertura ────────────────────────────────────────────────────────── */

/* Executivo e justiça lado a lado: a diferença entre as duas fontes é a
   primeira coisa que o escritório pergunta, então ela é layout e não rodapé. */
.lp-fontes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr)); gap: 20px; }
.lp-fonte {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 24px 26px; box-shadow: var(--shadow-xs);
    display: flex; flex-direction: column; gap: 12px;
}
.lp-fonte-selo {
    align-self: flex-start; padding: 4px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
    background: var(--amber-50); color: var(--amber-700);
}
.lp-fonte-selo-alt { background: var(--blue-bg); color: var(--blue-fg); }
.lp-fonte-titulo { font-size: 17px; font-weight: 650; letter-spacing: -.02em; }
.lp-fonte-texto { font-size: 13.5px; line-height: 1.65; color: var(--text-2); }
/* As siglas fecham o card por baixo, alinhadas ao texto e não ao centro. */
.lp-fonte .lp-siglas { justify-content: flex-start; margin-top: auto; padding-top: 4px; }

/* As 27 siglas em bloco: a lista inteira diz "todo o Brasil" mais rápido que
   qualquer frase, e ainda cabe em uma faixa. */
.lp-siglas { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.lp-sigla {
    padding: 8px 13px; border-radius: 9px;
    background: var(--ink-950); color: var(--amber-300);
    font-family: var(--font-mono); font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
    box-shadow: var(--shadow-xs); cursor: default;
}

/* ── Perguntas ────────────────────────────────────────────────────────── */

.lp-faq { display: grid; gap: 10px; }
.lp-faq details {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 4px 18px; box-shadow: var(--shadow-xs);
}
.lp-faq summary {
    list-style: none; cursor: pointer; padding: 14px 28px 14px 0; position: relative;
    font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; color: var(--text);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: ''; position: absolute; right: 4px; top: 50%; width: 9px; height: 9px;
    border-right: 2px solid var(--text-3); border-bottom: 2px solid var(--text-3);
    transform: translateY(-70%) rotate(45deg); transition: transform .18s;
}
.lp-faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.lp-faq summary:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(233,167,35,.35); border-radius: 6px; }
.lp-faq p { font-size: 13.5px; line-height: 1.7; color: var(--text-2); padding: 0 0 16px; max-width: 68ch; }

/* ── Contato / formulário ─────────────────────────────────────────────── */

.lp-contato {
    background: var(--ink-950);
    background-image:
        radial-gradient(70% 60% at 4% 0%, rgba(233,167,35,.16) 0%, transparent 58%),
        radial-gradient(60% 70% at 100% 100%, rgba(59,74,107,.55) 0%, transparent 62%);
    padding: 80px 0;
}
.lp-contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.lp-contato-copy > p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.7); margin-top: 16px; max-width: 46ch; }
.lp-contato-email { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.5); }
.lp-contato-email a { color: var(--amber-300); font-weight: 500; }
.lp-contato-email a:hover { color: var(--amber-200); }

.lp-form-card {
    background: var(--surface); border-radius: var(--radius-lg); padding: 28px;
    box-shadow: var(--shadow-lg);
}
.lp-form-titulo { font-size: 19px; font-weight: 700; letter-spacing: -.025em; }
.lp-form-sub { font-size: 13px; color: var(--text-3); margin: 5px 0 22px; }
.lp-form-card .btn { margin-top: 4px; }
.lp-opcional { font-weight: 500; color: var(--text-4); font-size: 11.5px; margin-left: 4px; }
.lp-form-foot { font-size: 11.5px; line-height: 1.6; color: var(--text-4); margin-top: 14px; text-align: center; }

/* Campo isca: fora da tela, invisível para leitor de tela e para o mouse. */
.lp-isca { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.lp-ok { text-align: center; padding: 14px 4px; }
.lp-ok-ico {
    width: 52px; height: 52px; border-radius: 16px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: var(--green-bg); border: 1px solid var(--green-line);
}
.lp-ok-ico svg { width: 26px; height: 26px; stroke: var(--green-fg); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.lp-ok h3 { font-size: 19px; font-weight: 700; letter-spacing: -.025em; }
.lp-ok p { font-size: 13.5px; line-height: 1.7; color: var(--text-2); margin: 10px auto 20px; max-width: 42ch; }

/* ── Rodapé ───────────────────────────────────────────────────────────── */

.lp-footer { background: var(--ink-950); padding: 52px 0 26px; }
.lp-footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.lp-brand-escuro .brand-name { color: #fff; }
.lp-brand-escuro .brand-name em { color: var(--amber-300); }
.lp-brand-escuro .brand-tag { color: rgba(255,255,255,.45); }
.lp-footer-nota { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,.45); margin-top: 16px; max-width: 46ch; }
.lp-footer-links { display: grid; gap: 10px; align-content: start; }
.lp-footer-links a { font-size: 13.5px; color: rgba(255,255,255,.68); }
.lp-footer-links a:hover { color: var(--amber-300); }
.lp-footer-fim {
    margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08);
    font-size: 12px; color: rgba(255,255,255,.34);
}


/* ── Páginas internas: estado e público ──────────────────────────────────
   Mesmo sistema da raiz, com um cabeçalho escuro no lugar do hero em duas
   colunas: aqui não há um e-mail de exemplo para mostrar, e sim um H1 que
   precisa dizer o nome do diário inteiro sem competir com nada ao lado. */

.lp-uf-hero {
    background: var(--ink-950);
    background-image:
        radial-gradient(70% 60% at 4% 0%, rgba(233,167,35,.17) 0%, transparent 58%),
        radial-gradient(60% 70% at 100% 100%, rgba(59,74,107,.5) 0%, transparent 62%);
    padding: 40px 0 68px;
}
.lp-h1-uf { color: #fff; max-width: 20ch; margin-top: 10px; }
.lp-h1-uf em { color: var(--amber-300); }
.lp-lede-claro { color: rgba(255,255,255,.72); max-width: 62ch; }
.lp-lede-claro em { color: var(--amber-200); font-style: normal; }

.lp-trilha { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; margin-bottom: 26px; }
.lp-trilha a { color: rgba(255,255,255,.55); }
.lp-trilha a:hover { color: var(--amber-300); }
.lp-trilha span { color: rgba(255,255,255,.34); }

/* Diz, sem rodeio, se o diário daquele estado já é lido hoje ou entra na
   contratação. É a única promessa da página que muda com o tempo. */
.lp-uf-status {
    margin-top: 28px; padding: 13px 16px; border-radius: var(--radius);
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.66); max-width: 68ch;
}
.lp-uf-status strong { color: #fff; font-weight: 600; }
.lp-uf-status.is-ativo { background: rgba(16,105,60,.16); border-color: rgba(184,230,202,.24); }
.lp-uf-status.is-ativo strong { color: #9fe3bd; }

.lp-tribunais { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 18px; }
.lp-tribunal {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 20px 22px; box-shadow: var(--shadow-xs);
}
.lp-tribunal-sigla {
    display: inline-block; padding: 5px 10px; border-radius: 8px;
    background: var(--ink-950); color: var(--amber-300);
    font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
}
.lp-tribunal strong { display: block; margin-top: 12px; font-size: 14.5px; color: var(--text); font-weight: 650; }
.lp-tribunal p { margin-top: 7px; font-size: 13px; line-height: 1.6; color: var(--text-2); }

/* ── Índice dos 27 estados ──────────────────────────────────────────────── */

.lp-estados-lista { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr)); gap: 12px; }
.lp-estado-card {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 14px 16px; transition: border-color .14s, box-shadow .14s, transform .14s;
}
.lp-estado-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.lp-estado-uf {
    flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: var(--ink-950); color: var(--amber-300);
    font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: .04em;
}
.lp-estado-texto { display: grid; gap: 3px; min-width: 0; }
.lp-estado-texto strong { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.35; }
.lp-estado-meta { font-size: 11.5px; color: var(--text-3); }
.lp-estado-card .badge { margin-left: auto; flex-shrink: 0; }

/* ── Links internos ─────────────────────────────────────────────────────── */

a.lp-sigla { cursor: pointer; transition: background .14s, color .14s, transform .14s; }
a.lp-sigla:hover { background: var(--amber-500); color: var(--ink-950); transform: translateY(-1px); }

.lp-publico-link, .lp-fonte-link { margin-top: 18px; font-size: 13px; }
.lp-publico-link a, .lp-fonte-link a { color: var(--amber-600); font-weight: 600; }
.lp-publico-link a:hover, .lp-fonte-link a:hover { color: var(--amber-700); text-decoration: underline; }
.lp-nota-fonte a { color: var(--amber-600); font-weight: 600; }

.lp-publicos-links { margin-top: 30px; }
.lp-atalho {
    display: grid; gap: 5px;
    background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 18px 20px; transition: border-color .14s, box-shadow .14s;
}
.lp-atalho:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.lp-atalho strong { font-size: 14px; color: var(--text); font-weight: 650; }
.lp-atalho span { font-size: 13px; color: var(--amber-600); font-weight: 500; }

/* ── Captura leve ───────────────────────────────────────────────────────
   Faixa clara entre o conteúdo e o formulário escuro de proposta: quem não
   está pronto para "fale conosco" para aqui, e o preço de entrada é um campo. */

.lp-aviso { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.lp-aviso-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.lp-aviso-titulo { font-family: var(--font-display); font-weight: 400; font-size: clamp(21px, 2.3vw, 27px); line-height: 1.2; color: var(--ink-950); }
.lp-aviso-sub { margin-top: 9px; font-size: 13.5px; line-height: 1.65; color: var(--text-2); max-width: 56ch; }
.lp-aviso-form { display: flex; gap: 9px; align-items: center; }
.lp-aviso-form input[type="email"] {
    width: 268px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text);
    background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--radius);
}
.lp-aviso-form input[type="email"]:focus { outline: none; border-color: var(--amber-400); box-shadow: 0 0 0 3px rgba(233,167,35,.16); }
.lp-aviso-form .btn { flex-shrink: 0; padding: 11px 18px; }
.lp-aviso-ok { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--green-fg); }
.lp-aviso-ok svg { width: 21px; height: 21px; flex-shrink: 0; stroke: var(--green-fg); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.lp-visualmente-oculto {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* As 27 siglas no rodapé de toda página: é assim que o robô chega às páginas
   de estado a partir de qualquer lugar do site, e não só pelo sitemap. */
.lp-footer-ufs { display: flex; flex-wrap: wrap; gap: 6px 10px; margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); }
.lp-footer-ufs a {
    font-family: var(--font-mono); font-size: 11.5px; font-weight: 600; letter-spacing: .04em;
    color: rgba(255,255,255,.4); padding: 2px 4px;
}
.lp-footer-ufs a:hover { color: var(--amber-300); }

/* ── Responsivo ───────────────────────────────────────────────────────── */

@media (max-width: 980px) {
    .lp-hero-grid, .lp-contato-grid, .lp-destaque, .lp-aviso-inner { grid-template-columns: 1fr; }
    .lp-uf-hero { padding: 32px 0 52px; }
    .lp-hero { padding: 52px 0 62px; }
    .lp-hero-grid { gap: 42px; }
    .lp-destaque { padding: 30px; gap: 26px; }
    .lp-section { padding: 60px 0; }
    .lp-contato { padding: 60px 0; }
    .lp-nav-links { display: none; }
}

@media (max-width: 620px) {
    .lp-wrap { padding: 0 16px; }
    .lp-aviso-form { flex-wrap: wrap; }
    .lp-aviso-form input[type="email"] { width: 100%; }
    .lp-aviso-form .btn { width: 100%; justify-content: center; }
    .lp-estado-card .badge { display: none; }
    .lp-nav-inner { padding: 10px 16px; gap: 12px; }
    .lp-nav-actions { margin-left: auto; }
    .lp-entrar { display: none; }
    .lp-brand .brand-tag { display: none; }
    .lp-cta-row .btn { width: 100%; }
    .lp-mail { transform: none; }
    .lp-form-card { padding: 22px 18px; }
    .lp-footer-inner { gap: 28px; }
}
