/*Corpo_Geral--------------------------------------------------*/
body{
    min-height: 100vh;
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.aviso {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    z-index: 9999; /* Garante que o aviso fique acima de outros elementos */
  }
/*nav--------------------------------------------------*/

nav{
    display: flex;
    align-items: center;
    flex-direction: column;
    min-width: 100%;
    max-width: 100%;
}

.nav{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    height: 120px;
    width: 100%;
    
    box-shadow: 1px 5px 20px rgb(0,0,0,0.1);
}

.nav_itens{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    height: 120px;
    width: 100%;
    max-width: 1360px;
  }

.nav a{
    font-weight:600;
    color: rgb(120, 120, 120);
}

.nav a:hover{
    opacity: 60%;
}

.nav .logo:hover{
    opacity: 100%;
}

.menu_bar{
    font-size: 2em;
    display: none;
}

.menu_bar:hover{
    cursor: pointer;
}

.nav img{
    height: 50px;
    margin-left: 40px;
    transition: 0.6s;
}

.nav img:hover{
    opacity: 90%;
    transition: 0.6s;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
    margin-bottom: 10px;
    gap: 30px;
}

.contatos_simple{
    cursor: pointer;
}


@media (max-width: 680px){
   
    nav{
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        min-width: 100%;
        max-width: 100%;
    }

    .nav{
        justify-content: space-between;
    }

    .nav{
        height: 90px;
    }
    
    .nav img{
        max-height: 90px;
        margin-left: 25px;
    }

    .nav a{
        display: none;
    }

    .nav .logo{
        display: flex;
    }
    
    .nav a:hover{
        opacity: 60%;
    }

    .menu{
        margin-right: 25px;
    }
    
}




/*Footer--------------------------------------------------*/
footer{
    margin-top: 50px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
    background-color: rgb(30, 30, 30);
    min-height: 180px;
    
    max-width: 100%;
    
}

.footer_text{
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #979797;
}

.footer_text_slogan{
    font-size: 1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFA800;
}

.slogan{
    margin-top: 10px;
}

#footer_logo_white{
    max-width: 150px;
    margin-top: 40px;
    margin-bottom: 0px;
    transition: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;

}

#footer_logo_white img{
    width: 100%;
}


#footer_logo_white:hover{
    transform: scale(1.1);
    transition: 0.8s;
}

#footerContainer .social{
    margin-top: 10px;
}
.social{
    font-size: 1.2em;
    display: flex;
    flex-direction: row;
    gap: 20px;
    color: #808080;
}
.social a:hover{
    color: rgb(160, 160, 160);
}

.direitos{
    margin-bottom: 20px;
    margin-top: 10px;
    color: #808080;
}

/*Language-------------------------------*/

.idioma{
    margin-bottom: 10px;
}

.idioma a:hover{
    opacity: 60%;
}

#pt_BR{
    color: rgb(160, 160, 160);
    margin-right: -18px;
}

#en{
    color: rgb(160,160,160);
}
/*Scroll------------------------------*/

body::-webkit-scrollbar {
    width: 10px;               
  }
  
  body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);       
  }
  
  body::-webkit-scrollbar-thumb {
    background-color:rgb(0,0,0,0.15);    
    border-radius: 20px;       
  }