* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* PROTEÇÕES */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  background-color: #ffefc6;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Marca d'água que aparece em screenshots */
body::after {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 120px;
  color: #06326f;
  font-weight: bold;
  pointer-events: none;
  z-index: 9998;
  white-space: nowrap;
  opacity: 0.1;
}

/* PROTEÇÃO COMPLETA PARA IMAGENS */
.imagem-tela {
  width: 100%;
  height: auto;
  display: block;
  /* Proteções contra cópia */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  pointer-events: none;
  position: relative;
}

/* Camada protetora sobre as imagens */
.imagem-tela::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

/* Todas as imagens do site */
img {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
}

@media (min-width: 1024px) {
  .imagem-tela {
    width: 35%;
  }
}

.botao-container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 0 40px 0;
  pointer-events: auto;
}

.botao-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  padding: 12px 24px;
  font-size: 1.2rem;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  pointer-events: auto;
  animation: pulsar 2.5s ease-in-out infinite;
  /* Reabilita seleção apenas no botão */
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.botao-link:hover {
  background-color: #1ebd5a;
  transform: scale(1.08);
}

.icone-whatsapp {
  width: 20px;
  height: 20px;
  fill: white;
  pointer-events: none;
}

/* Impede arrastar links e botões */
a, button {
  -webkit-user-drag: none;
  user-drag: none;
}

/* OCULTA CONTEÚDO DURANTE IMPRESSÃO */
@media print {
  body {
    display: none !important;
    visibility: hidden !important;
  }
  
  body::before {
    content: "⚠️ IMPRESSÃO BLOQUEADA - CONTEÚDO PROTEGIDO ⚠️";
    display: block !important;
    visibility: visible !important;
    text-align: center;
    font-size: 24px;
    margin-top: 50px;
    color: red;
    font-weight: bold;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}

/* Overlay de proteção quando janela perde foco (criado via JS) */
#blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999;
  display: none;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}

#blur-overlay.active {
  display: flex;
}

/* Marca d'água invisível (criada via JS) */
#marca-dagua-invisivel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  font-size: 100px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: red;
  font-weight: bold;
}

/* Overlay de alerta DevTools */
.devtools-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999999;
  display: none;
  justify-content: center;
  align-items: center;
  color: #ff4444;
  font-size: 32px;
  text-align: center;
  flex-direction: column;
  gap: 20px;
}

.devtools-warning.active {
  display: flex;
}

/* Animação de aviso */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
  20%, 40%, 60%, 80% { transform: translateX(10px); }
}

.devtools-warning.active {
  animation: shake 0.5s;
}

/* Responsividade do botão */
@media (max-width: 768px) {
  .botao-link {
    font-size: 1rem;
    padding: 10px 20px;
  }
  
  body::after {
    font-size: 60px;
  }
}