.estadisticas {
  background: #531A1A;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.estadisticas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(232, 162, 16, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(232, 162, 16, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.titulo-seccion {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.descripcion {
  max-width: 600px;
  margin: 0 auto 60px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 45px 30px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFCC00, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFCC00;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8a210 0%, #d4920a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(232, 162, 16, 0.3);
}

.stat-card:hover .stat-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(232, 162, 16, 0.5);
}

.stat-icon svg,
.stat-icon i {
  width: 36px;
  height: 36px;
  color: #fff;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  letter-spacing: -2px;
}

.stat-card p {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .stat-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .titulo-seccion {
    font-size: 1.5rem;
  }
  
  .descripcion {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .estadisticas {
    padding: 70px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-card {
    padding: 30px 20px;
  }
  
  .stat-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 20px;
  }
  
  .stat-icon svg,
  .stat-icon i {
    width: 28px;
    height: 28px;
  }
}