/* ============================================
   FOOTER MOBILE - NAVEGAÇÃO INFERIOR
   ============================================ */

/* Footer fixo na parte inferior */
.mhg-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #000;
    border-top: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 20px;
    z-index: 9998; /* Abaixo do player (9999) */
}

/* Ajustar padding do body para não cobrir conteúdo */
body {
    padding-bottom: 135px; /* 70px mini player + 65px footer */
}

/* Quando player está tocando */
body.player-active {
    padding-bottom: 135px; /* 70px mini player + 65px footer */
}

/* Item de navegação */
.mhg-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #666;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 12px;
    min-width: 60px;
}

/* Ícone */
.mhg-footer-item i {
    font-size: 22px;
    transition: transform 0.2s ease;
}

/* Label */
.mhg-footer-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Item ativo */
.mhg-footer-item.active {
    color: #3b82f6;
}

.mhg-footer-item.active i {
    transform: scale(1.1);
}

/* Hover (apenas desktop/tablet) */
@media (hover: hover) {
    .mhg-footer-item:hover {
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
    }
    
    .mhg-footer-item:hover i {
        transform: scale(1.15);
    }
}

/* Active/Touch feedback */
.mhg-footer-item:active {
    transform: scale(0.95);
}

/* Esconder footer no desktop */
@media (min-width: 768px) {
    .mhg-footer {
        display: none;
    }
    
    body {
        padding-bottom: 0;
    }
}

/* Animação de entrada */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mhg-footer {
    animation: slideUp 0.3s ease-out;
}