/* Secção 5 — Prova social: números + marquee de logos */

.proof {
  text-align: center;
}
.proof__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
}
.proof__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  display: block;
}
.proof__stat-label {
  font-size: 0.8125rem;
  color: var(--ink-muted);
}
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink-muted);
  white-space: nowrap;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
