/* ╭──────────────────────────────────────────────────────────────╮
   │ 🖼️ MARCA D’ÁGUA (LOGO CENTRAL)                              │
   ╰──────────────────────────────────────────────────────────────╯ */
body::before {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../imagens/logoconsart.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 500px;
  opacity: 0.05;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 0;
}


/* ╭──────────────────────────────────────────────────────────────╮
   │ ℹ️ RODAPÉ – VERSÃO DO SISTEMA (LOKI)                        │
   ╰──────────────────────────────────────────────────────────────╯ */
.versao-loki {
  position: fixed;
  bottom: 10px;
  right: 15px;
  font-size: 0.9em;
  color: #999;
  opacity: 0.7;
  font-weight: bold;
  pointer-events: none;
}

body.dark-mode .versao-loki {
  color: #666;
  opacity: 0.8;
}


/* ╭──────────────────────────────────────────────────────────────╮
   │ 🌐 LINK FIXO – HOSTINGER                                    │
   ╰──────────────────────────────────────────────────────────────╯ */
#linkHostinger {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}