﻿/* ============================================ */
/* MENÚ INFERIOR FIJO (ESTILO APP MÓVIL)        */
/* ============================================ */
.menu-inferior {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e293b;
    border-top: 1px solid #334155;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 64px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    padding: 0 4px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    color: #94a3b8;
    text-decoration: none;
    flex: 1;
    max-width: 20%;
    position: relative;
}

.menu-item:hover {
    background: rgba(255,255,255,0.04);
}

.menu-item.activo {
    color: #60a5fa;
}

.menu-item.activo::after {
    content: '';
    position: absolute;
    top: -1px;
    width: 24px;
    height: 3px;
    background: #60a5fa;
    border-radius: 0 0 4px 4px;
}

.menu-item.activo .menu-icono {
    transform: scale(1.15);
}

.menu-icono {
    font-size: 1.3rem;
    transition: transform 0.2s ease;
    line-height: 1;
}

.menu-texto {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: -0.2px;
    white-space: nowrap;
}