
/* ESTILO GERAL */

html{
    scroll-behavior: smooth;
}

*{
    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: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #00a0e9;
    border: 0;
    border-radius: 27px;
    cursor: pointer;
    transition: .2s;
}

h2.titulo{
    color: #fff;
    font-size: 38px;
    text-align: center;
}
h2.titulo span{
    color: #00a0e9;
}

button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 8px #00bbff;
    transform: scale(1.04);
}



/* ================== SCROLLBAR ================== */

::-webkit-scrollbar{
    width: 15px;
    background-color: #000000;
}
::-webkit-scrollbar-thumb{
    background-color: #00a0e9;
    border-radius: 20px;
}

/* ================== ESTILO DO CABEÇALHO ================== */



header{
    padding: 40px 4%;
}

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

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

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

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 i{
    color: #00a0e9;
    font-size: 40px;
}

 nav.menu-mobile2 ul i{
    font-size: 30px;
}



.menu-mobile{
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999; /* Determina  a ordem da pilha de um elemento */
    width: 0%;
    overflow: hidden;

}


.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: #00a0e9;
    font-size: 30px;
}

.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: #00a0e9;
    color: #000;
    font-weight: 500;
}

.overlay-menu{
    background-color: #0000009e;
    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 h1{
    color: #fff;
    font-size: 46px;
    line-height: 43px;
}

.topo-do-site .txt-topo-site h1 span{
    color: #00a0e9
}

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


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

@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}

/* ================== ESTILO ESPECIALIDADES ================== */

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

section.especialidades .flex{
    gap: 60px;
}

.especialidades .especialidades-box{
    color: #fff;
    padding: 40px;
    margin-top: 45px;
    border-radius: 20px;
    transition: .2s;
}

.especialidades .especialidades-box:hover{
    transform: scale(1.07);
    box-shadow: 0 0 8px #ffffff80;
}

.especialidades .especialidades-box i{
    font-size: 70px;
    color: #00a0e9;
}

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

}





/* ================== ESTILO DO SOBRE ================== */

section.sobre{
    padding: 80px 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: #00a0e9;
    display: block;
}

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

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

.btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #00a0e9;
    font-size: 25px;
    cursor: pointer;
    margin: 0 8px;
    transition: .2s;
    color: #fff;
}

#clicavel-site {
    color: #007BFF; /* Escolha a cor desejada para o link */
    text-decoration: none; /* Remove o sublinhado */
}

#clicavel-site:hover {
    color: #0056b3; /* Cor do link ao passar o mouse */
    text-decoration: underline; /* Adiciona sublinhado no hover (opcional) */
}

#clicavel-site:visited {
    color: #007BFF; /* Garante que o link não fique roxo após ser visitado */
}

#clicavel-site:focus {
    outline: none; /* Remove a borda padrão no foco */
}






/* ================== ESTILO PORTFOLIO ================== */

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

.img-port{
    width: 360px;
    height: 460px;
    background-color: #00a0e9;
    background-size: cover;
    background-position: 100% 0%;
    transition: 8s;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
}
.img-port:hover{
    background-position: 100% 100%;
}

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

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

.overlay:hover{
    opacity: 1;
}



/* ================== ESTILO DO RODAPÉ ================== */

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

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

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

.borda{
    border-top: 2px solid #00a0e9;
}

footer .line-footer p i{
    color: #00a0e9;
    font-size: 24px;
}

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



/* ================== SITE RESPONSIVO ================== */

/* MODO MOBILE */
@media screen and (max-width: 1020px){

     /* CLASSES GERAIS */

     .flex{
        flex-direction: column;
     }
     .topo-do-site .flex{
        flex-direction: column-reverse;
     }
     h2.titulo{
        font-size: 34px;
        line-height: 30px;
     }

    /* CABEÇALHO */
    .menu-desktop, .btn-contato{
        display: none;
    }

     /* TOPO DO SITE */

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

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

     .topo-do-site .img-topo-site img{
        width: 100%;
     }

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

     /* ESPECIALIDADES */

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

      /* SOBRE */

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

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

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

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

      /* PORTFOLIO */

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

      .img-port{
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
      }

      section.portfolio .flex{
        gap: 60px;
      }

      /* RODAPÉ */

      footer .flex{
        flex-direction: column;
        gap: 25px;
      }
      footer .line-footer{
        text-align: center;
      }
}


/* MODO DESKTOP */
@media screen and (min-width: 1020px){

    /* Sumir com o menu-mobile quando estiver em modo desktop */

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