:root {
  -white: #ffffff;
  -dark-bg: #0f1f16;
}

/* CONTENEDOR ORIGINAL */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ESTADÍSTICAS */

.stats-section {
  background: var(--dark-bg);
  padding: 56px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.stats-section,
.stats-section * {
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 2px;
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number span {
  color: #4ade80;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 6px;
}

/* DESDE 640 PX: CUATRO COLUMNAS */

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: 25% 25% 25% 25%;
  }
}