.main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-shadow: 0px 6px 7px 0px rgba(0, 0, 0, 0.15);
    background: #FFF;
}

.header-menu {
    display: none;
}

.header-menu-mobile {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 13px 35px 17px 20px;
    box-sizing: border-box;
    height: 56px;
}

.header-menu-mobile-icon {
    width: 20px;
    height: 20px;
}

.logo {
    margin-top: 20px;
}

.custom-logo {
    width: 312px;
    height: auto;
}

.header-menu .sub-menu {
    display: none;
    position: absolute;
    background: #BFE2FF;
    margin: 10px 0 0 -20px;
    padding: 0 24px;
    border-radius: 8px;
    z-index: 999;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.3);
}

.header-menu .sub-menu a {
    color: var(--bs-gray-800);
}

.menu-mobile {
    display: none;
    position: absolute;
    top: 158px;
    width: 80%;
    background-color: #BFE2FF;
    border-radius: 8px;
    z-index: 999;
    font-family: "Baloo 2", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--bs-gray-800);
    box-sizing: border-box;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.3);
}

.menu-mobile ul {
    margin-top: 16px;
}

.menu-mobile li {
    list-style: none;
    padding: 10px 0;
}

.menu-mobile-link {
    font-family: "Baloo 2", sans-serif;
    color: var(--bs-gray-800);
    font-weight: 500;
    font-size: 0.937rem;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
}

.menu-mobile-dropdown-supera {
    display: flex;
    justify-content: space-between;
}

.menu-mobile-dropdown-produtos {
    display: flex;
    justify-content: space-between;
}

#menu-mobile-dropdown-supera {
    display: none;
}

#menu-mobile-dropdown-produtos {
    display: none;
}

.menu-mobile-dropdown-supera-icone svg {
    padding-right: 20px;
    stroke: var(--bs-gray-800) !important;
}

.header-menu-controls {
    display: flex;
    margin-left: auto;
    gap: 16px;
    align-items: center;
}

#aumenta-fonte, #diminui-fonte {
    cursor: pointer;
}

@media (min-width: 576px) {
    .custom-logo {
        width: 462px;
        height: auto;
    }

    .menu-mobile {
        top: 235px;
    }
}

@media (min-width: 768px) {
    .logo img {
        width: 622px;
        height: auto;
    }

    .header-menu-mobile {
        padding: 12px 73px 14px 20px;
    }
}

@media (min-width: 992px) {
    .menu {
        display: flex;
        flex-wrap: wrap;
        margin-left: 0;
        margin-top: 20px;
        gap: 10px;
    }

    .main-header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        height: 140px;
        padding: 20px 0 0 0;
    }

    .header-menu {
        display: flex;
        gap: 36px;
    }

    .header-menu-mobile {
        display: none;
    }

    .header-menu li {
        list-style: none;
    }

    .header-menu a {
        font-family: "Baloo 2", sans-serif;
        color: #4d4d4d;
        font-weight: 700;
        font-size: 0.9375rem;
        text-transform: uppercase;
    }

    .header-menu a:hover{
        color: var(--bs-gray-800);
    }

    .logo {
        margin-top: 0;
    }
    
    .logo img {
        width: 220px;
        height: auto;
    }

        /* Estilo para os itens de menu com submenus */
        .header-menu li.menu-item-has-children a {
            display: flex; /* Flexbox para alinhar o texto e a seta */
            align-items: center; /* Alinha a seta e o texto no centro */
        }
    
        /* Estilo para o SVG da seta */
        .header-menu li.menu-item-has-children svg {
            margin-left: 4px;
            stroke: var(--bs-gray-800);
            fill: none;
            padding: 0;
            transform: rotate(0deg);
        }
    
        .sub-menu li {
            margin: 12px 16px 12px 0;
        }
    
}

@media (min-width: 1200px) {
    .logo img {
        width: 265px;
        height: auto;
    }

    .main-header {
        height: 150px;
    }


}

@media (min-width: 1400px) {

    .main-header {
        display: flex;
        align-items: center;
        width: 100%;
        height: 189px;
    }

    .logo img {
        width: 420px;
        max-width: 100%;
        height: auto;
    }
    
    .header-menu li {
        list-style: none;
    }

    .header-menu a:hover{
        color: var(--bs-gray-800);
    }
    
    .header-menu-hasicon {
        display: block;
        width: 14px;
        height: auto;
    }
    
    .header-menu-hasicon svg {
        fill: var(--bs-primary);
        margin-top: 5px;
    }
}