/* Estilo Geral*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

body {
    background-color: #0b0c10 ;
    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: #66fcf1;
    color: #0b0c10;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
 }

 h2.titulo{
   color: white;
   font-size: 38px;
   text-align: center;

 }

 h2.titulo span{
   color: #66fcf1;
 }

button:hover{
   box-shadow: 0px 0px 8px #66fcf1;
   transform: scale(1.05);
}

/* Estilo do Cabeçalho */
 header {
    padding: 40px 4%;
}

 header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

 header a {
    color:#c5c6c7;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
 }

 header a:hover{
    color:white;
    transform: scale(1.06);

 }

 header nav ul {
    list-style-type: none;
 }

 header nav ul li {
    display: inline-block;
    padding: 0 40px;
 }

 /* 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: #c5c6c7;
    font-size: 42px;
    line-height: 40px;
 }

 .topo-do-site .txt-topo-site h1 span {
    color: #66fcf1;
 }

 .topo-do-site .txt-topo-site p {
    color: #c5c6c7;
    margin: 40px 0;
    

 }

 .topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 3s ease-in-out infinite alternate;
 }

 @keyframes flutuar {
    0% {
        top: 0;

    }
    100% {
        top: 30px;
    }
 }

 #meuParagrafo {
   opacity: 0;

   animation: aparecer 11s forwards;  /* 6 segundos de duração */
   /* forwards mantém o estado final após a animação */

   animation-delay: 7s;/* Atraso de 7 segundos antes da animação começar */
   
  
 }

 @keyframes aparecer {
   to {
     opacity: 1;
   }
 }

 /* ESTILO DAS ESPECIALIDADES */

 section.especialidades{
    padding: 40px 4%;

 }

section.especialidades .flex{
   gap: 60px;
}

 .especialidades .especialidades-box{
   color: white;
   padding: 40px;
   border-radius: 20px;
   margin-top: 45px;
   transition: .2s;
 }

 .especialidades .especialidades-box:hover{
   transform: scale(1.05);
   box-shadow: 0 0 20px #ffffff67;
 }

 .especialidades .especialidades-box i{
   font-size: 70px;
   color: #66fcf1;
 }

 .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: #66fcf1;
   display: block;
}

.sobre .txt-sobre p {
   margin: 20px 0;
   text-align: justify;
}

.sobre .txt-sobre .btn-social button{
   width: 60px;
   height: 60px;
   border-radius: 50%;
   border: none;
   background-color: #66fcf1;
   font-size: 22px;
   cursor: pointer;
   margin: 0 5px;
   transition: 0.2s;


}