.mini-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 3000; /* Prioridad máxima */
}

/* Estilo del botón circular */
.menu-icon-btn {
    background:#1d413d ; /* Color guinda institucional */
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.menu-icon-btn:hover {
    background: #408b6e;
    transform: scale(1.1);
}

/* Caja de enlaces */
.menu-links {
    position: absolute;
    top: 60px;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Clase para mostrar el menú con JS */
.menu-links.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-header {
    background: #f4f4f4;
    padding: 10px 15px;
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    font-weight: bold;
    letter-spacing: 1px;
}

.menu-links li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.menu-links li a:hover {
    background: #408b6e;
    color: white;
}
