/* CTA Mouse Arrow — canvas fixed; desliga só em touch */
.cta-mouse-arrow {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 2500 !important;
  display: block;
}

/* Touch / sem hover preciso */
@media (hover: none), (pointer: coarse) {
  .cta-mouse-arrow {
    display: none !important;
  }
}
