/* === MENÚ MÓVIL (BOTONES INDEPENDIENTES REDONDEADOS) === */
.mobile-sidebar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent; /* Quitamos la franja verde */
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    pointer-events: none; /* para evitar interferencias fuera de botones */
    margin: 70px auto;
}

.menu-mobile {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px; /* espacio entre botones */
    list-style: none;
    margin: 0;
    padding: 0;
    pointer-events: all; /* volver a activar interacciones en botones */
}

.menu-mobile li a {
    background-color: #349B7D;
    color: white;
    font-size: 22px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 50px; /* redondeado total */
    display: inline-block;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.menu-mobile li a:hover {
    background-color: #F8AE00;
}

.menu-mobile .disabled {
    background-color: #ccc;
    color: white;
    font-size: 22px;
    padding: 12px 16px;
    border-radius: 50px;
    display: inline-block;
    pointer-events: none;
    opacity: 0.6;
}

/* === OCULTAR ELEMENTOS DE ESCRITORIO === */
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .container {
        flex-direction: column;
        padding-bottom: 90px; /* más espacio si los botones ocupan más altura */
    }
}
