/* === CURSOR EDITORIAL: SETA + TEXTO === */
/* Visível APENAS sobre .project-card__thumb */

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.6em;
  pointer-events: none;
  z-index: 9999;

  transform: translate(12px, 12px);

  color: #FFFFFF;
  mix-blend-mode: difference;

  /* INVISÍVEL POR PADRÃO — só aparece com .is-active */
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Visível APENAS quando .is-active (sobre thumb de projeto) */
.custom-cursor.is-active {
  opacity: 1;
}

/* Seta */
.custom-cursor__arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #FFFFFF;
}

/* Texto */
.custom-cursor__text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}

/* Esconder cursor padrão APENAS sobre a thumb */
.project-card__thumb {
  cursor: none;
}

/* Touch devices: não usa cursor customizado */
@media (hover: none) {
  .custom-cursor {
    display: none;
  }

  .project-card__thumb {
    cursor: pointer;
  }
}
