.menu-icon svg {
    font-size: 36px; 
    cursor: pointer; 
    margin-bottom: -20px;
    margin-right: 20px;
}

.menu-icon .icon-path { 
    stroke: var(--azul-menu-icon); 
}

.menu {
    position: fixed;
    top: 116px;
    background-color: var(--white);
    width: 366.66px;
    height: auto;
    display: none;
    list-style-type: none;
    padding: 0;
    margin: -2px 0 40px 0;
    z-index: 13;
}

.menu-item {
    width: 366px;
    position: static;
} 

.menu-item a {
    display: block;
    position: relative;
    padding: 12px 16px;
    text-decoration: none;
    color:  var(--blue-300);
    list-style-type: none;
    border-bottom: 1px solid #e9e9e9;
}

.menu-item a:hover {
    background-color: #f1f1f1;
}

.menu-item-has-children > a {
    display: flex;
    justify-content: space-between;   
}

.menu-item-has-children > a::after {
    content: '\276F';
}

.sub-menu {
    width: 366.66px;
    height: auto;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    left: 100%;
    top: 200px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    z-index: 12;
    box-shadow: 8px 0 15px 0 rgba(0, 0, 0, 0.374);
}

.menu-item-has-children > .sub-menu {
    top: 0;
    max-height: 100vh;
}

.menu-item-has-children {
    /* position: relative; */
}

/* .menu-item-has-children:hover > .sub-menu {
    position: absolute;
    display: block;
    top: 0; 
    left: 366px;
    transform: translateY(0);
} */

.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
}

.menu-item-has-children .sub-menu .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.font-size-minus{
    color:  var(--blue-300);
    margin-left: 30px;
}

.font-size-plus{
    color:  var(--blue-300);
    margin-left: 30px;
}

.back-button{
    display: block;
    background-color:  var(--blue-400);
    color:  var(--negativo);
}

.back-icon {
    display: inline-block;
    font-size: 1.5em; 
    margin: -10px 18px -10px 10px; 
}

.back-button a{
    color:  var(--negativo) !important;
}

.back-button a:focus, .back-button a:hover{
    background-color:  var(--blue-400);
}

@media (max-width: 575.98px) {
    
    .header-menu-mobile {
        display: none; 
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color:  var(--negativo); 
        z-index: 22; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
    }
    
    .header-menu-mobile .row {
        width: 100%;
        padding: 10px 20px; 
    }
    
    .header-menu-mobile .col-6 {
        width: 50%; 
        float: left;
    }
    
    .header-menu-mobile .text-right {
        text-align: right;
    }
    
    .header-menu-mobile img {
        max-width: 100px; 
        height: auto;
    }
    
    #myMenu {
        display: none;
        position: fixed;
        padding-top: 60px;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        z-index: 20;
        overflow: auto; 
        list-style-type: none;
        margin: 0;
        padding-left: 0;
    }

    #myMenu .sub-menu {
        display: none;
        position: fixed;
        padding-top: 56px;
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 20;
        height: 100vh;
        margin: 0;
        padding-left: 0;
    }
    
    #myMenu a {
        display: block;
        padding: 10px;
        color:  var(--blue-300);
        text-decoration: none;
        list-style-type: none;
    }

    #myMenu .menu-item-has-children > a:after {
        content: "\203A"; 
        display: inline-block;
        margin-top: -10px;
        font-size: 24px;
        font-weight: bold;
    }
    
    .menu-item-has-children > a {
        justify-content: space-between;
    }
    
    .menu-item-has-children > a::after {
        position: absolute;
        right: 16px; /* Posiciona a setinha no final do menu item */
        content: '\2192'; /* Código da setinha para a direita */
    }

    #myMenu ul {
        list-style-type: none; 
        padding-left: 0; 
    }

    .menu-item-has-children {
        position: static;
    }

    .btn-close{
        font-size: 1.2rem;
        margin-right: -30px !important;
    }

    .menu-icon {
        color: #1351b4;
        margin-left: -16px;
        margin-bottom: 20px;
    }
    
    .menu, .menu-item, .sub-menu {
        width: 100%;
    }
    
    .menu-item-has-children:hover > .sub-menu {
        left: 0;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) { 

}

@media (min-width: 768px) and (max-width: 991.98px) {
    
}

@media (min-width: 992px) and (max-width: 1199.98px) {

}

@media (min-width: 1200px) {
    
}
