/* Barra inferior */
.navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    overflow-x: auto;
    z-index: 200; /* Encima de todo */
    pointer-events: auto; /* Asegura clics */
}

/* Botones */
.nav-btn {
    min-width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.3s;
    pointer-events: auto; /* Clics habilitados */
}

.nav-btn i {
    font-size: 24px;
    margin-bottom: 5px;
    pointer-events: none;
}

.nav-btn span{
    pointer-events: none;
}

.nav-btn:hover,
.nav-btn.active {
    cursor: pointer;
    color: white;
    transform: translateY(-5px);
}