/* V8.1 — proteção visual contra cópia casual */
html.security-blur body::after{
  content:"Interface protegida";
  position:fixed;
  inset:0;
  z-index:2147483647;
  display:grid;
  place-items:center;
  background:rgba(1,4,3,.88);
  color:#00ff7a;
  font:800 clamp(1.1rem,3vw,2.4rem) "JetBrains Mono", monospace;
  letter-spacing:.12em;
  text-align:center;
  text-transform:uppercase;
  backdrop-filter:blur(18px);
}

body{
  -webkit-user-select:none;
  user-select:none;
  -webkit-touch-callout:none;
}

input,
textarea,
select,
button,
[contenteditable="true"],
.allow-select,
table,
.table-wrap{
  -webkit-user-select:text;
  user-select:text;
}

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