main{
    padding-top: 113px;
    padding-bottom: 150px;
    background-color: var(--bg3);
}

/* ----- MENU ----- */
.header{
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 50;
    background-color: var(--cor-4);
    transition: ease .3s;
}
.header.fixed{
    background-color: var(--cor-4);
    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%;
}
.header-menu .whats,
.header-menu .whats i{
    color: #fff;
    font-size: 18px;
}
.header-menu{
    max-width: calc(100% - 220px);
    width: 100%;
}
.header-menu,
.header-menu ul {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 45px;
    position: relative;
}
.header-menu ul{
    width: 688px;
    margin: 0 auto;
}
.header-menu ul li{
    height: 100%;
    align-content: center;
}
.header-menu .header-link {
    text-decoration: none;
    color: var(--cor-6);
    font-size: 18px;
    font-weight: 500;
    font-family: var(--fonte-1);
    text-transform: uppercase;
    transition: ease .3s;
}
.header-menu .header-link i{
	color: var(--cor-6);
    font-size: 12px;
    margin-left: 5px;
}
.header-menu ul li .hover1,
.header-mobile ul li .hover1{
    display: none;
}
.header-menu .header-link:hover,
.header-menu .header-link:hover i,
.header-menu .header-link.active,
.header-menu .header-link.active i,
.header-menu .whats:hover{
    text-decoration: underline;
    transition: ease .3s;
}
.header-menu  .hover-btn:hover .hover1{
    min-width: 150px;
    max-width: 300px;
    display: flex;
    position: absolute;
    background-color: var(--cor-4);
    flex-direction: column;
    padding: 10px 20px;
    gap: 15px;
    z-index: 10;
    border-radius: 5px;
    top: 60px;
    left: -20px;
}
/* MOBILE */
.menu-hamburguer{
    display: none;
}
.close-mobile{
    display: none;
}
.header-mobile,
.mobile-menu{
    display: none;
}
.open-mobile i{
    color: var(--cor-6);
    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{
    color: red;
    transition: ease .3s;
}



/* FOOTER */
.footer{
    margin-top: -50px;
    width: 100%;
    padding: 100px 0 50px 0;
    position: relative;
    background-color: var(--bg2);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}
.footer .container{
    gap: 100px;
}
.main-footer{
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 75px;
}
/* COLUNA LOGO */
.main-footer .footer-logo{
    max-width: 288px;
    width: 100%;
    flex-direction: column;
    gap: 40px;
}
.main-footer .footer-logo a,
.main-footer .footer-logo img{
	width: 100%;
}
/* MENU OPÇÕES */
.main-footer .footer-itens{
    max-width: 700px;
    width: 100%;
    justify-content: space-between;
}
.main-footer .footer-itens .menu-footer{
    gap: 15px;
}
.main-footer .footer-itens .menu-footer h5{
    color: var(--cor-6);
    font-size: 24px;
    font-family: var(--fonte-1);
    font-weight: 500;
}
.main-footer .footer-itens .menu-footer.menu a{
    color: var(--cor-6);
    font-size: 24px;
    font-weight: 500;
    font-family: var(--fonte-1);
    transition: ease .3s;
}
.main-footer .footer-itens .menu-footer.servico a{
    color: var(--cor-6);
    font-size: 16px;
    transition: ease .3s;
}
.main-footer .footer-itens .menu-footer.menu a:hover,
.main-footer .footer-itens .menu-footer.servico a:hover{
    text-decoration: underline;
    transition: ease .3s;
}
.main-footer .footer-itens .menu-footer.redes{
    gap: 25px;
}
.main-footer .footer-itens .redes-div{
    gap: 15px;
}
.main-footer .footer-itens .redes a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--cor-6);
    font-size: 16px;
    transition: ease .3s;
}
.main-footer .footer-itens .redes a i{
    font-size: 16px;
}
.main-footer .footer-itens .redes-div a i{
	color: var(--cor-6);
    font-size: 20px;
    transition: ease .3s;
}
/* COPYRIGHT */
.footer .footer-bottom{
    display: flex;
    justify-content: center;
    width: 100%;
}
.footer .footer-bottom p{
    color: #D6C0B9;
    font-size: 14px;
}



.flutuante{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 5px;
    background-color: #50CE50;
    bottom: 15%;
    right: 30px;
    z-index: 11;
    transition: ease .3s;
}
.flutuante:hover{
    scale: 1.2;
    transition: ease .3s;
}
.flutuante img{
    width: 24px;
    height: 24px;
}


/* 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){
    .header-menu{
        gap: 10px;
        justify-content: space-between;
    }
    .header-menu ul{
        width: 600px;
        gap: 10px;
        justify-content: space-between;
    }
    .header-menu .header-link{
        font-size: 16px;
    }
    .header-menu .whats, .header-menu .whats i{
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px){
    .main-footer .footer-itens{
        max-width: calc(100% - 275px);
    }
}

/* MOBILE */
@media screen and (max-width: 1100px){
    /* 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: var(--cor-4);
        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-top: 5px;
        margin-bottom: 50px;
    }
    .header-mobile ul{
        gap: 20px;
    }
    .header-mobile .header-link{
        font-size: 24px;
        transition: ease .3s;
        display: flex;
        align-items: center;
        color: #fff;
        transition: ease .3s;
    }
    .header-mobile .header-link i{
        color: #fff;
        font-size: 12px;
        margin-left: 7px;
    }
    .header-mobile .hover-btn .hover1.open{
        display: flex;
    }
    .header-mobile .hover-btn .hover1{
        display: none;
        flex-direction: column;
        padding: 10px 20px;
        gap: 15px;
    }
    .header-mobile .hover-btn .hover1 a{
        font-size: 20px;
        color: #fff;
    }
    .header-container .header-mobile .contato{
        max-width: 200px;
        font-size: 25px;
    }
}

@media screen and (max-width: 1000px){
    .main-footer{
        flex-direction: column;
        align-items: center;
    }
    .main-footer .footer-itens{
        max-width: 700px;
    }
}

@media screen and (max-width: 800px){
    .main-footer .footer-itens{
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    .main-footer .footer-itens .menu-footer{
        align-items: center;
    }
}

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

    .flutuante{
        width: 50px;
        height: 50px;
    }
}

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

}

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

}