/* Updated: 2026-02-03 */
/* Hero Stats Card - Floating at bottom */

.hero-stats-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin: -40px auto 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 48px;
  box-shadow: 0 12px 40px rgba(20, 60, 104, 0.15);
  width: 90%;
  max-width: 1100px;
  animation: slideUpStats 0.8s ease-out;
  z-index: 10;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0C7BA7;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

@keyframes slideUpStats {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-stats-card {
    flex-direction: row;
    gap: 32px;
    padding: 32px 24px;
    margin-top: 32px;
    margin-bottom: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stat-item {
    flex-shrink: 0;
    min-width: auto;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-stats-card {
    padding: 24px 16px;
    gap: 24px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* Desktop - aumentar margen superior */
@media (min-width: 769px) {
  .hero-stats-card {
    margin-top: 0;
  }
}
