/* ============================================
   RÁDIOVIX - INTERFACE MOBILE PREMIUM
   Menu inferior estilo Spotify
   ============================================ */

@media (max-width: 768px) {
    /* Menu inferior fixo */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--secondary-color);
        border-top: 1px solid var(--border-color);
        padding: 8px 0;
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .mobile-bottom-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 8px 4px;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin: 0 4px;
    }
    
    .mobile-bottom-nav-item.active {
        color: var(--text-light);
        background: rgba(233, 69, 96, 0.2);
    }
    
    .mobile-bottom-nav-item i {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .mobile-bottom-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
    }
    
    /* Player fixo inferior (quando tocando) */
    .player-flutuante {
        bottom: 60px !important; /* Acima do menu mobile */
    }
    
    /* Espaço para menu inferior */
    body {
        padding-bottom: 140px !important; /* Menu + Player */
    }
    
    /* Esconder navbar desktop no mobile */
    .navbar {
        padding-bottom: 60px;
    }
    
    /* Botão rádio aleatória ajustado */
    .btn-radio-aleatoria {
        bottom: 80px !important;
        left: 10px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Layout selector ajustado */
    .layout-selector {
        bottom: 140px !important;
        right: 10px !important;
    }
}

/* Menu mobile - criar dinamicamente */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
}

