main {
    background-color: white;
}

.noticias {
    width: 100%;
    height: 100%;
}

.noticias .container {
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px;
}

.noticias .container::after {
    content: none;
}

.noticias .container .esq {
    width: 100%;
    float: left;
    height: auto;
    display: flex;
    flex-direction: column;
}

.noticias .container .esq h2 {
    color: #cd4829;
    font-weight: bolder;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.noticias .container .esq .containerNoticias {
    width: 100%;
    height: auto;
}

.noticias .container .esq .containerNoticias > ul {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.noticias .container .esq .containerNoticias > ul > li {
    margin-bottom: 30px;
}

.noticias .container .esq .containerNoticias > ul > li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}

.noticias .container .esq .containerNoticias > ul > li a:hover {
    opacity: .7;
}

.noticias .container .esq .containerNoticias > ul > li a .fotoCapa {
    background: url(../../img/nucleo/notfound.png) center / cover no-repeat;
    width: 345px;
    height: 220px;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia {
    width: calc(100% - 345px);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .categoria {
    color: #ff794c;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.143rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .data {
    color: #A9ABAE;
    margin-bottom: 20px;
    font-size: 1rem;
    width: 100%;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .text {
    color: #ff794c;
    font-size: 2rem;
    width: 100%;
}

@media all and (max-width: 999px) {

    main{
        width: 100%;
        background-color: unset;
    }

    .noticias{
        background-color: white;
    }

    .noticias .container {
        width: 100%;
        flex-direction: column;
        padding: 30px 10px;
        margin-top: 30px;
    }

    .noticias .container .esq {
        width: 100%;
    }

    .noticias .container .esq .containerNoticias > ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .noticias .container .esq .containerNoticias > ul > li {
        width: 100%;
    }

    .noticias .container .dir {
        width: 100%;
    }

    .noticias .container .esq .paginacao a li {
        display: none;
    }

    .noticias .container .esq .containerNoticias > ul > li a .fotoCapa {
        width: 140px;
        height: 100%;
    }

    .noticias .container .esq .containerNoticias > ul > li a .descNoticia {
        width: calc(100% - 140px);
        overflow: hidden;
    }

}