.side-menu {
    position: fixed;
    top: 0;
    right: 0;  
    width: 314px;
    height: 100%;
    background-color: var(--off-white-100);
    color: var(--preto-950);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    padding: 1.438rem 1.353rem;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform .3s ease;
}

.side-menu.active {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 900;
}

.overlay.active {
    display: block;
}

.menu-section {
    padding: 0.5rem 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-header img {
    height: 31px;
}

.close-icon img {
    height: 13.23px;
}

hr {
    border: none;
    border-top: 1px solid #dadad9;
    margin: 0.5rem 0;
}

.menu-links .menu-item {
    padding: 0.75rem 0;
    cursor: pointer;
    color: var(--preto-950);
}

.menu-links .menu-item.dropdown {
    display: flex;
    flex-direction: column; 
}

.menu-links .menu-item.dropdown .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}


.menu-links .dropdown-menu-side {
    display: none;             
    flex-direction: column;    
    list-style: none;          
    padding-left: 1rem;        
    margin-top: 1rem;
    gap: 0.5rem;
}

.menu-links .dropdown.active .dropdown-menu-side {
    display: flex;             
}


.menu-links .menu-item a {
    text-decoration: none;
    color: var(--preto-950);
}

.menu-externos .menu-item-externo {
    display: block;
    padding: 0.75rem 0;
    color: var(--vermelho-500);
    text-decoration: none;
}

