:root {
    --primary-color: #01eeff;
  }

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


.logo img{
    max-width: 200px;
}

html{
    scroll-behavior: smooth;
}

body {
    background-color: black;
    height: 100vh;
}

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

.flex {
    display: flex;
}

/* ESTILO DO CABEÇALHO */
header {
    padding: 40px 4%;
}

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

}

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



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 22px !important;
}

.btn-contato button {
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: .8s;
}

h2.titulo {
    color: #FFF;
    font-size: 34px;
    text-align: center;
}

h2.titulo span {
    color: var(--primary-color);
}

button:hover {
    box-shadow: 0px 0px 8px var(--primary-color);
    transform: scale(1.05);
}


/* Estilo do menu mobile*/

.btn-abrir-menu i{
    color: var(--primary-color);
    font-size: 45px;
    display: none;
    cursor: pointer;
}

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

.menu-mobile{
    background: #000000e2;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    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: var(--primary-color);
    font-size: 40px;

}

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

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

.menu-mobile nav ul li a:hover{
    background-color: var(--primary-color);
    color: #000;
}

/*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 h1 {
    color: #FFF;
    font-size: 42px;
    font-weight: 700;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span {
    color: var(--primary-color);
}



.topo-do-site .img-topo-site img {
    width: 400px; /* Ajuste o valor conforme necessário */
    padding: 0% 0%;
} 


.topo-do-site .txt-topo-site p {
    color: #FFF;
    margin: 40px 0;
}

@keyframes flutuar {
    0% {
        top: 0;
    }

    100% {
        top: 20px;
    }
}

.topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}



/*Estilo das especialidades*/

section.especialidades {
    padding: 40px 4%;
}

section.especialidades .flex {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.especialidades .especialidades-box {
    flex: 1;
    color: #FFF;
    padding: 40px;
    margin-top: 45px;
    border-radius: 20px;
    transition: 0.3s;
    box-sizing: border-box;
}

.especialidades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #ffffff3c;
}

.especialidades .especialidades-box i {
    font-size: 70px;
    color: var(--primary-color);
}

.especialidades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
}

.btn-contato-curriculo button{

    display: none;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
    transition: .8s;
}



/* Sobre */
section.sobre {
    padding: 40px 4%;
}

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

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

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

.sobre .txt-sobre h2 span {
    color: var(--primary-color);
    display: block;
}

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

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

.btn-social button {
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: var(--primary-color);
    font-size: 23px;
    cursor: pointer;
    margin: 0 5px;
    transition: .4s;
}

/* ESTILO DE PORTFOLIO */

section.portfolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #ffffff17;
}

section.portfolio .flex {
    margin-top: 60px;
    justify-content: space-around;
}

.img-port {
    width: 360px;
    margin: 0 5px;
    height: 460px;
    background-size: cover;
    background-position: 100% 0%;
    transition: 7s;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
}

.img-port:hover {
    background-position: 100% 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0000005e;
    border-radius: 40px;
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 24px;
    color: #FFF;
    font-weight: 600;
    opacity: 0;
    transition: .6s;
}

.overlay:hover {
    opacity: 1;
}


      /*PORTFOLIO*/
/* WEB */

section.web{
    margin-top: 80px;
}

.swiper-web {
    width: 100%;
    height: 70vh;
    color:white;
  }


  .swiper-app .titulo{
    margin-top: 30px;
  }

.img-web{
    margin-top: 152px;
    /* Ajuste conforme necessário */
    width: 45%;
    border-radius: 50px;
  }

  h2.titulo-web {
    color: #FFF;
    font-size: 34px;
    margin-bottom: -50px;
    text-align: center;
}

  h2.titulo-web span {
    color: var(--primary-color);
    font-size: 34px;
}



/*APPS*/

section.app{
    margin-top: 120px;
}

.swiper-app {
    width: 100%;
    height: 90vh;
    color:white;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  


  .img-app{
    margin-top: 0px;
    /* Ajuste conforme necessário */
    width: 200px;
    border-radius: 15%;
  }

  .swiper-button-prev, .swiper-button-next{
    color: var(--primary-color);
  }

  h2.titulo-app {
    color: #FFF;
    font-size: 34px;
    margin-bottom: -50px;
    text-align: center;
}

  h2.titulo-app span {
    color: var(--primary-color);
    font-size: 34px;
}

  .swiper-app .swiper-slide p{
    max-width: 90%;
  }

  
.btn-verapp {

    color: black;
    margin-top: 10px;
    padding: 5px 20px;
    font-size: 15px;
    font-weight: 600;
    background-color: var(--primary-color);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .8s;
    margin-bottom: 80px;
    box-shadow: 0px 0px 5px var(--primary-color);

}

  






/* ESTILO DO RODAPÉ */
footer {
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px #ffffff17;
}

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

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

}

