/* ===== CARDS DE NOTÍCIA ===== */
.noticia-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.noticia-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.noticia-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.noticia-body {
    padding: 20px;
}

.noticia-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.noticia-date {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 12px;
}

.btn-saber-mais {
    border: 2px solid #111;
    color: #111;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 24px;
    transition: all 0.3s;
}

.btn-saber-mais:hover {
    background-color: #111;
    color: #fff;
}
