/* === Blog Section === */
.blog-section {
    padding: 20px 8px;
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    color: #333;
}

.blog-section .container {
    max-width: 1000px;
    margin: auto;
    padding: 0 0px;
}

/* Títulos do Blog */
.blog-section .blog-title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #004aad; /* Azul institucional */
    font-weight: 700;
}

.blog-section .blog-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Grid de Posts */
.blog-section .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

/* Card */
.blog-section .blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-section .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Thumbnail */
.blog-section .blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* Conteúdo */
.blog-section .blog-content {
    padding: 20px;
}

.blog-section .blog-content h2 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #004aad;
    line-height: 1.4;
}

.blog-section .blog-content h2 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.blog-section .blog-content h2 a:hover {
    color: #0066cc;
}

.blog-section .blog-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 12px;
}

.blog-section .blog-content p {
    color: #444;
    line-height: 1.6;
}

/* Botão Leia Mais */
.blog-section .btn-leia-mais {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 18px;
    background: #004aad;
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s;
}

.blog-section .btn-leia-mais:hover {
    background: #0066cc;
}

/* Responsividade */
@media (max-width: 768px) {
    .blog-section .blog-title {
        font-size: 1.8rem;
    }
    .blog-section .blog-thumb {
        height: 405px;
    }
}
