/* Estilo Geral */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
   background-color: #000;
   height: 100vh;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.flex{
    display: flex;
}

.btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #B69065;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}


.btn-Faleconosco button{
    padding: 10px 40px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    background-color: #B69065;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.btn-Faleconosco button a{
    text-decoration: none;
    text-align: none;
    color: #000;
}

h2.titulo{
    color: #fff;
    font-size: 38px;
    text-align: center;
    line-height: 35px;
}

button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 4px #B69065;
    transform: scale(1.05);
}


/* Estilo do Cabeçalho */
header{
    padding: 40px 4%;

}

header >.interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img{
    width: 100%;
    height: 90px;
} 

header a{
    color: #302e2e;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header nav ul li a{
    display: block;
}

header nav ul li a:hover{
    color: #fff;
}

header nav .menu-desktop a:hover{
    color: #fff;
    transform: scale(1.05);
}

header nav ul{
   list-style-type: none; 
}

header nav.menu-desktop ul li{
    display: inline-block;
    padding: 0 40px;
}



/* Estilo do Menu mobile */
.btn-abrir-menu{
   display: none;
}
.btn-abrir-menu i{
    color: #B69065;
    font-size: 40px;
}
.menu-mobile{
   background-color: #000;
   height: 100vh; 
   position: fixed;
   top: 0;
   right: 0;
   z-index: 99999;
   width: 0%;
   overflow: hidden;
   transition: .5s;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}

.menu-mobile .btn-fechar{
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i{
    color: #B69065;
    font-size: 30px;
}

.menu-mobile nav ul{
    text-align: right;
}

.menu-mobile nav ul li a{
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    padding: 20px 8%;
    display: block;
}

.menu-mobile nav ul li a:hover{
    background-color: #B69065;
    color: #000;
}

.overlay-menu{
    background-color: #000000df;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 88888;
    display: none;
}

/* Estilo do topo do site */
section.topo-do-site{
    padding: 40px 4%;
}

section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}


.topo-do-site h4{
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
}

.topo-do-site span{
    font-size: 30px;
    color: #B69065;
    font-weight: 700;
}

.topo-do-site h2{
    color: #B69065;
    margin: 40px 0;
}

.topo-do-site .txt-topo-site p{
    color: #fff;
    margin: 40px 0;
    font-weight: 500;
}

.video-topo-site iframe{
    width: 500px;
    height: 400px;
    position: relative;
    border-radius: 10px;
}

/* Estilo de como-funciona */

section.como-funciona{
   padding: 40px 4%;
}

section.como-funciona .flex{
    gap: 40px;
    justify-content: center;
}

h4.subtitulo{
    color: #B69065;
    font-size: 20px;
    text-align: center;
    margin: 15px 0;
}


.como-funciona .como-funciona-box{
    color: #000;
    padding: 35px;
    border-radius: 20px;
    background-color: #fff;
    /* border: 1px solid #ffffff81; */
    margin-top: 45px;
    transition: .2s;
}

.como-funciona .como-funciona-box img{
    align-items: center;
}

.como-funciona .como-funciona-box:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #ffffff78;
}

.como-funciona .como-funciona-box h3{
    font-size: 20px;
    margin: 15px 0;
}

.como-funciona .como-funciona-box p{
    font-size: 15px;
    font-weight: 500;
}

/* Estilo de como ajudar */

section.como-ajudar{
    padding: 40px 4%;
}

section.como-ajudar .flex{
    gap: 40px;
    justify-content: center;
    display: block;
}

.como-ajudar .como-ajudar-box{
    color: #000;
    padding: 35px;
    border-radius: 20px;
    background-color: #fff;
    /* border: 1px solid #ffffff81; */
    margin-top: 45px;
    transition: .2s;
}


.como-ajudar .como-ajudar-box:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #ffffff78;
}

.como-ajudar .como-ajudar-box h3{
    font-size: 15px;
    margin: 15px 0;
}

.como-ajudar .como-ajudar-box p{
    font-size: 15px;
    text-align: center;
    font-weight: 600;
}

.como-ajudar .como-ajudar-box i{
    font-size: 20px;
    font-weight: 600;
}

