#hero {
  position: relative; min-height: 100vh;
  align-items: flex-end; padding-bottom: var(--sp-3xl);
}

/* wrapper div that constrains hero copy block */
.hero-inner {
  display: inline-block;
  max-width: 700px;
  margin-bottom: 0;
}

.hero-display {
  font-size: var(--sz-display); font-weight: 700;
  letter-spacing: -3px; line-height: 0.96;
  color: var(--osso); margin-bottom: var(--sp-xl);
}
.hero-display em { font-style: normal; color: var(--voltagem); }

.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(244,241,234,0.68);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: var(--sp-xl);
}

.hero-actions { display: flex; align-items: center; gap: var(--sp-xl); flex-wrap: wrap; }

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute; bottom: var(--sp-2xl); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-sm);
  opacity: 0.45; pointer-events: none;
  animation: floatHint 2.2s ease-in-out infinite;
  transition: opacity 0.6s;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-hint-label {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--nevoa);
}
.scroll-hint-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--nevoa), transparent); }

@keyframes floatHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}
