/* ----- MENU ----- */
.header{
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 50;
    background-image: linear-gradient(90deg, rgba(157, 119, 67, 1) 0%, rgba(147, 96, 55, 1) 100%);
}
.header-container{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-logo{
    width: fit-content;
}
.header-logo img{
  	width: fit-content;
}
/* MENU MOBILE */
.mobile-menu{
    display: flex;
}
.header-menu{
    display: none;
    font-size: 25px;
}
.header-mobile{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 30px;
    position: fixed;
    max-width: 400px;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #00000091;
    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: 40px;
}
.header-mobile .header-logo{
    height: fit-content;
    margin-bottom: 50px;
}
.header-mobile .header-link{
    font-size: 30px;
    transition: ease .3s;
    display: flex;
    align-items: center;
    color: #fff;
    transition: ease .3s;
}
.header-mobile .header-link:hover{
    transition: ease .3s;
    transform: translateX(20px);
}
.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: #fff;
    font-size: 25px;
    transition: ease .3s;
}
a.close-mobile:hover i{
    transform: scale(1.2);
    transition: ease .3s;
}



/* ----- FOOTER ----- */
footer{
    width: 100%;
    background-color: #272727;
    padding: 100px 0;
}
footer .container{
    justify-content: space-between;
    gap: 50px;
}
footer .menu-1{
    max-width: 300px;
    width: 100%;
    gap: 30px;
}
footer .menu-1 .f-logo{
    width: fit-content;
}
footer .menu-1 .f-logo img{
    width: fit-content;
}
footer .menu-1 .redes{
    width: 100%;
    gap: 20px;
    justify-content: center;
    margin: 10px 0;
}
footer .menu-1 .redes a i{
    font-size: 35px;
    color: #fff;
}
footer .menu-1 .header-link{
    color: #fff;
    transition: ease .3s;
}
footer .menu-1 .header-link:hover{
    color: var(--cor-1);
    transition: ease .3s;
}
footer .menu-2{
    max-width: 770px;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
}
footer .menu-2 .endereco{
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}
footer .menu-2 .ende{
    width: calc(100% - 20px - 50%);
    flex-direction: column;
    justify-content: space-around;
    gap: 10px;
    color: #fff;
}
footer .menu-2 .ende a{
    font-size: 16px;
    gap: 10px;
    display: flex;
}
footer .menu-2 .ende a,
footer .menu-2 .ende p,
footer .menu-2 .ende a span{
    font-size: 16px;
}


.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: 1100px){
	footer .container{
        flex-direction: column;
        align-items: center;
    }
    footer .menu-1{
        align-items: center;
    }
    footer .menu-1 .header-link{
        width: fit-content;
        text-align: center;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
   .header-mobile{
        background-color: #000000dc;
    }
}

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

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

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

}

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

}