/* ----- MENU ----- */
.header{
    width: 100%;
    height: 77px;
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 50;
    top: 0;
    background-color: #ffffff80;
    backdrop-filter: blur(10px);
}
.header .header-container{
    height: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
}
.header .header-logo{
    width: fit-content;
    margin-right: auto;
}
.header .header-logo img{
    max-width: 243px;
  	width: 100%;
}
.header .header-menu{
    max-width: 598px;
    width: 100%;
    height: 100%;
    display: flex;
}
.header .header-menu ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    position: relative;
}
.header .header-menu ul li{
    height: 100%;
    align-content: center;
    position: relative;
}
.header .header-menu .header-link {
    text-decoration: none;
    color: var(--primaria);
    position: relative;
    transition: ease .3s;
}
.header .header-menu .header-link::after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background-color: #000;
}
.header .header-menu .header-link i{
	color: var(--primaria);
    font-size: 11px;
}
.header .header-menu .header-link:hover::after{
    width: 100%;
    transition: ease .3s;
}
.header .header-menu ul li .hover1,
.header .header-mobile ul li .hover1{
    display: none;
}
.header .header-menu .hover-btn:hover .hover1{
    width: fit-content;
    max-width: 300px;
    display: flex;
    position: absolute;
    background-color: #000;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    z-index: 10;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    top: 76px;
    left: -20px;
    white-space: nowrap
}
.header .header-menu .hover-btn .hover1 a{
    width: fit-content;
	color: #fff;
	transition: ease .3s;
}
.header .header-menu .hover-btn .hover1 a:hover{
	color: var(--cor-1);
	transition: ease .3s;
}
.header .header-menu .btn-contato,
.header .header-mobile .btn-contato{
    display: flex;
    width: fit-content;
    min-height: 47px;
    padding: 10px 20px;
    background-color: var(--cor-1);
    color: #fff;
    border-radius: 5px;
    border: 1px solid #00000033;
    align-items: center;
    text-align: center;
}
.header .header-container .div{
    width: 2px;
    height: 29px;
    background-color: #00000033;
    margin: auto 0;
}
.header .header-container .carrinho{
    position: relative;
}
.header .header-container .carrinho a{
    position: relative;
}
.header .header-container .carrinho a span{
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: -18px;
    right: -8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--cor-1);
    padding: 5px;
    color: #fff;
    font-size: 8px;
}
.header .header-container .carrinho a span.ativo{
    display: flex;
}
/* MOBILE */
.header .menu-hamburguer{
    display: none;
}
.header .close-mobile{
    display: none;
}
.header .header-mobile,
.header .mobile-menu{
    display: none;
}
.header .open-mobile i{
    color: var(--primaria);
    font-size: 25px;
}
.header a.close-mobile{
    display: flex;
    position: absolute;
    right: 25px;
    top: 25px;
    border-bottom: none!important;
    padding: 0!important;
}
.header .close-mobile i{
    color: var(--primaria);
    font-size: 25px;
    transition: ease .3s;
}
.header a.close-mobile:hover i{
    color: var(--cor-1);
    transition: ease .3s;
}


.f-orcamento{
    width: 100%;
    position: relative;
    background-color: var(--cor-1);
    margin-top: 140px;
}
.f-orcamento .container{
    min-height: 332px;
    margin: 0 auto;
    justify-content: space-between;
}
.f-orcamento .texto{
    max-width: 600px;
    width: 100%;
    padding: 50px 0;
    align-self: center;
    gap: 15px;
}
.f-orcamento .texto .btn{
    background-color: #fff;
    color: #000;
    border: 1px solid #00000033;
    margin-top: 15px;
}
.f-orcamento .img{
    max-width: 602px;
    width: 100%;
    position: relative;
    background-image: url(../imagens/header/f2.png);
    background-size: auto;
    background-position: center center;
    background-repeat: no-repeat;
}
.f-orcamento .img img{
    max-width: 400px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}


