.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    font-family: 'Varela Round', 'Comfortaa', 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.5rem;           /* Antes: 1.08rem */
    line-height: 1.8;            /* Melhora legibilidade */
    color: #222;
    text-align: justify;
}
.blog-titulo {
    color: #2574a9;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 2.8rem;           /* Antes: 2.1rem */
    font-weight: 700;
    line-height: 1.2;
}
.blog-subtitulo {
    color: #2574a9;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.8rem;           /* Antes: 1.2rem */
    font-weight: 600;
}
.blog-section-title, .blog-faq-title {
    color: #2574a9;
    margin-top: 32px;
    margin-bottom: 12px;
    font-size: 1.8rem;           /* Antes: 1.35rem */
    font-weight: 700;
    border-left: 4px solid #2574a9;
    padding-left: 10px;
    background: #f5fafd;
}
.blog-link, .blog-index a {
    color: #2574a9;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s;
    font-size: 1.17rem;          /* Tornando links mais visíveis */
}
.blog-link:hover, .blog-index a:hover {
    color: #14506b;
}
.blog-lista-principal, .blog-faq-content {
    margin-bottom: 24px;
}
.blog-section {
    margin-bottom: 36px;
}
.blog-conteudo, .blog-faq-content {
    margin-bottom: 16px;
}
.blog-index {
    margin-bottom: 32px;
    background: #f5fafd;
    border-radius: 6px;
    padding: 16px 12px;
    font-size: 1.17rem;          /* Índice maior */
}
.blog-index ol {
    padding-left: 18px;
    margin-bottom: 0;
}
ul, ol {
    padding-left: 22px;
    margin-bottom: 18px;
    font-size: 1.17rem;          /* Listas mais legíveis */
}
li {
    margin-bottom: 8px;
}
.blog-faq {
    margin-bottom: 18px;
    background: #f8fafc;
    border-left: 3px solid #2574a9;
    padding: 12px 14px;
    border-radius: 4px;
    font-size: 1.17rem;          /* FAQ maior */
}
.blog-faq strong {
    display: block;
    margin-bottom: 4px;
    color: #2574a9;
    font-size: 1.4rem;           /* Destaque nas perguntas */
}
@media (max-width: 600px) {
    .blog-post {
        padding: 14px 2vw;
        font-size: 1.6rem;       /* Antes: 1rem, melhor visualização mobile */
    }
    .blog-titulo {
        font-size: 2.4rem;       /* Título maior no mobile */
    }
    .blog-section-title, .blog-faq-title {
        font-size: 1.5rem;       /* Seções maiores no mobile */
    }
    .blog-index {
        padding: 10px 6px;
        font-size: 1.3rem;       /* Índice maior no mobile */
    }
}


