/* ESTILO GERAL */
*{
    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;
}
 .bnt-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    background-color: #ffaa00;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}
h2.titulo{
    color: #fff;
    font-size: 38px;
    text-align: center;
}

h2.titulo span{
    color: #ffaa00;
}

/*ESTILO CABEÇALHO*/
header{
    padding: 80px 4%;
}

header > .interface{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header a{
    color: #7d7d7d;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}
header  nav.menu-desktop a:hover{
    color: #ffaa00;
    transform: scale(1.05);
}

header nav ul{
    list-style-type: none;
}

header nav.menu-desktop  ul li{
    display: inline;
    padding: 0 40px;
}

 button:hover, form .btn-enviar input{
    box-shadow: 0px 0px 8px #ffaa00da;
    transform: scale(1.05);
}

/*ESTILIZAÇÃO DO MENU MOBILE*/
.abrir-menu-mobile i{
    color: #ffaa00;
    font-size: 40px;
}

.menu-mobile{
    background-color: #000;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width:0%;
    overflow: hidden;
    transition: .2s;
}


.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: #ffaa00;
    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 8%;
        display: block;
}
.menu-mobile nav ul li a:hover{
    background-color: #ffaa00;
    color: #000;
}

.overlay-menu{
    background-color: #000000a7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    display: none;
}

/* ESTILO DO TOPO DO SITE*/
section.Topo-site{
    padding: 80px 4%;


}
section .Topo-site .flex{
align-items: center;
justify-content: center;
gap: 90px;
}
.Topo-site h1{
    color: #fff;
    font-size: 42px;
    line-height: 40px;
}
.Topo-site .txt-topo-site h1 span{
    color: #ffaa00;
}
.Topo-site .txt-topo-site p{
    color: #fff;
    margin: 40px 0;
}

.img-topo-site {
  width: 320px;   
  height: 250px;  
  border-radius: 20px; 
  overflow: hidden;
  border: 3px solid #ffaa00; 
  box-shadow: 0 0 25px #ffaa00; 
}


.img-topo-site img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
  position: relative;
  animation: flutuar 2s ease-in-out infinite alternate;
}

/*ESTILO ESPECIALIDADES*/
section.especialidades{
    padding: 80px 4%;
}

.flex{
    gap: 60px;
    justify-content: center; 
      align-items: center;
}

.especialidades .especialidades-box{
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-top: 45px;
    transition: .2s;
    
}
.especialidades .especialidades-box:hover{
    transform: scale(1.05);
    box-shadow: 0 0 10px #ffaa00;
}
.especialidades .especialidades-box i{
    color: #ffaa00;
    font-size: 70px;
}
.especialidades .especialidades-box h3{
    font-size: 28px;
    margin: 15px 0;
}
/*ESTILIZAÇÃO 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: #ffaa00;
    display: block;
}
.sobre .txt-sobre p{
    margin: 20px 0;
    text-align: justify;
}
 .btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #ffaa00;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}
/*ESTILIZAÇÃO PROJETOS*/
section.projeto{
    padding: 80px 4%;
}

.projeto .btn-projeto button{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #ffaa00;
    font-size: 20px;
}
.projeto .txt-projeto {
    color: #fff;
}
.sobre .txt-sobre p{
    margin: 20px 0;
    text-align: justify;
}

/*ESTILIZAÇÃO FORMULARIO*/
scetion.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: none;
    outline: none;
    padding: 20px 15px;
    border-radius: 15px;
    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: #ffaa00;
    color: #000;
    font-weight: 700;
    cursor: pointer;
}
/*ESTILIZAÇÃO RODAPE*/
footer{
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px   #242424;
}

footer .flex{
    justify-content: space-between;
}
 footer .line-footer p i{
    color:#ffaa00 ;
    font-size: 22px;
}
footer .line-footer p a{
    color: #fff;
}
footer .line-footer{
    padding: 20px 0;
 
}
.borda{
    border-top: 2px solid #ffaa00;
}


@media screen and (max-width: 1020px) {
    /*CLASSES GERAIS*/
    .flex{
        flex-direction: column-reverse;
    }
    h2.titulo{
     font-size: 28px;
     line-height: 34px;
   
}

    /*CABEÇALHO*/
    .menu-desktop, .bnt-contato{
        display: none;
    }
    /*Topo-Site*/
    section .Topo-site .flex{
        gap: 40px;
}
    section.Topo-site{
    padding: 20px 8%;


}
    .Topo-site h1{
    font-size: 30px;
}
/*ESPECIALIDADES*/
    section.especialidades{
    padding: 80px 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;
}

}