.container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: max-content;
    background-image: url('/img/svg/triangle-red.svg');
    background-repeat: no-repeat;
    background-position: calc(50% + 187px) center;
    background-position-y: bottom;
    background-attachment: local;
    background-size: 1550px;
}


.content-noticias {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: -1148px;
    margin-bottom: 30px;
    position: relative;
}


.default-text {
    max-width: 1100px;
    position: relative;
    padding-bottom: 30px;
    margin-top: 70px;
}

.title-web {
    align-self: center;
    font-size: 3rem;
    color: var(--color-menu-hover);
    position: absolute;
    margin: 400px 860px 0 0;
    line-height: 100%;
    text-align: left;
}

.title-web span {
    color: var(--color-black);
}

.content-noticias>img {
    margin: 347px 0 0 -119px;
}

.wrapper-noticias {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    max-width: 1200px;
    /* margin-bottom: 30px; */
}

.wrapper-noticias a {
    color: var(--color-black);
}

.box-noticia {
    width: 350px;
    min-height: 430px;
    background-color: white;
    border-radius: 30px 30px 0px 80px;
    margin: 0 10px;
    transition: all 0.1s;

    &:hover {
        scale: 102%;
        box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
        -webkit-box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
        -moz-box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
    }
}

.box-noticia .box-thumb {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 30px 30px 0px 0px;
}

.box-noticia h3 {
    padding: 0 30px;
}

.box-noticia p {
    padding: 0 30px 30px;
}

/* STYLE NOTICIA DESTAQUE */

.wrapper-destaque .title-mobile {
    display: none;
    position: absolute;
    text-align: center;
    font-size: 3rem;
    margin-top: -60px;
}

.wrapper-destaque {
    display: flex;
    justify-content: center;
    margin-top: 80px;
}

.wrapper-destaque a {
    color: var(--color-black);
}

.box-noticia-destaque {
    display: flex;
    width: calc(100vw - 50px);
    max-width: 1100px;
    height: 400px;
    background-color: white;
    border-radius: 20px 20px 0px 50px;
    margin-bottom: 20px;
    transition: all 0.1s;

    &:hover {
        scale: 102%;
        box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
        -webkit-box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
        -moz-box-shadow: 1px 1px 15px -1px rgba(0, 0, 0, 0.50);
    }
}

.box-noticia-destaque .box-thumb {
    width: 550px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px 30px 0px 30px;
}

.text-destaque {
    padding: 15px;
}

.box-noticia-destaque h3 {
    font-size: 2.4em;
    padding: 0 30px;
}

.box-noticia-destaque p {
    font-size: 1.2rem;
    padding: 0 30px 30px;
}

.btn-mais-noticias {
    cursor: pointer;
    font-family: var(--font--font-family-semibold);
    font-size: 1.2rem;
    border: 0px;
    background: none;
    color: white;

    &:hover {
        color: var(--color-menu-hover);
    }
}

.btn-mais-noticias::before {
    content: "▼";
    color: var(--color-menu-hover);
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 992px) {

    .wrapper-destaque .title-mobile {
        display: block;
    }

    .title-web {
        display: none;
    }

    .box-noticia-destaque {
        display: flex;
        flex-direction: column;
        width: calc(100vw - 50px);
        height: auto;
        background-color: white;
        border-radius: 20px 20px 0px 50px;
        margin-bottom: 20px;
        /* padding: 0 20px; */
        box-sizing: border-box;
    }

    .box-noticia-destaque .box-thumb {
        width: calc(100vw - 50px);
        height: 400px;
        object-fit: cover;
        object-position: top;
        border-radius: 20px 20px 0px 50px;
    }

    .box-noticia-destaque h3 {
        font-size: 2em;
        padding: 0 10px;
    }

    .box-noticia-destaque p {
        font-size: 1rem;
        padding: 0 10px 10px;
    }
}

@media (max-width: 768px) {
    .content-noticias>img {
        width: 400px;
        margin: 347px 0 0 -95px;
    }

    .box-noticia-destaque .box-thumb {
        width: calc(100vw - 50px);
        max-width: 550px;
        height: 200px;
        object-fit: cover;
        border-radius: 20px 20px 0px 30px;
    }
}