
/*ESTILO GERAL*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    font-family: 'poppins', sans-serif;
    background-color: #010012;
    height: 100vh;
    
}

.btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
   border: none;
   background-color: #3b7fe6;
   color: #fff;
   font-size: 22px;
   cursor: pointer;
   margin: 0 5px;
}

.background, header{
    background-image: url('../images/Crytrad2.png');/* Caminho da imagem */
    background-size: cover; /* Faz a imagem cobrir todo o espaço */
    background-position: center; /* Centraliza a imagem */
    background-repeat: no-repeat ; /* Evita que a imagem se repita */
    height: 100vh; /* Altura de 100% da viewport (opcional) */
    color: rgb(255, 255, 255); /* Cor do texto para contraste (opcional) */
}


.interface{
    
    max-width: 1800px;
    margin: 0 auto;
}

.flex{
    display: flex;
}


.btn-contato button{
    position: absolute;
    top: 70%;
    left: 50%;
    color: #fff;
    padding: 8px 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #3b7fe6;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;

}



button:hover{
    color: #ffffff;
    transform: scale(1.02);
    transition: .2s;
    box-shadow: 0px 0px 5px #3b7fe6;
}

/*ESTILO DO CABEÇALHO*/

.menu-desktop{
    font-family: serif;
}

header{
    padding: 5px 4%;
}

header .interface{
    display:flex;
    align-items:center;
    justify-content: space-between;
}

header a{
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
}

header nav.menu-desktop a:hover{
    color: #ffffff;
    transform: scale(1.05);
    transition: .2s;

}

header nav ul{
    list-style-type: none;
}

header nav.menu-desktop ul li{
    display: inline-block;
    padding:  0 40px;
}

/*estilo menu-mobile*/

.btn-abrir-menu i{
    display: none;
    color: #2263c5;
    font-size: 40px;
}

.menu-mobile{
    display: none;
    background-color: rgb(0, 0, 0);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 0%;
    overflow: hidden;
    transition: .2s;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile .btn-fechar i{
    color: #2263c5;
    font-size: 35px;
}

.menu-mobile .btn-fechar{
    padding: 20px 5%;
}

.menu-mobile nav ul{
    text-align: right;
}

.menu-mobile nav ul li a{
    padding: 20px 8%;
    display: block;

}

.menu-mobile nav ul li a:hover{
    background-color: #2263c5;
    color: #000000;
}

.overlay-menu{
    background-color: #0000009a;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    display: none;

}
 

/* ESTILO DO TOPO DO SITE*/


.btn-novo button{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 2px solid #ffffff; 
    color: #ffffff;
    padding: 1px 5px; 
    cursor: pointer; 
    font-size: 15px; 
    border-radius: 50px;
    top:26%;
    position: absolute;
    left: 50%;
    gap: 10px;
}

section.topo-do-site .flex{
    align-items:normal;
    justify-content:left;
    gap:90px;
}

.topo-do-site h1{
    
    position: absolute;
    top: 32%;
    color: #ffffff;
    font-size: 70px;
    line-height: 80px;
    left: 50%;
    font-weight: 550;
    

}

.topo-do-site span{
    font-weight: 400;
   
}



/* ESTILO DAS ESPECIALIDADES*/



section.especialidades{
    padding: 40px 4%;
    width: 500px 400px;
    padding-bottom: 100px;
}

section.especialidades .flex{
    gap: 70px;
}

.especialidades .especialidades-box {
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
    transition: .2s;
    cursor: pointer;
    position: relative;
    color: #ffffff;
    border-color: #3835c9;
    border: 1px  #3835c9;
   
}

.especialidades .especialidades-box::before{
    border-radius: 20px;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all .5s ease;
}

.especialidades .especialidades-box:hover:before{
    width: 100%;
}

.especialidades .especialidades-box:hover{

    transform: scale(1.05);
    box-shadow: 0 0 20px #3b7fe6;
    color: #ffffff;
    
}

.especialidades .especialidades-box i{
    font-size: 70px;
    color:#3b7fe6 ;
    transition: all .5s ease;
    
}



.especialidades .especialidades-box h3{
    font-size: 30px;
    margin: 15px 0;
}

.especialidades .especialidades-box p{
    font-size: 20px;
}

/*sobre*/

/*TESTE TRANSIÇÃO*/ 

.sobre{
    display: flex;
}

.boxdv{
    
    margin-top: 60px;
    margin-right: 20px;
    align-items: center;
}

.sobre .box{
    
    color: #fff;
    width: 800px;
    background:transparent;
    border: 1px solid #3b7fe6;
    padding: 50px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    max-height: 178px; /* Define um tamanho inicial pequeno */
    transition: max-height 0.5s ease-in-out;
    position: relative;
}


.sobre .box.expanded{
    max-height: 600px; /* Altura suficiente para exibir o conteúdo */
}

.toggle-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 20px;
    background: transparent;
    border: 1px solid #1e90ff;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn:hover {
    background: #1e90ff;
}

