body {
    /* Removendo a imagem de background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Título com sublinhado */
.Section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #006699;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* Layout de colunas */
.Flex-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-top: 20px; /* Mantendo a margem superior de 20px */
}

.Flex-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cartão de notícia */
.News-container {
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px; /* Adicionando margem superior de 20px aos cards das notícias */
}

.News-image img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.News-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.News-content h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #006699;
    margin-bottom: 8px;
    line-height: 1.3;
}

.News-content p {
    font-size: 0.95rem;
    color: #444;
    text-align: justify;
    margin-bottom: 10px;
}

.News-footer {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
}

.News-footer strong {
    color: #333;
}

.Link-more {
    color: #006699;
    font-weight: 600;
    text-decoration: none;
}

/* Responsivo */
@media (max-width: 992px) {
    .Flex-container {
        flex-direction: column;
    }

    .News-container {
        flex-direction: column;
    }

    .News-image img {
        width: 100%;
        height: auto;
    }

    .News-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}