/* STATS BAR – premium, limpio y compacto (sin cards) */

.stats-section.stats-bar{
  padding: 1.25rem 0;
}

.stats-section.stats-bar .stats-grid{
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 0 !important;
  overflow: visible !important;
  grid-auto-flow: initial !important;
  grid-auto-columns: initial !important;
  padding: 0 !important;
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.stats-section.stats-bar .stat-card{
  border: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0.95rem 0.9rem !important;
  text-align: center;
  position: relative;
}

/* Separadores verticales */
.stats-section.stats-bar .stat-card:not(:nth-child(6n))::after{
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  background: rgba(212,175,55,0.10);
}

.stats-section.stats-bar .stat-number{
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.55rem, 1.9vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.35px;
  font-weight: 900;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: baseline;
  width: 100%;
}

.stats-section.stats-bar .stat-label{
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
}

.stats-section.stats-bar .stat-sublabel{
  margin-top: 0.15rem;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.55);
}

/* Laptop: 3 columnas x 2 filas */
@media (max-width: 1200px){
  .stats-section.stats-bar .stats-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .stats-section.stats-bar .stat-card:not(:nth-child(6n))::after{ display:none; }
  .stats-section.stats-bar .stat-card::after{ display:none; }
  .stats-section.stats-bar .stat-card{
    border-bottom: 1px solid rgba(212,175,55,0.10) !important;
  }
  .stats-section.stats-bar .stat-card:nth-last-child(-n+3){
    border-bottom: none !important;
  }
  .stats-section.stats-bar .stat-card:not(:nth-child(3n)){
    border-right: 1px solid rgba(212,175,55,0.10) !important;
  }
}

/* Móvil: 2 columnas x 3 filas */
@media (max-width: 640px){
  .stats-section.stats-bar{
    padding: 1rem 0;
  }
  .stats-section.stats-bar .stats-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    border-radius: 14px;
  }
  .stats-section.stats-bar .stat-card{
    padding: 0.85rem 0.75rem !important;
  }
  .stats-section.stats-bar .stat-number{ font-size: 1.65rem; }
  .stats-section.stats-bar .stat-card{
    border-bottom: 1px solid rgba(212,175,55,0.10) !important;
  }
  .stats-section.stats-bar .stat-card:nth-last-child(-n+2){
    border-bottom: none !important;
  }
  .stats-section.stats-bar .stat-card:not(:nth-child(2n)){
    border-right: 1px solid rgba(212,175,55,0.10) !important;
  }
}
