/* ----- MENU ----- */
.header.fixed{
    background-color: #000000c2;
    transition: ease .3s;
}
.header.fixed::after{
    display: none;
}
.header .logo-branco img{
    filter: brightness(0) saturate(100%) invert(99%) sepia(21%) saturate(0%) hue-rotate(23deg) brightness(112%) contrast(100%);
}
.header.fixed .header-menu .header-link{
    font-weight: 500;
}
.header{
    width: 100%;
    height: 111px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 50;
    background-color: #fff0;
    transition: ease .3s;
}
.header::after{
    content: "";
    position: absolute;
    bottom: 0;
    max-width: 1520px;
    width: 100%;
    height: 1px;
    background-color: #ffffff57;
}
.header-container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 50px;
}
.header-logo{
    width: fit-content;
}
.header-logo img{
  	width: 323px;
    height: 62px;
}
.header-menu,
.header-menu ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    position: relative;
}
.header-menu ul li{
    height: 100%;
    align-content: center;
}
.header-menu ul li a.instagram i{
    color: #fff;
    font-size: 20px;
}
.header-menu .header-link{
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: ease .3s;
    position: relative;
}
.header-menu .header-link::after{
    content: "";
    position: absolute;
    bottom: -5px;
    width: 5px;
    height: 1px;
    background-color: #fff;
    transition: ease .3s;
}
.header-menu .header-link:hover::after{
    width: 100%;
    transition: ease .3s;
}
/* MOBILE */
.menu-hamburguer{
    display: none;
}
.close-mobile{
    display: none;
}
.header-mobile,
.mobile-menu{
    display: none;
}
.open-mobile i{
    color: #fff;
    font-size: 25px;
}
a.close-mobile{
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
    border-bottom: none!important;
    padding: 0!important;
}
.close-mobile i{
    color: #000;
    font-size: 25px;
    transition: ease .3s;
}
a.close-mobile:hover i{
    color: var(--cor-1);
    transition: ease .3s;
}


/* FOOTER */
.footer{
    width: 100%;
    background-color: #06264C;
    padding: 50px 0;
    position: relative;
    align-items: center;
    justify-content: center;
}
.footer .container{
    gap: 50px;
}
.footer .main-footer{
    width: 100%;
    position: relative; 
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
/* COLUNA LOGO */
.footer .main-footer .footer-logo{
    width: 293px;
}
.footer .main-footer .footer-logo img{
	width: 293px;
    height: 55.59px;
}
/* MENU OPÇÕES */
.footer .main-footer .footer-itens{
    max-width: 520px;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
}
.footer .main-footer .footer-itens a{
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: ease .3s;
    position: relative;
}
.footer .main-footer .footer-itens a.instagram i{
    color: #fff;
    font-size: 20px;
}
.footer .main-footer .footer-itens a.instagram::after i{
    display: none;
}
.footer .main-footer .footer-itens a::after{
    content: "";
    position: absolute;
    bottom: -5px;
    width: 5px;
    height: 1px;
    background-color: #fff;
    transition: ease .3s;
}
.footer .main-footer .footer-itens a:hover::after{
    width: 100%;
    transition: ease .3s;
}
.footer .main-footer .email a{
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    transition: ease .3s;
    position: relative;
}
.footer .main-footer .email a::after{
    content: "";
    position: absolute;
    bottom: -5px;
    width: 5px;
    height: 1px;
    background-color: #fff;
    transition: ease .3s;
}
.footer .main-footer .email a:hover::after{
    width: 100%;
    transition: ease .3s;
}
.footer .divisor{
    max-width: 1520px;
    width: 100%;
    height: 1px;
    background-color: #ffffff57;
}
/* COPYRIGHT */
.footer  .copyright{
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 20px;
}
.footer .copyright p{
    text-transform: uppercase;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px 5px;
}


.flutuante{
    position: fixed;
    bottom: 10px;
    right: 5px;
    z-index: 11;
    transition: ease .3s;
}
.flutuante:hover{
    scale: 1.2;
    transition: ease .3s;
}
.flutuante img{
    width: 73px;
    height: fit-content;
    object-fit: contain;
}


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

}

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

}

@media screen and (max-width: 1366px){
    .header-menu, .header-menu ul{
        gap: 30px;
    }
}

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

@media screen and (max-width: 1270px){
    .header .btn-suporte.desktop{
        margin-left: auto;
    }
    /* 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{
        max-width: calc(100% - 40px);
        width: 100%;
        height: fit-content;
        margin-bottom: 50px;
    }
    .header-mobile .header-logo img{
        width: 100%;
        height: fit-content;
    }
    .header-mobile ul{
        gap: 20px;
    }
    .header-mobile .header-link{
        font-size: 30px;
        transition: ease .3s;
        display: flex;
        align-items: center;
        color: #000;
        transition: ease .3s;
    }
    .header-mobile .btn-suporte.mobile,
    .header-mobile .btn-suporte.mobile .btn{
        width: 100%;
    }

	.footer .main-footer{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .main-footer .footer-logo{
        width: 100%;
        justify-content: center;
    }

}

/* MOBILE */
@media screen and (max-width: 1000px){
    .header .btn-suporte.desktop{
        display: none;
    }

    .footer  .copyright{
        flex-direction: column;
    }
}

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

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

    .footer .main-footer .footer-itens{
        flex-direction: column;
        gap: 35px;    
    }

    
}

@media screen and (max-width: 400px){
    .header.fixed{
        height: 80px;
    }

    .footer .main-footer .footer-logo img{
        max-width: 293px;
        width: 100%;
        height: fit-content;
    }
}

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

}
