/* Sidebar */
.sidebar {
    position: fixed;
    left: -250px;
    /* Oculto por defecto */
    width: 250px;
    height: 100vh;
    background-color: var(--sec_700);
    color: white;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.sidebar .menu-categorias {
    padding: 20px;
}

.sidebar .menu-item {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.2s ease;
}

.sidebar .menu-item i {
    margin-right: 10px;
    padding-bottom: 10px;
}

.sidebar.active {
    left: 0;
}

.menu-item:hover {
    transform: scale(1.2);
    translate: 8%;
    /* Agranda el ícono */
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}