.logo-footer img{
    margin-top: 50px;
    max-width: 200px;
}

.borda {
    border-top: 2px solid var(--primary-color);
}

footer .line-footer p i {
    color: var(--primary-color);
    font-size: 22px;
}

footer .line-footer p a {
    color: #FFF;
}


.btn-subir {
    position: fixed;
    bottom: 14px;
    right: 14px;
    z-index: 99;
    opacity: 0; /* Inicia com a opacidade em 0 para a transição funcionar */
    transition: opacity 1s ease-in-out;
  }

  .show-btn-subir .btn-subir {
    opacity: 1;
}


  .btn-subir img {
    max-width: 55px;
    transition: transform 0.4s;
  }
  .btn-subir img:hover {
    transform: scale(1.1);
  }


  
  @media screen and (min-width: 750px) and (max-width: 900px) {
    h2.titulo-web {
        margin-bottom: 20px;
    }


    .btn-contato-curriculo button{

       margin-top: 20px;
        display: block;
        
    }


    h2.titulo-app {
        
        margin-top: 200px;
        margin-bottom: 20px;
    }
  }

  
  @media screen and (min-width: 900px) {
    h2.titulo-web {
        margin-bottom: -50px;
    }


    h2.titulo-app {
        
        margin-top: 180px;
        margin-bottom: -20px;
    }
  }



 



@media screen and (max-width: 1020px) {


    /* CLASSES GERAIS */
    /*html, body {overflow-x: hidden;}*/
    .menu-mobile {
        overflow-y: auto; /* Adiciona scroll vertical ao menu */
        max-height: 100vh; /* Define a altura máxima do menu para ocupar a altura total da tela */
    }

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

    .flex {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }


    /* cabeçalho */



    
    .menu-desktop,
    .btn-contato {
        display: none;
    }

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

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

    /* TOPO DO SITE*/

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

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

    .topo-do-site h1 {
        font-size: 30px;
    }

    
    .topo-do-site .img-topo-site img {
        max-width: 350px; /* Ajuste o valor conforme necessário */
        padding: 5% 5%;
    } 

    /*ESPECIALIDADES*/

    .especialidades .btn-contato-curriculo button{
        margin-top: 30px;
        display: flex;
        color: #000;
        
    }


    section.especialidades {
        padding: 40px 8%;
        
    }

    section.especialidades .flex {
        flex-direction: column; /* Empilha as caixas em telas menores */
    }

    .especialidades .especialidades-box {
        margin-top: 20px; /* Espaçamento entre as caixas em telas menores */
    }

    .especialidades .especialidades-box {
        box-shadow: 0 0 20px #ffffff3c;
    }

    /* SOBRE */

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

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

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

    .img-sobre img{
        max-width: 310px; /* Ajuste o valor conforme necessário */
        height: auto; /* Garante que a altura é ajustada automaticamente */
        display: block; /* Remove qualquer espaço extra abaixo da imagem */
        margin: 0 4px; /* Centraliza a imagem horizontalmente no contêiner pai */
    }

     /* Portfolio */    

   
    
    .img-web{
        margin-top: 80px;
        /* Ajuste conforme necessário */
        width: 75%;
        border-radius: 10px;
      }

      section.app{
        margin-top: 30px;
    }


    /* RODAPE */
    footer .line-footer{
        text-align: center;
    }

    .btn-subir {
        position: fixed;
        bottom: 14px;
        right: 14px;
        z-index: 99;
        display: block;
      }
      .btn-subir img {
        max-width: 50px;
        transition: transform 0.4s;
      }
      .btn-btn-subir img:hover {
        transform: scale(1.1);
      }

   
      .btn-subir {
    position: fixed;
    bottom: 5px;
    right: 5px;
    z-index: 99999999;
    opacity: 0; /* Inicia com a opacidade em 0 para a transição funcionar */
    transition: opacity 1s ease-in-out;
  }

  .show-btn-subir .btn-btn-subir {
    opacity: 1;
}


  .btn-subir img {
    max-width: 50px;
    transition: transform 0.4s;
  }
  .btn-btn-subir img:hover {
    transform: scale(1.1);
  }

}