/* ─── ESTATÍSTICAS ─── */
.stats-bg {
  background: linear-gradient(135deg, #091224 0%, #0f1e3a 50%, #091224 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.12);
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  text-align: center;
}

.stat-item {
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.stat-item:last-child::after {
  display: none;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .highlight {
  color: var(--blue-bright);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}

/* ─── COUNT-UP ─── */
.count-up {
  display: inline;
}