/* FOOTER */
.footer{
    width: 100%;
}
.footer .menu-nav{
    width: 100%;
    background-color: #161616;
    padding: 40px 0;
}
.footer .menu-nav .container{
    gap: 40px;
}
/* MENU OPCOES */
.footer .menu-nav .menu{
    width: 100%;
    justify-content: space-between;
}
.footer .menu-nav .menu .logo{
    max-width: 143px;
    width: 100%;
}
.footer .menu-nav .menu .logo img{
    width: 100%;
}
.footer .menu-nav .menu ul{
    max-width: 646px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.footer .menu-nav .menu ul li{
    position: relative;
}
.footer .menu-nav .menu ul li a{
    color: #fff;
    position: relative;
}
.footer .menu-nav .menu ul li a::after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background-color: #fff;
}
.footer .menu-nav .menu ul li a i{
	color: #fff;
    font-size: 11px;
}
.footer .menu-nav .menu ul li a:hover::after{
    width: 100%;
    transition: ease .3s;
}
.footer .menu-nav .menu ul .hover-btn .hover1{
	display: none;
    width: max-content;
    max-height: 250px;
    overflow: auto;
    position: absolute;
    background-color: #fff;
    flex-direction: column;
    z-index: 10;
    bottom: 30px;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 3px;
}
.footer .menu-nav .menu ul .hover-btn .hover1 a {
    color: #000;
    position: relative;
}
.footer .menu-nav .menu ul .hover-btn .hover1 a::after{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 1px;
    background-color: #000;
}
.footer .menu-nav .menu ul .hover-btn .hover1 a:hover::after{
    width: 100%;
    transition: ease .3s;
}
/* DIVISOR */
.footer .menu-nav .div{
    width: 100%;
    height: 1px;
    background-color: #ffffff12;
}
/* INFORMACOES/REDES */
.footer .menu-nav .contato{
    width: 100%;
    justify-content: space-between;
    gap: 15px 30px;
}
.footer .menu-nav .contato .infos{
    max-width: 905px;
    width: 100%;
    gap: 30px;
    justify-content: space-between;
}
.footer .menu-nav .contato .infos a{
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer .menu-nav .contato .redes{
    gap: 15px;
}
.footer .menu-nav .contato .redes a i{
    font-size: 20px;
}
.footer .menu-nav .contato a{
    transition: ease .3s;
}
.footer .menu-nav .contato a:hover{
    color: var(--cor-1);
    transition: ease .3s;
}
/* COPYRIGHT */
.footer .copyright{
    width: 100%;
    background-color: #000;
}
.footer .copyright .container{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
}
.footer .copyright a{
    width: fit-content;
}
.footer .copyright a img{
    width: 33px;
    height: 18px;
}
.footer .copyright p{
    color: #fff;
}


.flutuante{
    position: fixed;
    bottom: 30px;
    right: 10px;
    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){
    .f-orcamento .img{
        background-size: contain;
    }
}

@media screen and (max-width: 1000px){
    /* MENU MOBILE */
    .header .header-container .div{
        display: none;
    }
    .header .mobile-menu{
        display: flex;
    }
    .header .header-menu{
        display: none;
        font-size: 25px;
    }
    .header .header-mobile{
        display: flex;
        flex-direction: column;
        padding: 10px 30px 50px 30px;
        position: fixed;
        max-width: 600px;
        width: 100%;
        height: 100vh;
        overflow: auto;
        background-color: #fff;
        top: 0;
        right: -100%;
        z-index: 50;
        transition: right 0.5s;
        margin-top: 0;
        gap: 20px;
    }
    .header .header-mobile.opened {
        right: 0;
    }
    .header .header-mobile ul{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .header .header-mobile .header-logo{
        height: fit-content;
        margin-bottom: 50px;
        margin-top: 10px;
    }
    .header .header-mobile ul{
        gap: 20px;
    }
    .header .header-mobile .btn-contato{
        font-size: 20px;
    }
    .header .header-mobile .header-link{
        font-size: 25px;
        transition: ease .3s;
        display: flex;
        align-items: center;
        color: var(--primaria);
        transition: ease .3s;
    }
    .header .header-mobile .header-link i{
        color: var(--primaria);
        font-size: 12px;
        margin-left: 7px;
    }
    .header .header-mobile .header-link:hover{
        color: var(--cor-1);
        transition: ease .3s;
    }
    .header .header-mobile .hover-btn .hover1.open{
        display: flex;
    }
    .header .header-mobile .hover-btn .hover1{
        display: none;
        flex-direction: column;
        padding: 10px 20px;
        gap: 15px;
    }
    .header .header-mobile .hover-btn .hover1 a{
        font-size: 22px;
        color: var(--primaria);
    }
    
    .f-orcamento{
        margin-top: 0;
    }
    .f-orcamento .container{
        flex-direction: column;
        align-items: center;
    }
    .f-orcamento .texto{
        align-items: center;
        text-align: center;
    }
    .f-orcamento .img{
        background-position: center bottom;
        justify-content: center;
    }
    .f-orcamento .img img{
        position: relative;
        left: unset;
        bottom: unset;
    }

    .footer .menu-nav .menu{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

@media screen and (max-width: 800px){
    .footer .menu-nav .menu ul{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer .menu-nav .contato{
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

@media screen and (max-width: 600px){
    .header .header-container{
        gap: 30px;
    }
    .header .header-mobile{
        right: -100%;
    }
    .header .header-logo img {
        max-width: 90%;
    }

    .footer .menu-nav .contato .infos{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .copyright .container{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

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

}

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

}
