.noticias {
    width: 100%;
    height: 100%;
}

.noticias .container {
    background-color: white;
    width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 65px 0 60px;
    justify-content: space-between;
}

.noticias .container::after {
    content: none;
}

.noticias .container .esq {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.noticias .container .esq h2 {
    color: #233c7a;
    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: row;
    flex-wrap: wrap;
}

.noticias .container .esq .containerNoticias > ul > li {
    width: 347px;
    height: auto;
    box-shadow: -1px 6px 6px -5px rgba(0, 0, 0, .6);
    min-height: 200px;
    margin-bottom: 30px;
    margin-right: 29px;
}

.noticias .container .esq .containerNoticias > ul > li:nth-child(3n) {
    margin-right: 0;
}

.noticias .container .esq .containerNoticias > ul > li a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticias .container .esq .containerNoticias > ul > li a:hover {
    opacity: .7;
}

.noticias .container .esq .containerNoticias > ul > li a .fotoCapa {
    background: url(../../img/site/img-noticia.jpg) center / cover no-repeat;
    width: 100%;
    height: 220px;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 20px 30px;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .categoria {
    color: white;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.875rem;
    padding: 5px;
    margin-bottom: 20px;
    background-color: #233c7a;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .titulo {
    font-weight: bolder;
    color: #4D4D4D;
    font-size: 1.063rem;
    margin-bottom: 20px;
    width: 100%;
}

.noticias .container .esq .containerNoticias > ul > li a .descNoticia .text {
    color: #4D4D4D;
    font-size: 0.9375rem;
    width: 100%;
}

.noticias .container .esq .paginacao {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin-bottom: 30px;
}

.noticias .container .esq .paginacao a li {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: #626c7e;
    border: 1px solid #E6E6E6;
    margin: 4px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.noticias .container .esq .paginacao .ultima,
.noticias .container .esq .paginacao .anterior,
.noticias .container .esq .paginacao .proximo,
.noticias .container .esq .paginacao .primeira {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    color: #626c7e;
    background-color: white;
    border: 1px solid #E6E6E6;
    margin: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

.noticias .container .esq .paginacao .ultima:hover,
.noticias .container .esq .paginacao .anterior:hover,
.noticias .container .esq .paginacao .proximo:hover,
.noticias .container .esq .paginacao .primeira:hover {
    background-color: #233c7a;
    color: white;
}

.noticias .container .esq .paginacao a li:hover {
    background-color: #233c7a;
    color: white;
}

.noticias .container .esq .paginacao a .this {
    background-color: #233c7a;
    color: white;
    border: none;
}

@media all and (max-width: 999px) {

    .noticias .container {
        width: 100%;
        flex-direction: column;
        padding: 30px 10px;
    }

    .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%;
        margin-right: 0;
    }

    .noticias .container .esq .paginacao a li {
        display: none;
    }

}