/* ----- MENU ----- */
.header{
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 50;
    background-color: transparent;
    transition: ease .3s;
}
.header.fixed{
    background-color: #fff;
    transition: ease .3s;
}
.header-container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 200px;
}
.header-logo img{
  	width: 100%;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(33deg) brightness(103%) contrast(101%);
}
.header.fixed .header-logo img{
    filter: unset;
}
.header-menu,
.header-menu ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
}
.header-menu ul li{
    height: 100%;
    align-content: center;
}
.header-menu .header-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    position: relative;
    transition: ease .3s;
}
.header-menu .header-link.link:after{
    content: "";
    display: flex;
    width: 15px;
    height: 2px;
    background-color: #Fff;
    margin: 5px auto 0;
    transition: ease .3s;
}
.header-menu .hover-btn:hover .header-link.link:after,
.header-menu .header-link.link:hover:after,
.header-menu .header-link.active.link:after{
    width: 100%;
    transition: ease .3s;
}
.header.fixed .header-link{
    color: var(--primaria);
}
.header.fixed .header-link.link:after{
    background-color: var(--primaria);
}
.header .contato-btn.desktop a{
    background-color: var(--cor-1);
    padding: 15px 25px;
    color: #fff;
    font-size: 16px;
}
.header .contato-btn.mobile{
    width: fit-content;
    background-color: var(--cor-1);
    padding: 15px 25px;
    color: #fff;
    font-weight: 100;
    font-size: 16px;
}
/* MOBILE */
.menu-hamburguer{
    display: none;
}
.close-mobile{
    display: none;
}
.header-mobile,
.mobile-menu{
    display: none;
}
.open-mobile i{
    color: #fff;
    font-size: 25px;
    transition: ease .3s;
}
.header.fixed .open-mobile i{
    color: #000;
    transition: ease .3s;
}
a.close-mobile{
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
    border-bottom: none!important;
    padding: 0!important;
}
.close-mobile i{
    color: var(--cor-1);
    font-size: 25px;
    transition: ease .3s;
}
a.close-mobile:hover i{
    color: var(--primaria);
    transition: ease .3s;
}



/* FOOTER */
.main-footer{
    width: 100%;
    padding: 20px 0;
    position: relative;
    background-color: #161616;
}
.main-footer .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}
/* COLUNA LOGO */
.main-footer .footer-logo{
    width: 189px;
    flex-direction: column;
}
.main-footer .footer-logo img{
	width: 100%;
}
.main-footer .copyright{
    text-align: center;
    display: flex;
    gap: 20px;
}
.main-footer .copyright h5{
    font-size: 16px;
    font-weight: 200;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.main-footer .copyright a img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(202deg) brightness(107%) contrast(102%);
}
.main-footer .redes{
    display: flex;
    column-gap: 20px;
}
.main-footer .redes a i{
    display: flex;
    width: 61px;
    height: 61px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 35px;
}



.flutuante{
    position: fixed;
    bottom: 15%;
    right: 50px;
    z-index: 11;
    transition: ease .3s;
}
.flutuante:hover{
    scale: 1.2;
    transition: ease .3s;
}
.flutuante img{
    width: 100%;
}


/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

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

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

@media screen and (max-width: 1200px){
    
    /* MENU MOBILE */
    .mobile-menu{
        display: flex;
    }
    .header-menu{
        display: none;
        font-size: 25px;
    }
    .header-mobile{
        display: flex;
        flex-direction: column;
        padding: 10px 30px 50px 30px;
        position: fixed;
        max-width: 400px;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: #fff;
        top: 0;
        right: -100%;
        z-index: 50;
        transition: right 0.5s;
        margin-top: 0;
        gap: 20px;
    }
    .header-mobile.opened {
        right: 0;
    }
    .header-mobile ul{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .header-mobile .header-logo{
        height: fit-content;
        margin-bottom: 50px;
    }
    .header-mobile ul{
        gap: 20px;
    }
    .header-mobile .header-link{
        font-size: 30px;
        display: flex;
        align-items: center;
        color: #000;
        transition: ease .3s;
    }
	

}

/* MOBILE */
@media screen and (max-width: 1115px){
    .main-footer .copyright{
        flex-direction: column;
    }
}

@media screen and (max-width: 1000px){
    .main-footer .container{
        flex-direction: column;
        gap: 50px;
    }
    .main-footer .redes{
        order: 1;
    }
    .main-footer .copyright{
        order: 2;
    }
}

@media screen and (max-width: 600px){
    .header-mobile{
        right: -100%;
    }

    .contato-btn.desktop{
        display: none;
    }
}

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

}

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

}