/* ==========================================
   BARRA DE ESTADISTICAS - COPERA
   ========================================== */

.stats-bar {
  background: white;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 2.5rem 2rem;
}

.stats-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #00a551;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stats-bar__label {
  display: block;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

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

@media (max-width: 480px) {
  .stats-bar__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}