.news{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.news__title{
    width: 90%;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.news__info{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    opacity: .5;
}

.news__div{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    justify-content: center;
}

.news__img{
    width: 100%;
    height: 250px;
}

.news__img-file{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news__text{
    margin-top: 10px;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
}

.text2{
    margin-top: 40px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .news{
        margin-top: 80px;
    }
    
    .news__title{
        width: 75%;
        font-size: 3rem;
    }
    
    .news__info{
        flex-direction: row;
        width: 60%;
    }

    .news__div{
        width: 60%;
    }

    .text2{
        width: 60%;
        margin-top: 40px;
    }

    .navegacao__lista a:nth-child(3){
        border-bottom: 2px solid white;
    }
}

@media screen and (min-width: 1024px) {
    .news__info{
        width: 40%;
    }

    .news__div{
        flex-direction: row;
        width: 100%;
    }
    
    .news__img{
        width: 40%;
    }
    
    .news__text{
        margin-left: 40px;
        margin-top: 0;
        width: 40%;
        font-size: 1.3rem;
    }

    .text2{
        width: 100%;
        margin-top: 40px;
    }

    .rodape{
        height: 70px;
    }
}