header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10%;
    background-color: #000;
    padding-right: 5%;
}

.box-header{
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding-left: 5%;
}

.logo-header{
    width:80%;
}

.image-box{
    width: 5%;
}

.button-header{
    color: #000000;
    border-radius: 50px;
    border: none;
    border: 1px solid #000000;
    background-color: #FFF;
    height: 55%;
    font-weight: 300;
    width: 20%;
    font-size: 0.8rem;
    
}

.button-header-link{
    color: #000;
}
    

    
.button-header:hover{
    background-color: #000;
    color: #FFF;
    border: 1px solid #FFF;
    transition: 0.3s;
}
.button-header:hover > a{
    color: #FFF;
}
.button-header-menu{
    display: none;
}
.ecommerce-box {
    position: absolute;
    top: 100%;
    z-index: 100;
    display: grid;
    grid-template-areas: "white-box black-box";
    grid-template-columns: 34% 66%;
    width: 100%;
    display: none; /* Inicialmente oculto */
}

.white-box{
    display: flex;
    flex-direction: column;
    padding: 12%;
    gap: 10px;
    justify-content: center;
    grid-area: white-box;
    background-color: #FFF;
    padding-left: 14%;
}
.white-box > h3{
    font-size: 0.85rem;
}
.white-box > p{
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 100%;
    width: 100%;
}
.black-box{
    display: flex;
    align-items: center;
    color: #FFF;
    grid-area: black-box;
    background-color: #000;
    padding-left: 5%;
    padding-right: 8%;
}
.vertical-item{
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    width: 50%;
}
.vertical-item > p{
    width: 80%;
    font-size: 0.8rem;
}
.vertical-item > a{
    font-weight: 500;
}

.ecommerce-box-mobile{
    display: none;
}

.teste{
    display: flex;
    justify-content: flex-start;
    width: 100%;
}


.submenu-mobile{
    display: none;
}

@media screen and (max-width: 768px) {
    /* Estilos responsivos para telas com largura máxima de 768px */
    .ecommerce-box{
        display: none !important;
    }

    .submenu-mobile{
        display: flex;
        padding-bottom: 10px;
    }

    .submenu-desk{
        display: none;
    }

    .ecommerce-box-mobile{
        flex-direction: column-reverse;
        height: auto;
    }

    .logo-header {
        width: 145%;
    }

    .image-box {
        width: 20%;
    }

    .fas {
        font-size: 1.9rem !important;
    }

    header {
        height: 10%;
    }

    .box-header {
        display: flex;
        justify-content: space-between;
        padding-left: 10%; /* Ajuste o preenchimento para telas menores */
        padding-right: 10%; /* Ajuste o preenchimento para telas menores */
    }


    .button-header {
        display: none;
    }

    .button-header-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #000000;
        border-radius: 100px;
        border: none;
        border: 1px solid #000000;
        background-color: #FFF;
        font-weight: 400;
        width: 80%;
        font-size: 0.8rem;
        padding: 3%;
        margin-left: 7%;
    }
    .button-link-menu{
        color: #000;
    }
    .button-header-menu:hover{
        background-color: #000;
        color: #FFF;
        border: 1px solid #FFF;
    }
    .localizaz-tech{
       padding-top: 5%;
       padding-bottom: 3%;
    }

    .submenu{
        padding-bottom: 10px;
    }
    .white-box{
        width: 150%;
        padding: 0;
        padding-top: 10%;
        padding-bottom: 10%;
        padding-left: 10%;
    }
    .white-box > h4 {
        font-size: 1.1rem;
    }
    .white-box > p{
        width: 60%;
        font-size: 1rem;
    }
    .menu-list.active {
        padding-left: 0%;
    }
    .black-box {
        display: flex;
        overflow-x: auto; /* Habilita a barra de rolagem horizontal se necessário */
        max-width: 100; /* Aumente a largura máxima */
        height: 20vh;
    }
    .box-mobile-config{
        display: flex;
        padding-left: 6%;
    }
    .vertical-item {
        display: flex;
        width: 200px;
        gap: 5px;
    }
    .vertical-item > p {
        line-height: 20px;
        width: 80%;
    }
    .vertical-item > span {
        line-height: 100%;
        font-size: 1.3rem;
    }
    
    
}

@media (max-width: 667px) {
    .logo-header{
        width: 120%;
    }
}