/* ==========================================================================
   HyperCash — Carrossel de prova social (estilo cards escalonados)
   Cards de pessoa (foto + nicho + nome) alternados com cards de feature.
   Conteúdo 100% Hyper. Escopo isolado em .hs-carousel.
   ========================================================================== */
.hs-carousel {
  --hs-green: #0a7a30;
  --hs-bg: #e8f0e5;
  --hs-light: #eef3ec;
  --hs-ink: #0d1507;
  --hs-gray: #3f463c;
  --hs-font-head: "Oakes Grotesk", sans-serif;
  --hs-font-body: "Manrope", sans-serif;

  width: 100%;
  overflow: hidden;
  padding: 20px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hs-track {
  display: flex;
  gap: 22px;
  width: max-content;
  align-items: flex-start;
  animation: hs-scroll 48s linear infinite;
}
.hs-carousel:hover .hs-track { animation-play-state: paused; }
@keyframes hs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* escalonamento vertical (alterna alto/baixo como na referência) */
.hs-card { flex: 0 0 auto; width: 252px; }
.hs-card--lower { margin-top: 56px; }

/* ---------- Card de pessoa (foto + overlay) ---------- */
.hs-person {
  height: 392px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center top;
  box-shadow: 0 20px 40px rgba(0,0,0,.07);
}
.hs-person::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(6,13,0,.35) 60%, rgba(6,13,0,.95) 100%);
}
.hs-person__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
  z-index: 2;
}
.hs-person__tag {
  font-family: var(--hs-font-head);
  font-size: 13px;
  font-weight: 600;
  color: #54ec66;
  display: block;
  margin-bottom: 6px;
}
.hs-person__name {
  font-family: var(--hs-font-head);
  font-size: 21px;
  color:#ffffff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.hs-person__metric {
  font-family: var(--hs-font-head);
  font-size: 12.5px;
  color: rgba(255,255,255,.88);
  display: inline-block;
  border-top: 1px solid rgba(255,255,255,.28);
  padding-top: 10px;
  line-height: 1.35;
}

/* ---------- Card de feature (fundo claro) ---------- */
.hs-feature {
  height: 392px;
  border-radius: 20px;
  background: var(--hs-light);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
}
.hs-feature__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hs-feature__icon svg { width: 22px; height: 22px; }
.hs-feature__title {
  font-family: var(--hs-font-head);
  font-size: 22px;
  color: #0a0d0a;
  line-height: 1.18;
  margin-bottom: auto;
}
.hs-feature__highlight {
  font-family: var(--hs-font-head);
  font-size: 46px;
  font-weight: 600;
  color: #0a0d0a;
  line-height: 1;
  margin-top: 18px;
}
.hs-feature__highlight small {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--hs-gray);
  margin-top: 8px;
}
.hs-feature--green { background: var(--hs-green); }
.hs-feature--green .hs-feature__icon { background: rgba(255,255,255,.18); box-shadow: none; }
.hs-feature--green .hs-feature__icon svg { stroke: #fff; fill: #fff; }
.hs-feature--green .hs-feature__title,
.hs-feature--green .hs-feature__highlight { color: #ffffff; }
.hs-feature--green .hs-feature__highlight small { color: rgba(255,255,255,.82); }

@media (max-width: 560px) {
  .hs-card { width: 210px; }
  .hs-person, .hs-feature { height: 330px; }
  .hs-card--lower { margin-top: 36px; }
  .hs-feature__highlight { font-size: 38px; }
}
