/* Suances Stays - estilos personalizados del sistema de diseño */

html { scroll-behavior: smooth; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #faf9fc; }
::-webkit-scrollbar-thumb { background: #c4c6cf; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #7b95c0; }

/* Glassmorphism */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Sombra ambiental (12% azul océano, blur 20px, offset 4px) */
.card-shadow {
    box-shadow: 0 4px 20px rgba(0, 24, 53, 0.12);
}

/* Botón táctil (borde inferior naranja oscuro) */
.btn-tactile {
    border-bottom: 2px solid #e2764d;
    transition: all 0.2s ease;
}
.btn-tactile:active {
    border-bottom-width: 0px;
    transform: translateY(2px);
}

/* Imagen placeholder si falla la carga */
img { background: linear-gradient(135deg, #e9e7eb, #d5e3ff); }
