/* Estadísticas */
.stats-section {
  padding: 4rem 0;
  margin: 4rem 0;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  align-items: center;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: #ddd;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 300;
  color: #121520;
  margin-bottom: 0.5rem;
  font-family: var(--font-system);
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 300;
  font-family: var(--font-system);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}