.box h3{
    font-size: 35px;
    font-weight: 500;
}

.box p{
    font-size: 20px;
}




.sobre  h2{
    text-align: center;
    font-size: 70px;
    line-height: 100px;
    font-weight: 450;
    color: #fff;
}

.sobre  span{
    font-weight: 350;
}







/* ESTILO DO PORTFÓLIO*/


.portifolio h2{
    color: #fff;
    font-size: 70px;
    line-height: 100px;
    padding: 30px;
    font-weight: 450;
    text-align: center;
}

.portifolio span{
    font-weight: 350;
}

section.portifolio{
    padding: 80px 4%;
    box-shadow: 0 -1px 0 #010012;

        
}


section.portifolio .flex{
    justify-content: space-around;
}

.img-port{
    background-image: url(../images/Avante.png);
    margin-right: 70px;
    width: 370px;
    height: 500px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 4s;
    cursor: pointer;
    border-radius: 35px;
    position: relative;
    top: 100px;
}
.tituloh3{
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.img-port2{
    background-image: url(../images/lexus.jpg);
    margin-right: 70px;
    width: 370px;
    height: 500px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 4s;
    cursor: pointer;
    border-radius: 35px;
    position: relative;
}

.img-port3{
    background-image: url(../images/luma.jpg);
    margin-right: 70px;
    width: 370px;
    height: 500px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 4s;
    cursor: pointer;
    border-radius: 35px;
    position: relative;
    top: 100px;
}

.img-port4{
    background-color: hsl(0, 0%, 100%);
    margin-right: 70px;
    width: 370px;
    height: 500px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 4s;
    cursor: pointer;
    border-radius: 35px;
    position: relative;
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    opacity: 0;
    transition: .5s;
    border: 1px solid #fff;
     
}



.overlay:hover{
    opacity: 1;
}



/* titulo do depoi*/

.title-depoi h2{
    margin-top: 120px;
    color: #fff;
    font-size: 70px;
    font-weight: 350;
    text-align: center;
    line-height: 100px;
}
.title-depoi span{
    font-weight: 450;
}

/* comentarios*/

.depoimentos .slide{
    cursor: grab;
    padding: 40px 60px;
}

.depoimentos .slide:active{
    cursor: grabbing;
}



.depoimentos{
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    
    max-width: 1500px;
}


.depoimentos .depoimentos-conteiner{
    margin-top: 10px;
}

.slide .person{
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide .person img{
    width: 150px;
    height: 150px;

}

.slide .person p.nome-person{
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}
.slide .person p.func-person{
    font-size: 18px;
    color: #fff;
}


.depoimentos p.depoi-txt{
    font-size: 26px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 35px;
}

/* ESTILO DO RODAPÉ */



footer{
    padding: 40px 4%;
    box-shadow: 0 -1px 0 #010012;


}

footer .logo-footer img{
    width: 350px;

}

footer .flex{
    justify-content: space-between;
}

footer .line-footer{
    padding: 25px 0;
    color: #fff;
}

.line-footer p{
    color: #fff;
}

.borda{
    border-top: 2px solid #2263c5;
}



footer .line-footer p {
    text-align: center;
}

footer .line-footer p a{
    color: #fff;
}





@media screen and (max-width: 768px){

    /*gerais*/
    .flex{
        width: 100%;
        flex-direction: column;
    }

    .background, header{
        background-image: url(../images/Loyoutsozinho1.png);/* Caminho da imagem */
        background-size: cover; /* Faz a imagem cobrir todo o espaço */
        background-position: center; /* Centraliza a imagem */
        background-repeat: no-repeat ; /* Evita que a imagem se repita */
        height: 100vh; /* Altura de 100% da viewport (opcional) */
        color: rgb(255, 255, 255); /* Cor do texto para contraste (opcional) */
    }

    /*cabeçalh0*/
    

    .menu-desktop{
        display: none;
    }
    
    .logo img{
        width: 220px;
    }

    /*topo do site*/

    .btn-abrir-menu i{
        display: block;
    }

    .menu-mobile{
        display: block;
    }

    .topo-do-site h1{
        top: 33%;
        color: #ffffff;
        font-size: 40px;
        line-height: 40px;
        left: 30%;
        font-weight: 550;
        
    
    }

    .btn-novo button{
       display: none;
        
    }

    .btn-contato button{
        
        top: 73%;
        left: 30%;
        color: #fff;
        padding: 10px 40px;
        font-size: 14px;
        font-weight: 600;
        background-color: #3b7fe6;
      
    
    }

    /*sobre*/

    .sobre{
        padding: 10px;
       
    }

    .boxdv{
        margin-top: 10px;
        margin-right: 10px;
        align-items: center;
    }

    .sobre .box{
        width: 380px;
        border: 1px solid #3b7fe6;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 15px;
        max-height: 90px; /* Define um tamanho inicial pequeno */
    }

   

    .toggle-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 20px;
        height: 25px;
        bottom: 30px;
        right: 10px;
        padding: 10px 15px;
        font-size: 15px;
    }   


    .box h3{
        font-size: 20px;
        font-weight: 500;
    }
    
    .box p{
        font-size: 12px;
    }

    .sobre  h2{
        padding: 10px;
        font-size: 38px;
        line-height: 40px;
        margin-bottom: 25px;

    }

    /*portifolio*/

    .portifolio h2{
        font-size: 38px;
        line-height: 40px;
        padding: 1px;
    }

    section.portifolio{
        padding: 80px 4%;
        box-shadow: 0 0 40px 10px #ffffff21;
        background-color: #000000;
            
    }

    .img-port{
        background-image: url(../images/Avante.png);
        margin-right: 70px;
        width: 370px;
        height: 500px;
        top: 70px;
        margin-right: 50px;
    }
    
    
    .img-port2{
        background-image: url(../images/PowerFit.png);
        margin-right: 70px;
        width: 370px;
        height: 500px;
       
        top: 120px;
    }
    
    .img-port3{
        background-image: url(../images/Peludinos.png);
        margin-right: 70px;
        width: 370px;
        height: 500px;
       
        top: 170px;
    }


    /*comentarios*/

    .title-depoi h2{
        padding: 25px;
        font-size: 38px;
        line-height: 36px;
        
    }

    .slide .person p.nome-person{
        color: #fff;
        font-size: 15px;
        font-weight: 600;
    }

    .depoimentos p.depoi-txt{
    font-size: 21px;
    margin-bottom: 10px;
}

    .slide .person p.func-person{
        font-size: 12px;
        color: #fff;
    }

    .slide .person img{
        width: 80px;
        height: 80px;
    
    }



    .depoimentos{
        width: 100%;
        margin: 0 auto;
        padding: 20px 5px;
        position: relative;
        overflow: hidden;
        
        max-width: 1000px;
    }

     /*footer*/

    .btn-social{
        display: flex;
        justify-content: center;
    }

    .btn-social button{
        
       width: 38px;
       height: 38px;
       border-radius: 50%;
       border: none;
       background-color: #3b7fe6;
       color: #fff;
       font-size: 14px;
       cursor: pointer;
       margin: 0 5px;
       
    }
    footer .logo-footer img{
        
        width: 300px;
    
    }
    footer .logo-footer{
        display: flex;
        justify-content: center;

    }

    footer .line-footer p a{
        
        color: #fff;
        font-size: 8px;
    }

     

}
