/* Estilos personalizados */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* Animaciones personalizadas */
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-bounce {
  animation: bounce-slow 2s infinite;
}

.animate-pulse {
  animation: pulse-slow 2s infinite;
}

/* Gradient background animado */
.bg-gradient-to-br {
  background-image: linear-gradient(135deg, var(--tw-gradient-stops));
}

/* Efecto de vidrio */
.backdrop-blur-sm {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Sombras mejoradas */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transiciones suaves */
button {
  transition: all 0.3s ease;
}

input {
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .text-5xl {
    font-size: 2.25rem;
  }
  
  .text-4xl {
    font-size: 1.875rem;
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Efecto hover en tarjetas */
.transform {
  transition: transform 0.3s ease;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:scale-110:hover {
  transform: scale(1.1);
}
