/* ==========================================================================
   Estilos Base y Navegación
   ========================================================================== */
.glass-nav {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
}

/* ==========================================================================
   Efectos Bento Box
   ========================================================================== */
.bento-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-hover:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    background-color: #141414;
}

/* ==========================================================================
   Utilidades (Scroll y Formularios)
   ========================================================================== */
/* Ocultar barra de desplazamiento visualmente, pero mantener funcionalidad */
.hide-scroll::-webkit-scrollbar { 
    display: none; 
}
.hide-scroll { 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}

/* Ocultar spinners nativos en inputs type="number" */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}

/* ==========================================================================
   Visor Específico ( visor.html )
   ========================================================================== */
.visor-body { 
    margin: 0; 
    padding: 0; 
    height: 100dvh; 
    overflow: hidden; 
    background: #000; 
    display: flex; 
    flex-direction: column; 
}

#tour-frame { 
    flex-grow: 1; 
    width: 100%; 
    border: none; 
}