@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
/*
acessorios de estilo
*/
.linha_titulo{
    width: 50px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #b66565;
}
/* globais */

::-webkit-scrollbar{
    background-color: #b6aeae;
    width: 10px;
    
}
::-webkit-scrollbar-thumb{
    background-color: #3b3b3b;
    border-radius: 30px;
}
:root{
    --font-size: 22px; 
    --font-color:#070707 ;
}
/*globais*/

*{
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
html{
    overflow-x: hidden;
}
body{
    overflow-x: hidden;
    background-color: rgb(208, 208, 208);
    
    
}
.container{
    display: flex;
    flex-direction: column;
}
/* mobile menu */
@keyframes navLinkFade {
    from {
      opacity: 0;
     
    }
    to {
      opacity: 1;
      
    }
  }
.mobile_menu{
    display: none;
    cursor: pointer;
    z-index: 1;
}
.mobile_menu div{
    width: 32px;
    height: 3px;
    background-color: #f7d1d1;
    margin: 8px;
    transition: 0.3s;
}
@media (max-width:999px) {
    body{
        overflow-x: hidden;
    }
    .nav_header{
        opacity: 0;
        display: flex;
        position: absolute;
        top: 8vh;
        right: 0;
        width: 50vw;
        height: 92vh;
        background-color: #ababab;
        flex-direction: column;
        margin-bottom: 30px;
        justify-content: space-around;
        
    }
    .nav_header li{
        margin-left: 0;
        opacity: 0;
        border: none;
    }
    .nav_header li:hover{
        border-bottom: none;
    }
    
    .mobile_menu{
        display: block;
    }

   


 
 
  
    
}
.nav_header.active{
    display: flex;
    animation: navLinkFade 1s forwards;  
}

.mobile_menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
  }
  
  .mobile_menu.active .line2 {
    opacity: 0;
  }
  
  .mobile_menu.active .line3 {
    transform: rotate(45deg) translate(-7px, -7px);
  }




/*main/ header/ video inicial*/
#faleconosco{
    margin-top: 3px;
    border-bottom: 3px solid red;
}
.header_main{
    height: 8vh;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #000;
}
.nav_main{
    width: 100%;
    height: 6vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nav_main img{
    height: 5vh;
    margin-left: 25px;
}
.nav_header{
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
}
.nav_header li{
    margin-right: 15px;
    text-transform: uppercase;
    font-weight:bold;
    height: calc(8vh - 3px);
    color: #d4d4d4;
    padding: 6px 6px 6px 6px;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
} 
.nav_header a{
    text-decoration: none;
    color: var(--font-color);
}



/* footer */
footer{
    background-color: #000000;
    width: 100%;
    height: 250px;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: flex-end;
}

footer img{
    width: 100px;
}

/*
corpo
*/
.corpo{
    display: flex;
    padding: 60px;
    justify-content: space-between;
    height: 66vh;
    flex-direction: column;
}

.img_corpo img{
    width: 500px;
    height: 500px;
    object-fit: cover;
}
.corpo h1{
    font-size: 40px;
    color: #E1251B;
    margin-bottom: 20px;
    font-weight: bold;
}
.corpo em{
    font-weight: 800;
    
}
.corpo h4{
    margin-bottom: 15px;
}
.corpo p{
    width: 110ch;
    color: #000;
    text-shadow: 0.1px 0.1px 0.2px #000;
}
.line img{
    width: 30px;
    margin-right: 20px;
}
.line{
    margin-bottom: 30px;
    display: flex;
    
    align-items: center;
}
.line a{
    text-decoration: none;
    color:#000 ;
    font-weight: bold;
}
.line a:hover{
    color: blue;
}
@media (max-width:1230px) {
    .corpo p{
        width: 70ch;
    }
}
@media (max-width: 810px) {
    .corpo p{
        width: 40ch;
    }
    .corpo{
        padding-top: 10px;
    }
}
@media (max-width: 480px) {
    .corpo{
        height: 100%;
    }
    .corpo p{
        width: 30ch;
    }
    .corpo{
        padding-top: 10px;
    }
    
}
@media (max-width: 388px) {
    .corpo{
        height: 100%;
    }
    .corpo p{
        width: 20ch;
    }
    .corpo{
        padding-top: 10px;
    }
    #linkemail{
        font-size: 14px;
    }
}
@media (max-width: 301px) {
    .corpo{
        padding: 20px;
    }
    
}











.logo img{
    height: 5vh;
    margin-left: 25px;
}
.header-one {
    background-color: #000000;
    box-shadow: 0px 3px 10px #464646;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 6rem;
}

header{
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE 10+/Edge */
    user-select: none; /* Padrão */

}
.nav-list {
    display: flex;
    align-items: center;
}

.nav-list ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.nav-item {
    margin: 0 12px;
}

.nav-link {
    text-decoration: none;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}
.nav-link:hover{
    margin-top: 3px;
    border-bottom: 3px solid red;
    transition: ease-in-out 0.5s;
    color: #726868;
    
}
.mobile-menu-icon {
    display: none;
}

.mobile-menu {
    display: none;
    z-index: 1;
    
}
@keyframes open_sv{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media (max-width: 1200px) {
    .nav-bar {
        padding: 1.5rem 4rem;
    }
    .nav-item {
        display: none;
    }
    .mobile-menu-icon {
        display: block;
    }
    .nav-link{
        padding-bottom: 0 ;
    }
    .mobile-menu-icon button {
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
    .mobile-menu ul {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-bottom: 1rem;
        
    }
    .mobile-menu .nav-item {
        display: block;
        padding-top: 1.2rem;
    }
    .mobile-menu .login-button {
        display: block;
        padding: 1rem 2rem;
    }
    .mobile-menu .login-button button {
        width: 100%;
    }
    .open {
        display: block;
        animation: open_sv 0.5s forwards;
    }
    .mobile-menu{
        position: absolute;
        width: 100%;
        background-color: #000;
    }
    .mobile-menu{
        z-index: 1;
    }
}
.redes img{
    width: 24px;
    margin-left: 5px;
    filter: contrast(0%);
}
.redes img:hover{
    filter: contrast(100%);
}
.redes{
    position: absolute;
    left: 260px;
}
@media  (max-width: 499px){
    
    .redes img{
        width: 19px;
        filter: contrast(100%);
    }
    .redes{
        left: 10px;
        display: flex;
        flex-direction: column;
    }
}
footer{
    background-color: #000000;
    width: 100%;
    height: 220px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer img{
    width: 80px;
}
.linksredes{
    display: flex;
    justify-content: space-between;
    width: 140px;
    margin-top: 10px;
}
.linksredes img{
    width: 30px;
}
.linksredes div{
    filter: contrast(0%);
    margin: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.linksredes div:hover{
    filter: contrast(100%);
}
footer div img{
    width: 30px;
}