/**
 * Proteção leve: bloqueia cópia de texto e imagens; links e campos editáveis permanecem utilizáveis.
 */
html {
  -webkit-user-select: none;
  user-select: none;
}

a[href],
a[href] * {
  -webkit-user-select: text;
  user-select: text;
  cursor: pointer;
}

input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

img,
picture,
video,
canvas {
  -webkit-user-drag: none;
  user-drag: none;
}

@media print {
  html,
  html * {
    -webkit-user-select: text !important;
    user-select: text !important;
  }
}
