/* cursor principal */
#cursor,
#pointer {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.2s ease;
}

#cursor {
  width: 28px;
  height: 28px;
  border: 1px solid #e5a268;
  border-radius: 4px;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(229, 162, 104, 0.18) inset;
  mix-blend-mode: normal;
}

#cursor.is-hover {
  border-color: #f3c67a;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(243, 198, 122, 0.26) inset;
}

#pointer {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background: #e5a268;
  box-shadow: 0 0 8px rgba(229, 162, 104, 0.5), 0 0 4px rgba(229, 162, 104, 0.5);
}

/* desativar em acessibilidade/ touch */
@media (pointer: coarse), (prefers-reduced-motion: reduce), (hover: none) {
  #cursor,
  #pointer {
    display: none !important;
  }
}
