 <style>
/* PÁGINA BASE - ÁREA DE CONTEÚDO INTERNO */
.pagina-base-conteudo {
     margin: 10;
    min-height: 520px;
    background: #f8fafc;
    padding: 50px;
}

    .pagina-documento {
        max-width: 1250px;
        margin: 0 auto;
        background: white;
        padding: 45px;
        border-radius: 10px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    }

    .titulo-documento { margin-bottom: 30px; }

    .titulo-documento h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 38px;
        color: #004899;
        margin-bottom: 10px;
    }

    .barra-titulo {
        width: 90px;
        height: 4px;
        background: #009846;
    }

    .descricao-documento {
        margin-top: 25px;
        margin-bottom: 35px;
        font-size: 17px;
        line-height: 1.8;
        color: #4a5568;
    }

    .descricao-documento p { margin-bottom: 18px; }

    .acoes-documento {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .botao-documento {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #004899;
        color: white;
        padding: 14px 24px;
        border-radius: 5px;
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
    }

    .botao-documento:hover { background: #003570; }

    .viewer-pdf {
        width: 100%;
        height: 950px;
        border: 1px solid #dbe3eb;
        border-radius: 8px;
        overflow: hidden;
        background: #f1f5f9;
    }

    .viewer-pdf iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    @media(max-width: 768px) {
        .pagina-base-conteudo { padding: 25px 15px; }
        .pagina-documento { padding: 25px 18px; }
        .titulo-documento h1 { font-size: 28px; }
        .descricao-documento { font-size: 15px; line-height: 1.7; }
        .viewer-pdf { height: 620px; }
        .acoes-documento { flex-direction: column; }
        .botao-documento { justify-content: center; width: 100%; }
    }
</style>