/* Protecção de imagens — site público */
body.cs-shell-public.cs-content-protected img,
body.cs-shell-public.cs-content-protected video {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

body.cs-shell-public.cs-content-protected.cs-protection-flash #content,
body.cs-shell-public.cs-content-protected.cs-protection-flash .secao-img {
  filter: blur(10px);
  transition: filter 0.12s ease;
}

.cs-protection-toast {
  position: fixed;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  transform: translateX(-50%) translateY(120%);
  z-index: 99999;
  max-width: min(92vw, 420px);
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(13, 71, 161, 0.96);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.cs-protection-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
