/* ============================================
   STATS.CSS — Faixa de estatísticas
   ============================================ */

.stats-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(8, 13, 20, 0.8);
  backdrop-filter: blur(12px);
}

.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-text {
  font-size: 1.35rem;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
}
