*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

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

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

.flex{
    display: flex;
}

.btn-contato button{
        gap: 20px;
        padding: 10px 40px;
        font-size: 18px;
        font-weight: 600;
        background-color: #01c57aea;
        border: 0;
        border-radius: 30px;
        cursor: pointer;
        transition: .2s;
}

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

h2.titulo span{
    color: #01c57aea;
}


button:hover, form .btn-enviar:hover{
    box-shadow: 0px 0px 8px #01c57aea;
    transform: scale (1.05);
    color: #fff;
}

/* ESTILO DO CABEÇALHO */

header{
    padding: 40px 4%;
}

header.interface{
    width: 200px;
    height: auto;
    
}

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

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

header nav.menu-desktop a:hover{
    color: #5C5C5C;
    transform: scale(1.05);
}

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{
    display: none;
}

.btn-abrir-menu i{
    color: #01c57aea;
    font-size: 40px;
}

.menu-mobile{
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: ridden;
    transition: .5s;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{ 
    display: block;
}

.menu-mobile .btn-fechar{
    padding: 20px 5%;
    cursor: pointer;
}

.menu-mobile .btn-fechar i{
    color: #01c57aea;
    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 4%;
    display: block;
}

.menu-mobile nav ul li a:hover{
    background-color: #01c57aea;
    color: #000;
}

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

/*ESTILO DO TOPO DO SITE  */

section.topo-do-site .btn-contato{
    padding: 5px 25%;
    
}


section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1{
    color: #01c57aea;
    font-size: 42px;
}

.topo-do-site h2{
    color: #000;
    font-size: 38px;
    line-height: 36px;
    margin: 40px 0;
}

.topo-do-site .txt-topo-site h2 span{
    color: #e7ff0dea;
}
 .topo-do-site .txt-topo-site p{
     color: #000;
     margin: 40px 0;
 }

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

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

/*ESTILO DAS ESPECIALIDADES  */

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

.especialidades h3{
    padding: 40px;
    gap: 40px;
    text-align: center;
    color: #000;
}

h3 span{
    color: #000;
}

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

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

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

.especialidades .especialidades-box i{
    font-size: 70px;
    color: #01c57aea;
}

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

/* ESTILO DO SOBRE */

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

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

.sobre .img-sobre img{
    border-radius: 60%;
}

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

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

.sobre .txt-sobre h2 span{
    color: #01c57aea;
    display: block;
}

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

.btn-social button{
width: 60px;
height: 60px;
border-radius: 50%;
border: none;
background-color: #01c57aea;
font-size: 22px;
cursor: pointer;
margin: 0 5px;
transition: .2s;
}

/* ESTILO DO PORTFOLIO */

section.portfolio{
 padding: 80px 4%;
 /*box-shadow: 0 0 40px 10px #ffffff67;*/
 gap: 40px;
}


section.portfolio .flex{
    justify-content: space-around;
}

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

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

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

.overlay:hover{
    opacity: 1;
}

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

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top:40px;
}

form input, form textarea{
    width: 100%;
    background-color: #242424;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 20px;
    color: #fff;
    font-size: 18px;
}

form textarea{
    resize: none;
    max-height: 200px;
}

form .btn-enviar{
    margin-top: 20px;
    text-align: center;
}

form .btn-enviar input{
    width: 120px;
    background-color: #01c57aea;
    color: #000;
    font-wight: 700px;
    cursor: pointer;
    transition: .2s;
}

 form input::placeholder{
    color: #01c57aea;
} 

/* Estilo do footer*/

footer{
    padding: 40px 4%;
    box-shadow: 0 0 40px 10px #ffffff1d;
}
footer .flex{
    justify-content: space-between;
}

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

.border{
    border-top: 2px solid #01c57aea;
}
footer .line-footer p i{
    color: #01c57aea;
    font-size: 22px;
}

footer .line-footer p{
    color: #000;
    text-align: center;
}

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

@media screen and (max-width: 1020px){
    
/* CLASSES GERAIS*/
.flex{
    flex-direction: column;
}
h2.titulo{
    font-size: 34px;
    line-heigth: 30px;
}

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

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

.btn-abrir-menu{
    display: block;
}
/* CABEÇALHO*/
.menu-desktop, .btn-contato{
      display: none;
 }
    
/*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{
    width: 100%;
}
/*ESPECIALIDADES*/
section.especialidades{
    padding: 40px 8%;
}
    /* ESTILO DO SOBRE */

section.sobre{
    padding: 80px 8%;
}
.sobre .txt-sobre h2{
    font-size: 34px;
    line-heigth: 35px;
    text-align: center;
}
    .btn-social{
        text-align: center;
    }
    .img-sobre img{
        width: 100%;
    }

    /* ESTILO DO PORTFOLIO */

section.portfolio{
 padding: 80px 8%;
}
    .img-port{
 width: 100%;
 max-width: 360px;
 margin: 0 auto;
}

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

/*RODAPE*/
footer .flex{
    flex.direction: column;
    gap: 30px;
}

footer  .line-footer{
    text-align: center;
}
    
}