.como-ajudar .como-ajudar-box button{
    padding: 10px 40px;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    background-color: #B69065;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.como-ajudar .como-ajudar-box a{
    color: #000;
    text-decoration: none;
    text-align: none;
}


 

/* Estilo do sobre */

section.sobre{
    padding: 80px 4%;
}

section.sobre .flex{
    align-items: center;
    gap: 60px;
}

.sobre .img-sobre img{
    border-radius: 30px;
}

.sobre .img-sobre img:hover{
    transform: scale(1.05);
    transition: .2s;
}

.sobre .txt-sobre{
    color: #fff;
}

.sobre .txt-sobre h2{
    font-size: 38px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre p span{
    color: #B69065;
    font-weight: 700;
}

.sobre .txt-sobre p{
    margin: 20px 0;
    /* text-align: justify; */
    font-size: 20px;
}

.btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #B69065;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

.btn-social a button i{
    text-decoration: none;
    text-align: none;
    color: #000;
}

/* Estilo do formulário de contato */

section.formulario{
    padding: 80px 4%;
}

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}

form input, form textarea{
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #fff;
    font-size: 18px;
}

form textarea{
    resize: none;
    max-height: 200px;
}

form .btn-enviar{
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input{
    width: 300px;
    background-color: #B69065;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

/* Estilo do footer */

footer{
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;

}

footer .flex{
    justify-content: space-between;
}

footer .line-footer{
    padding: 20px 0;
}

.borda{
    border-top: 1px solid #B69065;
}

footer .logo-footer img{
    width: 100%;
    height: 90px;
}

footer .line-footer p i{
    color: #B69065;
    font-size: 14px;
}

footer .line-footer p a{
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

footer .line-footer a{
    color: #fff;
    margin: 10px;
}


@media screen and (max-width: 1020px){
    /* Classes Gerais */
    .flex{
        flex-direction: column;
    }

    .topo-do-site .flex{
        flex-direction: column-reverse;
    }

    .topo-do-site .txt-topo-site p{
        font-weight: 500;
        font-size: 19px;
        text-align: justify; 
    }

    h2.titulo{
        font-size: 34px;
        line-height: 45px;
    }

    /* Estilo do Cabeçalho */
    .menu-desktop, .btn-contato{
        display: none;
    }

    .btn-Faleconosco{
        text-align: center;
    }

    .btn-Faleconosco a{
        text-decoration: none;
        text-align: none;
    }

    .btn-Faleconosco a i{
        text-decoration: none;
        text-align: none;
        color: #000;
    }

    .btn-abrir-menu{
        display: block;
    }

    /* Header */
    header .logo img{
        width: 180px;
        height: 90px;
    } 

    /* Topo do site */
    section.topo-do-site .flex{
        gap: 40px;
    }

    section.topo-do-site{
        padding: 20px 8%;
    }

    .topo-do-site h4{
        font-size: 28px;
    }

    .video-topo-site iframe{
        width: 100%;
        height: 200px;
    }


    /* Como funciona */
    section.como-funciona{
        padding: 40px 8%;
     }

     .como-funciona .como-funciona-box p{
        font-size: 17px;
        font-weight: 500;
    }

    /* Como ajudar */
    .como-ajudar .como-ajudar-box p{
        font-size: 16px;
        font-weight: 600;
    }

    .como-ajudar-box button{
        width: 250px;
        height: 100px;
    }

     /* Sobre */
     section.sobre{
        padding: 80px 8%;
    }

    .sobre .txt-sobre h2{
        font-size: 34px;
        line-height: 35px;
        text-align: center;
    }

    .sobre .txt-sobre p{
        text-align: justify;
    }

    .btn-social{
        text-align: center;
    }

    .btn-social a button i{ 
        text-decoration: none;
        text-align: none;
        color: #000;  
    }

    .img-sobre img{
        width: 100%;
    }

    
    /* Footer */
    footer .flex{
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer{
        text-align: center;
    }

    .logo-footer img{
        width: 100%;
        max-width: 300px;
    }

    footer .line-footer p i{
        font-size: 15px;
    }
    
    footer .line-footer p a{
        font-size: 15px;
    }
}
