﻿/* ============================= */
/* NOVA AULA DE SLIDE COM BOTOES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #F7F0E8; /*#e3e3e3*/
    /* height: 900vh; */
}

.interface {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}


/* Estilo das Vantagens */
section.vantagens {
    padding: 0px 100px;
}

.vantagens .itens-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    margin-bottom: 60px;
}

    .vantagens .itens-container .img-itens img {
        max-width: 100%;
    }

    .vantagens .itens-container .txt-itens h1 {
        margin-bottom: 0px;
        margin-left: 20px;
    }

    .vantagens .itens-container .txt-itens h2 {
        margin-bottom: 0px;
        margin-left: 20px;
        text-align: justify;
    }

.itens-container .txt-itens p {
    margin-left: 20px;
    margin-bottom: 15px;
    line-height: 10px;
}

/* #btn-whats{
    margin-left: 20px;
    margin-bottom: 10px;
    line-height: 10px;
    height: 100%;
} */

/* Estilo dos Botões de Contato */
.txt-contato, .icons-contato {
    margin-top: 20px;
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.btnvolta {
    margin-top: -10px;
}


.contato .icons-contato a {
    text-decoration: none;
}

.contato .icons-contato p {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.contato .icons-contato button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 250px;
    height: 50px;
    margin: 0 auto 20px auto; /*cima, direita, baixo, esquerdo*/
    padding: 0 20px;
    background-color: transparent;
    border: 2px solid #000;
    cursor: pointer;
    transition: .5s;
}

    .contato .icons-contato button i {
        font-size: 20px;
    }

    .contato .icons-contato button:hover {
        background-color: #351a1abe;
    }

        .contato .icons-contato button:hover i, .contato .icons-contato button:hover p {
            color: #fff;
        }

/* SLIDER */
.container-slider {
    display: flex;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.container-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
}

.slider {
    opacity: 0;
    transition: opacity .2s;
    position: absolute;
    width: 100%;
    border-radius: 20px;
}

.on {
    opacity: 1;
}

#prev-button, #next-button {
    width: 30px;
    height: 30px;
    border: none;
    margin: -60px; /* distancia dos btns em relação a imagem */
    background-color: transparent;
    cursor: pointer;
    z-index: 9999;
}

    #prev-button img, #next-button img {
        width: 100%;
        height: 100%;
    }

#prev-button {
    transform: rotate(180deg);
}

/*responsavel por config para MOBILE!!!*/
@media screen and (max-width: 900px) {
    .vantagens .itens-container .img-itens img {
        margin-bottom: 40px;
    }

    .vantagens .itens-container .txt-itens h1 {
        margin-bottom: 0px;
        margin-left: -70px;
        text-align: initial;
    }

    .vantagens .itens-container .txt-itens h2 {
        margin-bottom: 0px;
        margin-left: -70px;
        text-align: initial;
    }

    .itens-container .txt-itens p {
        margin-bottom: 0px;
        margin-left: -70px;
        line-height: 5px;
        text-align: initial;
    }

    .contato .icons-contato p {
        margin-top: 20px;
    }
}
