.secao-principal-blog {
    margin-bottom: 30px;
    height: 350px;

    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;

    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    
}

.secao-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 150px;
}

.post {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    
    
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.post-imagem img {
    width: 100%;
    height: 200px;
    background-color: #e0e6f5;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #387190;
    font-size: 14px;
    font-weight: 600;
}

/* Caso a imagem não carregue ou seja um placeholder */
.post-imagem::after {
    content: "Imagem do Artigo";
    opacity: 0.5;
}

.post-conteudo {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-data-autor{
    font-size: 12px;
    color: #626262a7;
    margin-top: 0;
}

.post-tag {
    background-color: #8becdc;
    color: #214e6c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 15px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.post-titulo {
    font-size: 20px;
    font-weight: 700;
    color: #214e6c;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
    font-family: "Merriweather", serif;
}

.post-titulo:hover {
    color: #3298ad;
}

.post-resumo {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.post-link {
    color: #42aa99;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: gap 0.2s ease;
}

.post-link::after {
    content: "→";
    margin-left: 5px;
    font-size: 18px;
    transition: margin-left 0.2s ease;
}

.post-link:hover::after {
    margin-left: 10px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .secao-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .secao-posts {
        grid-template-columns: 1fr;
    }
}