* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;

    display: flex;
    flex-direction: column;

    font-family:
        'Inter',
        sans-serif;

    background: #F8FAFC;

    color: #0F172A;
}


/* ==========================================================
   TOPO
========================================================== */

.documento-topo {
    width: 100%;
    min-height: 72px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #FFFFFF;

    border-bottom:
        1px solid #E2E8F0;
}

.documento-logo {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.documento-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.documento-voltar {
    color: #1E40AF;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.documento-voltar:hover {
    text-decoration: underline;
}


/* ==========================================================
   PÁGINA
========================================================== */

.documento-pagina {
    width: min(900px, 92%);

    margin: 0 auto;

    padding: 55px 0 70px;

    flex: 1;
}


/* ==========================================================
   CARD
========================================================== */

.documento-card {
    width: 100%;

    background: #FFFFFF;

    border:
        1px solid #E2E8F0;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 15px 45px
        rgba(15, 23, 42, 0.06);
}


/* ==========================================================
   CABEÇALHO
========================================================== */

.documento-cabecalho {
    padding: 36px 40px 30px;

    border-bottom:
        1px solid #E2E8F0;
}

.documento-etiqueta {
    display: inline-flex;

    margin-bottom: 13px;

    color: #1D4ED8;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}

.documento-cabecalho h1 {
    margin: 0;

    color: #0F172A;

    font-size: 32px;
    line-height: 1.2;
}

.documento-descricao {
    max-width: 720px;

    margin: 13px 0 0;

    color: #64748B;

    font-size: 15px;
    line-height: 1.6;
}

.documento-metadados {
    margin-top: 18px;

    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 7px;

    color: #94A3B8;

    font-size: 12px;
}

.documento-separador {
    color: #CBD5E1;
}


/* ==========================================================
   CONTEÚDO
========================================================== */

.documento-conteudo {
    padding: 40px;

    color: #334155;

    font-size: 15px;

    line-height: 1.85;

    overflow-wrap: break-word;
}


/* ==========================================================
   FOOTER
========================================================== */

.footer-site {
    width: 100%;

    padding: 22px 20px;

    background: #FFFFFF;

    border-top:
        1px solid #E2E8F0;
}

.footer-site-conteudo {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    color: #64748B;

    font-size: 13px;
}

.footer-site a {
    color: #64748B;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.footer-site a:hover {
    color: #1E40AF;

    text-decoration: underline;
}

.footer-separador {
    color: #CBD5E1;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 600px) {

    .documento-topo {
        min-height: 64px;

        padding:
            0 20px;
    }

    .documento-logo {
        font-size: 19px;
    }

    .documento-voltar {
        font-size: 12px;
    }

    .documento-pagina {
        width: 94%;

        padding:
            30px 0 45px;
    }

    .documento-card {
        border-radius: 14px;
    }

    .documento-cabecalho {
        padding:
            26px 22px;
    }

    .documento-cabecalho h1 {
        font-size: 25px;
    }

    .documento-conteudo {
        padding:
            28px 22px;

        font-size: 14px;

        line-height: 1.8;
    }

    .footer-site {
        padding:
            20px 14px;
    }

    .footer-site-conteudo {
        font-size: 12px;

        gap: 6px;

        text-align: center;
    }

}