@tailwind base;
@tailwind components;
@tailwind utilities;

/* FIMA - Estilos personalizados */

/* Material Symbols - Iconos rellenos */
.material-symbols-filled {
  font-variation-settings: 'FILL' 1;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0;
}

/* Transition delays para animaciones escalonadas */
.delay-50 {
  transition-delay: 50ms;
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-150 {
  transition-delay: 150ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-250 {
  transition-delay: 250ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-350 {
  transition-delay: 350ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Glass panel effects */
.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel-active {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Fade in up animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dot pattern background */
.dot-pattern {
  background-image: radial-gradient(circle at center, #00f2ff 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.2;
  pointer-events: none;
}
