/* ─────────────────────────────────────────
   leaves.css — camada de folhas animadas no scroll (GSAP + ScrollTrigger)
───────────────────────────────────────── */

.leaves-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.leaf-item {
  position: absolute;
  /* Escala com a largura da tela: piso de 80px (telas pequenas),
     8vw como referência fluida, teto de 220px (telas grandes/ultrawide). */
  width: clamp(80px, 18vw, 220px);
  height: auto;
  opacity: .9;
  will-change: transform;
}
