/* Oculta todo o conteúdo da revista */
body > * {
  display: none !important;
}

/* Exibe apenas a mensagem de "Em Construção" */
body::before {
  content: "🏗️ REVISTA EM CONSTRUÇÃO ! \A Em breve você terá acesso à revista...";
  white-space: pre;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  font-family: Arial, sans-serif;
  font-size: 35px;
  font-weight: bold;
  color: #080808;
  background: linear-gradient (to bottom, #cccccc, #ffffff);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  text-align: center;
  line-height: 1.8; /* <-- aumenta o espaço entre as linhas */
}
