:root {
    --azul-escuro: #0b1f4d;
    --azul: #1552f0;
    --texto: #3a4150;
    --titulo: #1f2533;
    --fundo: #f6f7f9;
    --borda: #e3e6ec;
    --selo: #eef0f4;
    --alerta-fundo: #fff1f1;
    --alerta-borda: #f5c2c2;
    --alerta-titulo: #c62828;
    --info-fundo: #eef4ff;
    --info-borda: #bcd0fb;
    --info-titulo: #1552f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
    background: var(--fundo);
    color: var(--texto);
    font-size: 14px;
    line-height: 1.7;
}

a {
    color: var(--azul);
}

.legal-container {
    width: 100%;
    max-width: 902px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ---------- Topo ---------- */
.legal-topo {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 1px solid var(--borda);
}

.legal-topo-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    gap: 16px;
}

.legal-marca {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--titulo);
}

.legal-marca img {
    width: 30px;
    height: 30px;
}

.legal-rotulo {
    font-size: 11.5px;
    color: #555c6b;
}

/* ---------- Layout ---------- */
.legal-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 30px;
    align-items: start;
    padding-top: 30px;
    padding-bottom: 30px;
}

.sumario {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 18px 16px 20px;
}

.sumario h2 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #5a6275;
    margin-bottom: 14px;
}

.sumario ol {
    list-style: none;
    counter-reset: item;
}

.sumario li {
    counter-increment: item;
}

.sumario a {
    display: block;
    font-size: 11.5px;
    color: var(--titulo);
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.15s;
}

.sumario a::before {
    content: counter(item) ". ";
}

.sumario a:hover,
.sumario a.ativo {
    color: var(--azul);
}

.sumario a.ativo {
    font-weight: 600;
}

/* ---------- Documento ---------- */
.documento {
    min-width: 0;
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: 8px;
    padding: 36px 30px 44px;
}

.doc-cabecalho {
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--borda);
}

.documento h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--titulo);
    margin-bottom: 12px;
}

.doc-resumo {
    font-size: 13px;
    margin-bottom: 12px;
}

.doc-selos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doc-selos span {
    font-size: 11px;
    background: var(--selo);
    color: #5a6275;
    border-radius: 4px;
    padding: 3px 8px;
}

.doc-selos strong {
    color: #3f4757;
}

.documento p {
    text-align: justify;
    margin-bottom: 14px;
}

.documento section {
    margin-top: 30px;
}

.documento h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--titulo);
    border-left: 4px solid var(--azul);
    padding-left: 10px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.documento h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--titulo);
    margin: 18px 0 8px;
}

.documento ul {
    padding-left: 15px;
    margin-bottom: 14px;
}

.documento li {
    margin-bottom: 8px;
    padding-left: 2px;
}

.documento strong {
    color: var(--titulo);
}

/* ---------- Caixas de destaque ---------- */
.aviso {
    border-radius: 6px;
    border: 1px solid;
    padding: 18px 16px 8px;
    margin: 18px 0;
}

.aviso h4 {
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.aviso p,
.aviso ul {
    margin-bottom: 10px;
}

.aviso-alerta {
    background: var(--alerta-fundo);
    border-color: var(--alerta-borda);
}

.aviso-alerta h4 {
    color: var(--alerta-titulo);
}

.aviso-alerta h4.escuro {
    color: var(--titulo);
    margin-bottom: 0;
}

.aviso-info {
    background: var(--info-fundo);
    border-color: var(--info-borda);
}

.aviso-info h4 {
    color: var(--info-titulo);
}

/* ---------- Rodapé ---------- */
.legal-rodape {
    padding-bottom: 24px;
}

.legal-rodape .legal-container {
    border-top: 1px solid var(--borda);
    padding-top: 18px;
    text-align: center;
    font-size: 11px;
    color: #5a6275;
}

.legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.legal-links a {
    color: #5a6275;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--azul);
}

/* ---------- Responsivo ---------- */
@media (max-width: 760px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 18px;
        padding-top: 18px;
    }

    .sumario {
        position: static;
    }

    .documento {
        padding: 26px 18px 30px;
    }

    .documento h1 {
        font-size: 21px;
    }

    .documento p {
        text-align: left;
    }
}
