/* ----- MENU ----- */
.header{
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 50;
    background-color: transparent;
    transition: ease .3s;
}
.header.fixed{
    height: 90px;
    background-color: #00000054;
    transition: ease .3s;
}
.header.fixed .header-logo{
    width: 105px;
}
.header-container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: 137px;
}
.header-logo img{
  	width: 100%;
}
.header-logo .logo-1{
    display: flex;
    transition: ease .3s;
}
.header-logo .logo-2{
    display: none;
    transition: ease .3s;
}
.header.fixed .header-logo .logo-1{
    display: none;
    transition: ease .3s;
}
.header.fixed .header-logo .logo-2{
    display: flex;
    transition: ease .3s;
}
.header-menu{
    max-width: 1065px;
    width: 100%;
}
.header-menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    gap: 81px;
}
.header-mobile ul .btn-box,
.header-menu ul .btn-box{
    max-width: 265px;
    width: 100%;
}
.header-mobile ul .btn-box a,
.header-menu ul .btn-box a{
    width: 100%;
    height: 100%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-menu ul .btn-box a{
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}
.header-menu ul li{
    height: 100%;
    align-content: center;
}
.header-menu .header-link-1,
.header-menu .header-link {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: ease .3s;
}
.header-menu .header-link-1:hover,
.header-menu .header-link:hover{
    text-decoration: underline;
    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;
}




/* FOOTER */
.footer{
    width: 100%;
    padding: 40px 0;
    position: relative;
    background-color: var(--primaria);
}
.footer .container{
    display: flex;
    align-items: center;
    gap: 50px 30px;
    justify-content: space-between;
}
.footer .footer-logo{
    max-width: 176px;
    width: 100%;
}
.footer .footer-logo a,
.footer .footer-logo a img{
    width: 100%;
    object-fit: contain;
}
.footer .footer-infos{
    display: flex;
    align-items: center;
    gap: 50px;
}
.footer .footer-infos a,
.footer .footer-infos div{
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 200;
    transition: ease .3s;
}
.footer .footer-infos a:hover{
    color: red;
    transition: ease .3s;
}
.footer .footer-infos a i{
    color: #fff;    
}
.bg-Vector_1 {
    width: 32px; height: 32px;
    background: url('../imagens/header/css_sprites.png') -102px -123px;
}
.bg-Vector {
    width: 32px; height: 32px;
    background: url('../imagens/header/css_sprites.png') -154px -123px;
}
.bg-Group_92 {
    width: 26px; height: 34px;
    background: url('../imagens/header/css_sprites.png') -215px -10px;
}
.footer .footer-redes{
    display: flex;
    gap: 10px;
}
.footer .footer-redes a i{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    border: 3px solid #fff;
    color: #fff;
    font-size: 30px;
}
.footer .footer-redes a i:hover{
    border: 3px solid red;
    color: red;
}

.flutuante{
    position: fixed;
    bottom: 15%;
    right: 20px;
    z-index: 11;
    transition: ease .3s;
}
.flutuante:hover{
    scale: 1.2;
    transition: ease .3s;
}
.flutuante .bg-zap {
    display: flex;
    width: 93px; height: 93px;
    background: url('../imagens/header/css_sprites.png') -10px -10px;
}




/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){
    .header-menu{
        max-width: calc(100% - 137px - 30px);
    }
    .header-menu ul {
        justify-content: space-between;
        gap: 30px;
    }
}

@media screen and (max-width: 1440px){
    .header-menu .header-link-1, 
    .header-menu .header-link,
    .header-menu ul .btn-box a{
        font-size: 16px;
    }

    .footer .footer-logo{
        max-width: 15%;
    }
    .footer .footer-infos a, .footer .footer-infos div{
        font-size: 1.2vw;
    }
    .footer .footer-redes a i{
        width: 4vw;
        height: 4vw;
        font-size: 2vw;
    }
}

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

}

@media screen and (max-width: 1280px){
    .header-logo{
        width: 120px;
    }
    /* 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: 600px;
        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-1,
    .header-mobile .header-link{
        font-size: 30px;
        transition: ease .3s;
        display: flex;
        align-items: center;
        color: #000;
        transition: ease .3s;
    }
    .header-mobile .header-link-1 i,
    .header-mobile .header-link i{
        color: #000;
        font-size: 12px;
        margin-left: 7px;
    }

	
    .footer .footer-infos a, .footer .footer-infos div{
        font-size: 1.4vw;
    }
    .footer .footer-redes a i{
        width: 5vw;
        height: 5vw;
        font-size: 2vw;
    }
}

/* MOBILE */
@media screen and (max-width: 1100px){
    .header-logo{
        width: 110px;
    }

    .footer .container{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer .footer-logo{
        max-width: 140px;
    }
    .footer .footer-infos a, .footer .footer-infos div{
        font-size: 18px;
    }
    .footer .footer-redes a i{
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media screen and (max-width: 900px){
    .footer .footer-infos{
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .main-footer .container .copyright{
        flex-direction: column;
    }
    .main-footer .container .copyright h5, 
    .main-footer .container .copyright h5 span{
        justify-content: center;
    }
}

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

}

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

}