/* Tailwind básico purgado + personalización */

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.text-center {
  text-align: center;
}

.font-bold {
  font-weight: 700;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1),
              0 1px 2px rgba(0, 0, 0, 0.06);
}

.transition {
  transition-property: all;
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
}

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

.ease-out {
  transition-timing-function: ease-out;
}

.text-gray-400 {
  color: #9ca3af;
}

.text-gray-800 {
  color: #1f2937;
}

.bg-transparent {
  background-color: transparent;
}

.p-4 {
  padding: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Animación fadeInUp personalizada */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out both;
}