/* ═══════════ 6 · GRID DE SEÇÃO (base compartilhada por todas as páginas) ═══════════ */
section {
  padding: clamp(2.5rem, 5vh, 4.5rem) clamp(1.4rem, 6vw, 7rem);
  position: relative
}

.section-head {
  max-width: 62rem;
  margin-bottom: clamp(2.5rem, 6vh, 4.5rem)
}

.section-action {
  margin-top: clamp(2rem, 4vh, 3rem)
}

/* Canvas de fundo (para qualquer página com #heroCanvas não empurrar o conteúdo) */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ═══════════ 16 · REVEAL AO ROLAR (helpers usados nas subpáginas sem GSAP) ═══════════ */
.reveal-init {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 1s cubic-bezier(.19, 1, .22, 1), transform 1s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform;
}

.reveal-init.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}
