
/* ESTILO */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background-color: black;
    height: 100vh;
}

.interface{
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 4%;
}

.flex{
    display: flex;
}

.btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #9b15ce, #ff00ff);
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

button:hover{
    box-shadow: 0px 0px 50px #9a15ce8c ;
    transform: scale(1.15);
}

h2.titulo{
    color: #fff;
    font-size: 40px;
    text-align: center;
}
h2.titulo span{
    color: #9b15ce;
}
/* ESTILO DO CABEÇALHO */
header{
    padding: 40px 4%;
}

header > .interface{
    display:flex;
    align-items: center;
    justify-content: space-between;
}
.menu-central {
    flex: 1;
    display: flex;
    justify-content: center;
}

header a{
    color: #7e7e7e;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}
header a:hover{
    color: #fff;
    transform: scale(1.15);
}

header nav ul{
    list-style-type: none;
    display: flex;
    gap: 40px; /* Define o espaçamento entre os itens do menu */
    padding: 0;
}

header nav ul li{
    display: inline-block;
    padding: 0 40px;
}




/* ESTILO 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 h1{
    color: #ffffff;
    font-size: 38px;
    line-height: 40px;
}
.topo-do-site h1 span{
    color: #9b15ce;
}
.topo-do-site .txt-topo-site p{
    color: #fff;
    margin: 40px 0px;
}
.topo-do-site .img-topo-site{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}


@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

/* ESTILO DAS ESPECIALIDADES */
section.especialidades{
    padding: 80px 4%;
}
section.especialidades .flex{
    gap: 60px;
 
}

.especialidades .especialidades-box{
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
}
.especialidades .especialidades-box:hover{
    transform: scale(1.15);
    box-shadow: 0 0 20px #ffffff69;
}
.especialidades .especialidades-box i{
    font-size: 70px;
    color: #9b15ce;
}
.especialidades .especialidades-box h3{
    font-size: 28px;
    margin: 15px 0px;
}

/* ESTILO SOBRE  */

section.sobre{
    padding: 40px 4%;
}

section.sobre .flex{
    align-items: center;
    gap: 60px;
}

section.sobre .flex .img-sobre{
    width: 100%;
    
    border: none;
    
}

.sobre .txt-sobre{
    color: #fff;
}

.sobre .txt-sobre h2{
    font-size: 42px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre h2 span{
    color: #9b15ce;
    display: block;
}

.sobre .txt-sobre p{
    margin: 20px 0;
    text-align: justify;
}
.btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: none;
    background-color: #9b15ce;
    font-size: 22px;
    cursor: pointer;
    margin: 0 8px;
    transition: .2s;
}

/* ESTILO DOS PROJETOS */

section.portfolio{
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff10;
    margin-top: 40px;
    margin-bottom: 50px;
}

section.portfolio .flex{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
}

.img-port{
    width: 100%;
    height: 460px;
    background-size: cover;
    background-position: 50%;
    cursor: pointer;
    border-radius: 40px;
    margin-top: 40px;
    transition: .2s ease-out;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}
.img-port.visible{
    opacity: 1;
    transform: translateY(0);
}

.img-port:hover{
    transform: scale(1.10);
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000d5;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    opacity: 0;
    transition: .2s;
}
.overlay:hover{
    opacity: 1;
}

.extra-project {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-out;
    width: 100%;
    transition: .2s;
    
}
.extra-project.fade-in {
    opacity: 1;
}
.initial-project{
    opacity: 1;
}
.btn-ver-mais{
    text-align: center;
    margin-top: 50px;
}
#ver-mais-btn{
    padding: 10px 20px;
    font-size: 18px;
    background-color: #9b15ce;
    border-radius: 30px;
    border: none;
    color: #000000;
    cursor: pointer;
    font-weight: 700;
    transition: .2s;
}

/* ESTILO RODA PÉ */

footer{
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px #ffffff10;
}
footer .flex{
    justify-content: space-between;

    
}

footer .line-footer{
    padding: 20px 0;
}
.borda{
    border-top: 2px solid #9b15ce;
}

footer .line-footer p i{
    color: #9b15ce;
    font-size: 22px;
}
footer .line-footer p a{
    color: #fff;
}
/* DEPOIMENTOS */

    .depoimentos-titulo{
        color: #9b15ce;
        margin-top: 60px;
        font-size: 30px;
    }
    section.depoimentos .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    }
    .imagens-depoimentos img {
    max-width: 100%;
    height: auto;
}

/* CABEÇALHO */
@media screen and (max-width: 1020px) {

    /* CLASSES GERAIS */
    .flex{
        flex-direction: column;
    }
    .menu-desktop, .btn-contato{
        display: none;
    }

    /* TOPO DO SITE */
    .topo-do-site h1{
        font-size: 30px;
       
    }
}


