/*  */
*{
    margin: 0; 
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
}

body{
    background-color: #f1f1f1fa;
    height: 100vh;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.flex{
    display: flex;
}

.btn-contato button{
    padding: 10px 40px;
    font-size:  18px;
    font-weight: 600;
    background-color: #f9ca36;
    border: 0 ; 
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.btn-contato button:hover , form .btn-enviar input:hover{
    box-shadow: 0px 0px 8px  #f9ca36;
    transform: scale(1.05);
}

h2.titulo{
    font-size: 38px; 
    text-align: center;

}
h2.titulo span{ 
   color: #f9ca36;
    
}

/* ESTILO DO CABEÇALHO */
header{
    padding: 40px 4%;
}

header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a {
    color: black;
    text-decoration: none;
    display: inline-block;
    transition: .2s;
}

header a:hover{
   color: #f9ca36;
   transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline-block;
    padding: 0 40px;
}





/* estilo do topo */ 
section.topo-do-site{
    padding: 40px 4%; 
}

section.topo-do-site .flex{
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.topo-do-site h1{
    font-size: 42px;
    line-height: 40px;
}

.topo-do-site .txt-topo-site h1 span{
    color: #f9ca36;
}

.topo-do-site .txt-topo-site p{
    margin: 40px 0px;
}

.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%;
}

section.especialidades .flex{
   gap: 20px;
}

.especialidades .especialidades-box{
    padding: 40px;
    border-radius:  20px;
    margin-top: 45px;
    transition: .2s;
    width: 260px;
    height: 210px;
}

.especialidades .especialidades-box:hover{
  transform: scale(1.05);
  box-shadow: 0 0 20px #f9ca36;
}

.especialidades .especialidades-box i{
    font-size: 70px;
   
    color:#f9ca36;
    
}

.especialidades .especialidades-box h3{
    font-size: 28px;
    margin: 15px 0;
}

/* numeros */ 
section.numeros{
    padding: 40px 4%;
}

section.numeros .flex{
   gap: 180px;
}

.numeros .especialidades-box{
    padding: 40px;
    border-radius:  20px;
    margin-top: 45px;
    transition: .2s;
    width: 300px;
    height: 210px;
}

.numeros .especialidades-box:hover{
  transform: scale(1.05); 
 
}

.numeros .especialidades-box i{
    font-size: 70px;
   
    color:#f9ca36;
    
}

.numeros .especialidades-box h3{
    font-size: 24px;
    margin: 15px 0;
}

.numeros-text{
    font-size: 70px;
    color:#f9ca36;
}

/* FORMULARIO */ 
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: #d6d6d6;
    border: 0;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: black;
    font-size: 18px;;
}

form textarea{
    resize: none;
    max-height: 200px;
}

form .btn-enviar{
    margin-top: 20px;  
    text-align: center;
}

form .btn-enviar input{
 width: 100%;
 height: 55px;
 background-color: #f9ca36;
 color: black;
 font-weight: 700;
 cursor: pointer;
 transition: .2s;

}