/* === CURSOR PERSONALIZADO === */
* {
  cursor: none !important;
}

body {
  cursor: none !important;
}

html {
  cursor: none !important;
}

#custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  background: url('/img/Cursor2.png') no-repeat center/contain;
  pointer-events: none;
  transition: transform 0.05s linear;
  z-index: 9999;
}

/* === OCULTAR SCROLLBAR PERO MANTENER FUNCIONALIDAD === */
/* Para Chrome, Safari y Opera - Aplicar a TODOS los elementos */
*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Para IE, Edge y Firefox */
html {
  -ms-overflow-style: none;  /* IE y Edge */
  scrollbar-width: none;  /* Firefox */
}

body {
  -ms-overflow-style: none;  /* IE y Edge */
  scrollbar-width: none;  /* Firefox */
  overflow-y: scroll; /* Mantener funcionalidad de scroll */
}

/* Ocultar scrollbar en TODOS los contenedores */
* {
  -ms-overflow-style: none;  /* IE y Edge */
  scrollbar-width: none;  /* Firefox */
}
