.container-noticias {
    width: 1350px;
}

.container-box {
    height: 545px;
    width: 100%;
    background-image: url(https://diadecampouniguacu.com.br/wp-content/uploads/2024/01/111A9421-1-scaled.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
    gap: 150px;
    position: relative;
}

.container-box::before {
    content: '';
    background-color: #0E2E0E;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

.line-banner {
    width: 200px;
    z-index: 2;
    background-color: #E8CB95;
    height: 2px;
}

.container-box h1 {
    color: #ffffff;
    text-align: center;
    font-family: "MADE LIGHT";
    font-size: 80px;
    font-weight: 300;
    z-index: 2;
}

/* ALL NOTICIAS  */

.all-noticias {
    background-color: #013828;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.c-noticias {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.noticia {
    display: flex;
    gap: 40px;
    border-bottom: 2px solid #E8CB95;
    padding-bottom: 30px;
}

.img-noticia {
    border-radius: 32px;
    background-color: #F4F9F4;
    height: 494px;
    width: 50%;
    cursor: pointer;
}

.img-noticia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.info-noticia h3 {
    color: #FFF;
    font-size: 24px;
    font-weight: 300;
    font-family: 'MADE LIGHT';
}

.info-noticia h2 {
    color: #E8CB95;
    font-size: 32px;
    font-weight: 700;
    font-family: 'MADE BOLD';
    padding: 10px 0;
}

.info-noticia p {
    font-size: 24px;
    color: #fff;
    font-family: 'MADE LIGHT';
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.info-noticia > h3 > p {
    font-size: 18px;
    color: #fff;
    font-family: 'MADE LIGHT';
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.info-noticia > h3 > a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 300;
    font-family: 'MADE BOLD';
}

.info-noticia > a {
    border-radius: 16px;
    border: 2px solid #4CA073;
    padding: 18px 21px;
    text-decoration: none;
    color: #4CA073;
    font-size: 16px;
    font-weight: 300;
    font-family: 'MADE LIGHT';
    transition: all .3s ease;
}

.info-noticia > a:hover {
    background: #4CA073;
    transition: all .3s ease;
    color: #013828;
}

.info-noticia {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.pagination a {
    text-decoration: none;
}

.pagination span.page-numbers.current {
    font-family: 'MADE BOLD';
    color: #E8CB95;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 2.4rem;
    position: relative;
    z-index: 55;
    margin: 0 1rem;
}

.pagination a.page-numbers,
.pagination span.page-numbers {
    font-family: 'MADE LIGHT';
    color: #FFFFFF;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 2.4rem;
    letter-spacing: var(--letterSpacing);
    position: relative;
    z-index: 55;
    margin: 0 1rem;
}

@media (max-width: 1500px) {

    .container-noticias {
        width: 1200px;
    }

}

@media (max-width: 1370px) {

    .container-box {
        height: 350px;
    }

    .container-noticias {
        width: 100%;
        margin: 0 50px;
    }

    .container-box h1 {
        font-size: 54px;
    }

    .line-banner {
        width: 120px;
    }

    .info-noticia {
        gap: 10px;
    }

    .img-noticia {
        height: 400px;
    }

    .info-noticia p {
        font-size: 16px;
    }

    .info-noticia h3 {
        font-size: 16px;
    }

    .info-noticia h2 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {

    .container-box {
        gap: 50px;
    }

}

@media (max-width: 891px) {

    .container-noticias {
        margin: 0 20px;
    }

    .container-box {
        height: 323px;
        padding: 0 20px;
    }

    .container-box h1 {
        font-size: 32px;
    }

    .line-banner {
        width: 60px;
    }

    .noticia {
        gap: 30px;
    }

    .img-noticia {
        height: 300px;
    }

}

@media (max-width: 551px) {

    .container-box {
        height: 155px;
        gap: 20px;
    }

    .container-box h1 {
        font-size: 22px;
    }

    .noticia {
        flex-direction: column;
    }

    .info-noticia {
        width: 100%;
    }

    .img-noticia {
        width: 100%;
    }

    .pagination {
        display: flex;
        justify-content: center;
    }

    .pagination a.page-numbers {
        font-size: 1rem;
        margin: 0 0.5rem;
    }

    .pagination span.page-numbers.current {
        font-size: 1.4rem;
        margin: 0 0.5rem;
    }

}