/* Fonte global para páginas */
body {
    font-family: -apple-system, system-ui, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    overflow-x: hidden; /* Impede que a página role para os lados */
}

/* Container Principal */
.container-page {
    max-width: 760px; /* Largura máxima ajustada para 760px */
    margin: 30px auto; /* Centraliza o conteúdo */
    padding: 10px 10px; /* Adiciona 10px de padding */
}

/* Título da Página */

.entry-header {
    margin-bottom: 20px; /* Espaço entre o título e o conteúdo */
}

.entry-title {
    font-size: 3rem; /* 48px */
    font-weight: 700;
    line-height: 1.2;
    margin: 0px 0;
    color: #1e1e1e;
}

/* Conteúdo da Página */

.entry-content {
    font-size: 1.1875rem; /* 19px */
    line-height: 1.6;
    color: #1f1f1f;
}

/* Estilização para títulos internos */
.entry-content h1, .wp-block-heading {
    font-size: 3rem; /* 48px */
    line-height: 1.2;
    font-weight: 700;
    margin: 20px 0;
}

.entry-content h2 {
    font-size: 2.625rem; /* 42px */
    line-height: 1.3;
    font-weight: 600;
    margin: 18px 0;
}

.entry-content h3 {
    font-size: 2.25rem; /* 36px */
    line-height: 1.4;
    font-weight: 500;
    margin: 16px 0;
}

.entry-content h4 {
    font-size: 1.875rem; /* 30px */
    line-height: 1.5;
    font-weight: 500;
    margin: 14px 0;
}

.entry-content h5 {
    font-size: 1.5rem; /* 24px */
    line-height: 1.6;
    font-weight: 400;
    margin: 12px 0;
}

.entry-content h6 {
    font-size: 1.25rem; /* 20px */
    line-height: 1.6;
    font-weight: 400;
    margin: 10px 0;
}

/* Paragrafos e links */

.entry-content p {
    font-size: 1.1875rem; /* 19px */
    line-height: 1.6;
    margin-bottom: 16px;
    color: #1f1f1f;
}

.entry-content a {
    color: #2965F1; /* Cor padrão dos links */
    text-decoration: none;
    transition: text-decoration 0.3s ease, color 0.3s ease;
}

.entry-content a:hover {
    text-decoration: underline;
    color: #003f91; /* Cor mais escura no hover */
}

/* Imagens */

/* Ajustes gerais para imagens */
.entry-content img {
    border: 1px solid #eee;
    border-radius: 5px;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
    display: block;
    box-sizing: border-box;
}

/* Especificação para figuras */
.entry-content figure.wp-block-image figcaption.wp-element-caption {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.4;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 20px;
}

/* Listas */

.entry-content ul,
.entry-content ol {
    font-size: 1.1875rem; /* 19px */
    line-height: 1.6;
    margin: 0 0 20px 35px;
    padding-left: 0;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 10px;
}

/* Separador internos */

.wp-block-separator {
    border: none;
    border-top: 1px solid;
}
