#noticias {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 12rem;
    padding-bottom: 12rem;
    background: #f9f9f9;
}

.carrossel-container {
    position: relative;
    overflow: hidden;
}

.carrossel-slide {
    display: none;
    animation: fade 0.5s ease-in-out;
}

    .carrossel-slide.ativo {
        display: block;
    }

.noticia-destaque {
    width: 100%;
    margin-bottom: 1rem;
}

    .noticia-destaque h3 {
        font-size: 20px;
        padding: 5px;
        font-weight: bold;
        color: #1e3a8a;
        margin-bottom: 0;
    }

    .noticia-destaque p {
        padding-left: 10px;
        font-size: 15px
    }

    .noticia-destaque img {
        width: 100%;
        height: 100%;
        max-height: 415px; /* ajuste aqui como quiser */
        object-fit: cover;
        border-radius: 8px;
    }

.noticias-secundarias {
    display: flex;
    gap: 1rem;
}

.noticia {
    flex: 1;
    background: #fff;
    padding: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    text-align: center;
}

    .noticia img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 6px;
    }

    .noticia h4 {
        font-size: 15px;
        padding-top: 7px;
        font-weight: bold;
        color: #1e3a8a;
    }

.carrossel-controles {
    margin-top: 1rem;
    text-align: center;
}

    .carrossel-controles button {
        padding: 0.5rem 1rem;
        margin: 0 0.5rem;
        font-size: 1.2rem;
        cursor: pointer;
        background: #333;
        color: #fff;
        border: none;
        border-radius: 4px;
    }

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
