/* PÁGINA PRINCIPAL */
/* ESTILO GERAL */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bebas Neue', sans-serif;
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: #000000;
    height: 100vh;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.btn-contato button{
    padding: 10px 40px;
    font-size: 16px;
    font-weight: 500;
    background-color: #9B5FFF;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.btn-contato button:hover{
    box-shadow: 0px 0px 10px #ffffff;
    transform: scale(1.05);
}

.flex{
    display: flex;
}

h2.titulo{
    color: #fff;
    font-size: 38px;
    text-align: center;
}
h2.titulo span{
    color: #9B5FFF;
}

.btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: #9B5FFF;
    border: 0;
    transition: .2s;
    cursor: pointer;
    margin: 30px 5px;
}

/* ESTILO CABEÇALHO */
header{
    padding: 10px 4%;
    
}

header .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a{
    color: #525252;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header a:hover{
    color: #fff;
    transform: scale(1.10);
}

header nav.menu-desktop ul{
    list-style-type: none;
}

header nav.menu-desktop ul li{
    display: inline-block;
    padding: 0 40px;
}

header .interface .logo{
    cursor: pointer;
}

header .btn-abrir-menu{
    display: none;
}

/* ESTILO DO MENU MOBILE */
.btn-abrir-menu i{
    color: #9B5FFF;
    font-size: 40px;
}

.menu-mobile{
    background-color: rgb(0, 0, 0);
    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: #9B5FFF;
    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 10%;
    display: block;
}

.menu-mobile nav ul li a:hover{
    background-color: #9B5FFF;
    color: #000000;
}

.overlay-menu{
    background-color: #0000007d;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
   
    z-index: 88888;
    display: none;
}

/* ESTILO TOPO DO SITE */
section.topo-do-site{
    padding: 40px 4%;
}

section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.topo-do-site .txt-topo-site h1{
    color:#fff;
    font-size: 40px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 > span{
    color: #9B5FFF;
}

.topo-do-site .txt-topo-site p{
    color: #fff;
    margin: 40px 0;
    justify-content: space-between;
    text-align: justify;
    line-height: 28px;
}

.topo-do-site .img-topo-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
    border-radius: 150px 50px 150px 50px;
}


@keyframes flutuar{
    0%{
        top: 0;
    }

    100%{
        top: 40px;
    }
}

/* ESTILO MEIO DO SITE */
section.meio-do-site{
    padding: 40px 4%;
}

section.meio-do-site .flex{
    gap: 60px;
}

.meio-do-site .txt-box{
    width: 400px;
    color: #fff;
    padding: 50px;
    border-radius: 30px;
    margin-top: 50px;
    transition: .2s;
}

.meio-do-site .txt-box:hover{
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff5f;
}

.meio-do-site .txt-box i{
    font-size: 70px;
    color: #9B5FFF;
}

.meio-do-site .txt-box h3{
    font-size: 26px;
    margin: 15px 0;
}

.meio-do-site .txt-box p{
    font-size: 16px;
    text-align: justify;
}

/* ESTILO DO SOBRE */
section.sobre{
    padding: 100px 4%;
}

section.sobre .flex{
    align-items: center;
    gap: 60px;
}

.sobre .txt-sobre{
    color: #fff;

}

.sobre .txt-sobre h2{
    font-size: 60px;
    line-height: 40px;
    margin-bottom: 40px;
    line-height: 60px;
}

.sobre .txt-sobre h2 span{
    color: #9B5FFF;
    display: block;
}

.sobre .txt-sobre p{
    margin: 20px 0;
    text-align: justify;
}


.sobre .txt-sobre .btn-social button:hover{
    box-shadow: 0px 0px 10px #ffffff;
    transform: scale(1.05);
}

.sobre .txt-sobre .btn-social i{
    font-size: 24px;
}

.img-sobre img{
    border-radius: 20px;
}

/* ESTILO FORMULARIO */
section.fomulario{
    padding: 80px 4%;
}

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

form input, form textarea{
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 20px;
    color: #fff;
}

form input::placeholder, form textarea::placeholder{
    color: #9B5FFF;
}

form textarea{
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 20px;
    color: #fff;
    max-height: 400px;
    resize: none;
}

form .bnt-enviar{
    margin-top: 30px;
    text-align: center;
}

form .bnt-enviar input{
    width: 150px;
    background-color: #9B5FFF;
    color: #000000;
    font-weight: 700;
    cursor: pointer;
    transition: .2s;
}

form .bnt-enviar input:hover{
    box-shadow: 0px 0px 10px #ffffff;
    transform: scale(1.05);
}

/* ESTILO RODAPÉ */

footer{
    padding: 40px 4%;
    margin-top: 40px;
    box-shadow: 0 0 40px 10px #ffffff1d;
}

footer .flex{
    justify-content: space-between;
}

footer .linha-footer{
    padding: 20px 0;
    border-bottom: #9B5FFF;
}

.borda{
    border-top: 2px solid #9B5FFF;
}

footer .linha-footer p i{
    color: #9B5FFF;
    font-size: 25px;
}

footer .linha-footer p a{
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 1020px){

    /* CLASSES GERAIS */

    .flex{
        flex-direction: column;
    }

    .topo-do-site .flex{
        flex-direction: column-reverse;
    }

    h2.titulo{
        font-size: 32px;
    }

    /* CABEÇALHO */
    header .btn-abrir-menu{
        display: flex;
    }

    .menu-desktop, .btn-contato{
        display: none;
    }

    /* TOPO DO SITE */

    section.topo-do-site{
        padding: 20px 8%;
    }

    section.topo-do-site .flex{
        gap: 50px;
    }

    .topo-do-site .txt-topo-site h1{
        font-size: 30px;
    }

    .topo-do-site .img-topo-site img{
        width: 100%;
    }

    /* MEIO DO SITE */

    section.meio-do-site{
        padding: 0 8%;
    }

    section.meio-do-site .flex{
        gap: 0;
    }

    .meio-do-site .txt-box{
        width: 328px;
    }
    /* SOBRE */

    section.sobre{
        padding: 100px 8%;
    }

    .sobre .txt-sobre h2{
        font-size: 35px;
        line-height: 36px;
        text-align: center;
    }

    section.sobre .btn-social{
        text-align: center;
    }

    .img-sobre img{
        width: 98%;
    }

    /* FORMULÁRIO */

    form{
        max-width: 340px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }


    /* FOOTER */

    footer .flex{
        flex-direction: column;
        text-align: center;
    }

    .linha-footer p{
        text-align: center;
    }
}

/* ------------------------------------------------------------------------------------------------------------------------- */