/* ===== Dopaminex (override seguro) ===== */

body.dopaminex { 
    display: block;
    padding: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #020617;
  color: #F8FAFC;
  margin: 0;
  overflow-x: hidden;
}

body.dopaminex{
  padding-top: env(safe-area-inset-top);
  -webkit-text-size-adjust: 100%;
}


/* BACKGROUND SYSTEM */
body.dopaminex .bg-system {
  position: fixed;
  inset: 0;
  z-index: -1;
}



body.dopaminex .bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.85) 0%, rgba(2, 6, 23, 0.95) 100%);
  backdrop-filter: blur(2px);
}

/* COMPONENTES */
body.dopaminex .copy-box {
  background-color: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

body.dopaminex .btn-primary { text-decoration: none; 
  background: linear-gradient(to right, #075985, #0369a1);
  border: 1px solid rgba(125, 211, 252, 0.2);
  transition: all 0.25s ease;
  cursor: pointer;
}

body.dopaminex .btn-primary:hover {
  background: linear-gradient(to right, #0369a1, #0284c7);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px -5px rgba(14, 165, 233, 0.5);
}

/* foco visível (profissional / acessibilidade) */
body.dopaminex .btn-primary:focus-visible {
  outline: 2px solid #38BDF8;
  outline-offset: 3px;
}

/* Utilitários */
body.dopaminex .text-highlight-blue { color: #38BDF8; }
body.dopaminex .text-highlight-red { color: #F87171; }

body.dopaminex .animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

body.dopaminex .hidden-screen { display: none !important; }

/* não “apague” estilo de links globalmente (evita link invisível) */
body.dopaminex a { color: inherit; }

/* respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
  body.dopaminex .animate-fade-in { animation: none; }
  body.dopaminex .btn-primary { transition: none; }
  body.dopaminex .btn-primary:hover { transform: none; }
}
