/* ESTILO GERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    background-color:#ffffff;
    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: #a2621d;
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: .2s;
}

.buttonDownload {
    display: inline-block;
    position: relative;
    padding: 10px 25px;
    margin-top: 10px;
    background-color: #4CC713;
    color: white;
    font-family: sans-serif;
    text-decoration: none;
    font-size: 0.9em;
    text-align: center;
    text-indent: 15px;
    border: none;
   }
   
   .buttonDownload:hover {
    background-color: #3974ba;
    color: white;
   }
   
   .buttonDownload:before, .buttonDownload:after {
    content: ' ';
    display: block;
    position: absolute;
    left: 15px;
    top: 52%;
   }
   
   .buttonDownload:before {
    width: 10px;
    height: 2px;
    border-style: solid;
    border-width: 0 2px 2px;
   }
   
   .buttonDownload:after {
    width: 0;
    height: 0;
    margin-left: 3px;
    margin-top: -7px;
    border-style: solid;
    border-width: 4px 4px 0 4px;
    border-color: transparent;
    border-top-color: inherit;
    animation: downloadArrow 1s linear infinite;
    animation-play-state: paused;
   }
   
   .buttonDownload:hover:before {
    border-color: #cdefbd;
   }
   
   .buttonDownload:hover:after {
    border-top-color: #cdefbd;
    animation-play-state: running;
   }
   
   @keyframes downloadArrow {
    0% {
     margin-top: -7px;
     opacity: 1;
    }
   
    0.001% {
     margin-top: -15px;
     opacity: 0.4;
    }
   
    50% {
     opacity: 1;
    }
   
    100% {
     margin-top: 0;
     opacity: 0.4;
    }
   }

.btn-contato button i {
    margin-right: 10px;
}

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

h2.titulo span {
    color: #ffb300;
}

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

header {
    width: 100%;
    padding: 10px 4%;
    background-color: #ffde59;
    position: fixed;
    top: 0;
    left: 0;
    transition: .3s;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center; 
}

header > .interface {
    display: flex; 
    justify-content: space-evenly;
    margin: 10px;
}
header nav.menu-desktop {
    display: flex;
    justify-content: center;
    align-items: center; 
}

header nav.menu-desktop a {
    color: #000000;
    margin: 0 20px; 
    text-decoration: none;
    transition: .2s;
}

header nav a:hover {
    color:#00000064;
    transform: scale(1.05);
}

header nav ul {
    list-style-type: none;
}

header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
    font-weight: 500;
}

header.rolagem{
    background-color: #ffffff;
    padding: 20px 4%;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.logo {
    filter: drop-shadow(1px 1px rgb(255, 255, 255));
    width: 100px;
    height: auto;

}

/*Estilo Menu Mobile*/
.btn-abrir-menu i{
    color: #000000;
    font-size: 40px;
    transition: .2s;
    display: none;
}
.btn-abrir-menu i:hover{
    color: #707070;
    transform: scale(1.02s);
}

.menu-mobile{
    background-color: #707070;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
    text-decoration: none;
}

.menu-mobile a{
    text-decoration: none;
}
.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~ .overlay-menu{
    display: block;
}
.menu-mobile nav ul {
    text-align: right;

}
.menu-mobile nav ul li a{
    color: #fff;
    font-size: 20px;
    font-weight: 300px;
    padding:20px 7% ;
    display: block;
}
.menu-mobile nav ul li a:hover{
    background-color: #ffb300;
    color:#000000;
    transition: 0.4s;
}
.menu-mobile .btn-fechar i{
    color: #fffcfc;
    font-size: 35px;
}
.menu-mobile .btn-fechar{
    padding: 20px 4%;
}

.overlay-menu{
    background-color: #00000085;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    display: none;
}
/* ESTILO DO TOPO DO SITE */
section.topo-do-site {
    margin-top: 70px;
    padding: 40px 4%;
}

section.topo-do-site .flex h1 {
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #3974ba;
    gap: 90px;
    margin-top: 100px;
}

.txt-topo-site .topo-do-site h1 {
    font-size: 70px;
    font-weight: 900;
    line-height: 10px;
    margin-top: 80px;
    margin-left: 20px;
}

.topo-do-site .txt-topo-site  span {
    color: #a2621d;
    font-size: 50px;
    font-weight: 900;
}
section .img-topo-site img {
    height: 240px; 
    width: auto;
    border-radius: 16% 84% 12% 88% / 60% 45% 55% 40%  ; 
    display: inline;
    margin-top: 50px; 
    margin-left: 70px;
    margin-bottom: 30px;
}

/* ESTILO DAS ESPECIALIDADES */
section.especiliadades {
    padding: 40px 4%;
}

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

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

