/* ==========================================================================
   HyperCash — Seção de Autoridade
   Número de impacto (estilo "5 MIL") + carrossel rolante de logos de players.
   Placeholders de logo até receber os assets reais. Escopo: .ha-section
   ========================================================================== */
.ha-section {
  --ha-green: #0a7a30;
  --ha-dark: #e8f0e5;
  font-family: "Oakes Grotesk", sans-serif;
  background: var(--ha-dark);
  padding: 88px 24px 76px;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.06);
}

/* ---------- Número de impacto ---------- */
.ha-head { max-width: 760px; margin: 0 auto 56px; }
.ha-eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ha-green); font-weight: 600; margin-bottom: 18px;
}
.ha-number {
  font-size: 116px; line-height: .95; font-weight: 600;
  color: var(--ha-green); letter-spacing: -2px; margin: 0 0 14px;
}
.ha-label {
  font-size: 30px; color:#0a0d0a; font-weight: 400; line-height: 1.2; margin: 0 0 10px;
}
.ha-sub {
  font-size: 16px; color: #3f463c; margin: 0;
}

/* ---------- Carrossel rolante de logos ---------- */
.ha-marquee {
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ha-marquee + .ha-marquee { margin-top: 18px; }
.ha-track {
  display: flex; gap: 18px; width: max-content;
  animation: ha-scroll 40s linear infinite;
}
.ha-track--rev { animation-direction: reverse; animation-duration: 48s; }
.ha-section:hover .ha-track { animation-play-state: paused; }
@keyframes ha-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* chip de logo (placeholder até os assets reais) */
.ha-logo {
  flex: 0 0 auto;
  width: 188px; height: 84px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: rgba(0,0,0,.035);
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px;
  color: #6f7a68;
}
.ha-logo svg { width: 26px; height: 26px; opacity: .8; }
.ha-logo span {
  font-size: 15px; font-weight: 600; letter-spacing: .3px; color: #7d8a76;
}
/* quando virar logo real, basta usar <img> dentro de .ha-logo */
.ha-logo img { max-width: 130px; max-height: 44px; object-fit: contain; filter: grayscale(1) brightness(2); opacity: .85; }

@media (max-width: 768px) {
  .ha-number { font-size: 76px; }
  .ha-label { font-size: 22px; }
  .ha-logo { width: 150px; height: 70px; }
}
