 

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes numberPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes numberBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Aplicar animaciones */
.fade-in {
  animation: fadeIn 0.8s ease-out;
}

.slide-up {
  animation: slideUp 0.6s ease-out backwards;
}

.number-pop {
  animation: numberPop 0.5s ease-out backwards;
}

.number-bounce {
  animation: numberBounce 2s ease-in-out infinite;
}

.logo-pulse {
  animation: logoPulse 3s ease-in-out infinite;
}

/* Estilos de tarjetas */
.card {
  
  border: 1px solid #2d2d44;
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3) !important;
  border-color: #ffc107 !important;
}

/* Badges de números */
.badge.rounded-circle {
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.badge.rounded-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

/* Formulario */
.form-control {
 
  border-color: #3d3d54;
  color: #e0e0e0;
}

.form-control:focus {
 
  border-color: #ffc107;
  color: #e0e0e0;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Botones */
.btn-warning {
  transition: all 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 193, 7, 0.5);
}

/* Card headers */
.card-header {
  background-color: #16213e;
  border-bottom: 1px solid #2d2d44;
}

/* Colores personalizados */
.text-warning {
  color: #ffc107 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.text-success {
  color: #4caf50 !important;
}

.bg-success {
  background-color: #4caf50 !important;
}

.border-success {
  border-color: #4caf50 !important;
}
