/* Custom Styles for Grupo Sí Efectivo */
body {
  font-family: 'Inter', sans-serif;
}

.font-display {
  font-family: 'Outfit', sans-serif;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin-slow {
  animation: spin-slow 8s linear infinite;
}

.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

html {
  scroll-behavior: smooth;
}

/* Custom utility for hover effects without Tailwind if needed, 
   but we are using Tailwind CDN for the bulk of the work */
.card-hover:hover {
  transform: translateY(-4px);
  transition: all 0.3s ease;
}
