/* CONTAINER */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('/img/png/bg-home.png');
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 800px;
}



/* STYLE BANNER */

.main-banner {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 560px;
    background-color: white;
    margin: 0px auto;
    overflow: hidden;
}

.main-banner img {
    display: flex;
    width: 100%;
    object-fit: cover;
}

/* FIQUE POR DENTRO */

.noticias {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* margin-top: 560px; */
}

.wrapper-noticias {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    height: 550px;
    /* overflow: hidden; */
}

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

.box-noticia {
    width: calc(100vw - 50px);
    max-width: 350px;
    min-height: 430px;
    background-color: white;
    border-radius: 30px 30px 0px 80px;
    margin-bottom: 90px;
    transition: all 0.15s;

    &: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 img {
    width: calc(100vw - 50px);
    max-width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 26px 26px 0px 0px;
}

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

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

.btn-black {
    margin-top: -10px;
    padding: 10px 25px;
}

.btn-black:hover {
    background-color: white;
    color: var(--color-black);
}

/* PROBLEMAS NA CIDADE? - WHATSAPP */

.problemas-zap {
    display: flex;
    margin: 0px auto;
    flex-wrap: wrap;
}

.envio-zap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1100px;
    padding: 340px 10px 0 0;
    /* padding: 340px 150px 0 0; */
    /* margin: 290px 250px 0 0; */
}

.problemas-zap h1 {
    font-family: var(--font-family-bold);
    font-size: 4.5rem;
    line-height: 100%;
}

.problemas-zap p {
    font-family: var(--font-family-bold);
    font-size: 2.5rem;
    line-height: 100%;
    margin-top: -30px;
}

.btn-green {
    display: flex;
    align-items: center;
    /* justify-content: center;  */
    gap: 5px;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    cursor: pointer;
    font-family: var(--font-family-bold);
    font-size: 2rem;
    position: relative
}

.btn-green img {
    width: 35px;
    height: auto;
    display: inline-block;
    transform: translateX(10px);
}

.btn-green:hover {
    background-color: var(--color-green2);
}

/* STYLE CONTATO */

.contato {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 570px;
    padding-bottom: 50px;
    overflow: hidden;
}

.contato-maps .map {
    display: flex;
    width: 500px;
    /* max-width: 675px; */
    height: 425px;
    border-radius: 30px 30px 0 30px;
    border: 0px;
}

.contato-info {
    width: 396px;
    font-family: var(--font-family-bold);
    /* margin-right: 40px; */
    margin-top: -50px;
    /* padding-left: 40px; */

}

.contato-info h3 {
    font-family: var(--font-family-bold);
    font-size: 3rem;
    color: var(--color-menu-hover);
    margin-bottom: -10px;
}

.contato-info p {
    font-size: 1.5rem;
    line-height: 140%;
    color: white;
}

.contato-info p span {
    color: var(--color-menu-hover);
}


.main-banner .desktop {
    display: flex;
}

.main-banner .mobile {
    display: none;
}


/* destaque */
.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;
}

/* destaque */


@media (max-width: 992px) {

    .contato {
        margin-top: 490px;
    }

    .contato-maps .map {
        display: flex;
        width: 455px;
        /* max-width: 675px; */
        height: 425px;
        border-radius: 30px 30px 0 30px;
        border: 0px;
    }
}


@media (max-width: 768px) {

    .container {
        background-image: none;
    }

    .main-banner {
        height: 350px;
    }

    .main-banner img {
        display: flex;
        width: 100%;
        object-fit: cover;
        height: 350px;
    }

    .main-banner .desktop {
        display: none;
    }

    .main-banner .mobile {
        display: flex;
    }

    .noticias {
        width: 100%;
    }

    .noticias h2 {
        padding: 0 20px;
    }


    /* ENVIO WHATSAPP */

    .problemas-zap {
        display: flex;
        margin: 0px auto;
        justify-content: center;
        flex-wrap: wrap;
        background-color: var(--color-white);
        width: 100%;
        margin-top: 50px;
    }

    .envio-zap {
        display: flex;
        flex-direction: column;
        justify-content: center;
        max-width: 768px;
        padding: 30px 10px 70px 0;
    }

    .problemas-zap h1 {
        font-family: var(--font-family-bold);
        font-size: 3rem;
        line-height: 100%;
        text-align: center;
    }

    .problemas-zap p {
        font-family: var(--font-family-bold);
        font-size: 2rem;
        line-height: 100%;
        margin-top: -10px;
        text-align: center;
    }

    .btn-green {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 12px 20px;
        cursor: pointer;
        font-family: var(--font-family-bold);
        font-size: 1.5rem;
    }

    .btn-green img {
        width: 25px;
        height: auto;
        display: inline-block;
        transform: translateX(5px);
    }

    /* ######################### */

    .contato {
        width: 100%;
        background-color: var(--color-red-04);
        margin: 0px auto;
        padding-top: 90px;
    }

    .contato-maps {
        width: 100%;
        padding: 0 20px;
    }

    .contato-maps .map {
        display: flex;
        width: 100%;
        /* max-width: 675px; */
        height: 305px;
        border-radius: 20px 20px 0 20px;
        border: 0px;
    }

    .contato-info {
        width: 396px;
        font-family: var(--font-family-bold);
        /* margin-right: 40px; */
        margin-top: -50px;
        /* padding-left: 40px; */

    }

    .contato-info h3 {
        font-family: var(--font-family-bold);
        font-size: 2rem;
        color: var(--color-menu-hover);
        margin-bottom: -10px;
    }

    .contato-info p {
        font-size: 1rem;
        line-height: 140%;
        color: white;
    }

    .contato-info p span {
        color: var(--color-menu-hover);
    }

}