.especiliadades .especialidades-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #69676781;
}

.especiliadades .especialidades-box i {
    font-size: 70px;
    color: #ffe100;
}

.especiliadades .especialidades-box h3 {
    font-size: 28px;
    margin: 15px 0;
    color: #000000;
}
.especiliadades .especialidades-box p {
color: #000000;
}

/* ESTILO DO SOBRE */
section.sobre {
    padding: 20px 4%;
}

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

 .txt-sobre {
    color: #000000;
}

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

.sobre .txt-sobre span {
    color: #ffb300;
    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:  #ffb300;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}

/* ESTILO DO RODAPÉ */

footer {
    box-shadow: 0 0 40px 10px #ffffff1d;
}

footer .interface {
    padding:20px 4%;
}

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

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

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

footer .line-footer p i {
    color: #117f7a;
    font-size: 22px;
    padding: 10px;
}

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

footer a:hover {
    text-decoration: underline;
    color: #F28F38;
  }
  .copyright {
    text-align: center;
    background-color: #0a0a0a;
    padding: 10px 0;
    color: #ffffff;
    font-size: 14px;
    margin-top: 40px;
}

.copyright a {
    text-decoration: none;
    color: white;
}

@media screen and (max-width: 768px) {

    /* CLASSES GERAIS */
    .flex {
        display: flex;
        flex-direction: column;
    }

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

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

    /* CABEÇALHO */
   .menu-desktop a{
    display: none;
   }

    .btn-abrir-menu i{
        margin-top: 10px; 
        margin-left: 90px;
        display: block;
    }

    /* TOPO DO SITE */

    section.topo-do-site .flex {
        gap: 20px;
        padding: 20px 8%;
        display: flex;
        flex-direction: column-reverse;
        
    }
    section.topo-do-site .flex h1{
        margin-top: 20px;
        font-size: 30px;
    }
    .topo-do-site .txt-topo-site  span {
        color: #a2621d;
        font-size: 30px;
        font-weight: 900;
    }

    section.topo-do-site {
        padding: 20px 8%;
        margin-top: 100px;
    }

    .topo-do-site h1 {
        font-size: 30px;
        width: 300px;

    }
    .topo-do-site .img-topo-site img {
        display: none;

    }
    /* ESPECIALIDADES */
    section.especiliadades {
        padding: 40px 8%;
    }

    /* PORTFÓLIO */
    section.portfolio {
        padding: 80px 8%;
    }
    
    section.portfolio .flex {
       gap: 60px;
    }

    /* RODAPÉ */
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer {
        text-align: center;
    }
    footer .copyright{
        padding: 5px;
      }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
        /* CLASSES GERAIS */
        .flex {
            display: flex;
            flex-direction: column;
        }
    
        .topo-do-site .flex{
            flex-direction: column;
        }
    
        h2.titulo {
            font-size: 34px;
            line-height: 30px;
        }
    
        /* CABEÇALHO */
        .btn-contato {
            display: block;
            padding: 20px;
        }
        .btn-abrir-menu i{
            margin-top: 10px; 
            margin-left: 190px;
            font-size: 45px;
            display: block;
        }
        
        header nav.menu-desktop a{
            display: none;
        }
        

        /* TOPO DO SITE */
    
        section.topo-do-site .flex {
            gap: 20px;
            padding: 20px 8%;
            display: flex;
            flex-direction: row;
            margin-top: 50px;
            
        }
        .btn-contato button{
            font-size: 15px;
 
        }
    
        section.topo-do-site {
            padding: 20px 8%;
        }
        section.topo-do-site .flex h1{
            margin-top: 10px;
            font-size: 30px;
        }
        .topo-do-site .txt-topo-site  span {
            color: #a2621d;
            font-size: 30px;
            font-weight: 900;
        }
        section .img-topo-site img  {
            display: none;
       }

    
    
        /* PORTFÓLIO */
        section.portfolio {
            padding: 80px 8%;
            display: flex;
            flex-direction: row-reverse;
        }
        .img-sobre{
            display: block;
            flex-direction: row-reverse;
            margin-left: 20px;
        }
    
        .portfolio .flex {
           gap: 60px;
           height: 100px;
           height: auto;
        }
          /* Nossos Valores */

         section.nossos-valores {
         padding: 40px 9%;
         background-color: #ffffff;
    
         }
        .nossos-valores .valores-box {
         color: #000000;
         padding: 40px;
         border-radius: 20px;
        }
    
        /* RODAPÉ */
        footer .flex {
            flex-direction: column;
            gap: 30px;
        }
    
        footer .line-footer {
            text-align: center;
        }
    }
