/* Cores globais do Fundo */
body, html, .body, .section, .scene, .cam, .blackbg, .black-background {
  background-color: #020512 !important;
}

/* Fix lateral scroll */
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Estilo do H1 Gigante (Primeiro Texto) */
.wings-heading {
  color: #ffffff !important;
}

/* Estilo do H2 (Texto Secundário) */
.h2 {
  color: #ffffff !important;
  line-height: 1.3 !important;
}
.h2 span {
  background-image: none !important;
}
.h2 span:first-child {
  color: #ffffff !important;
}

/* Sub-headline Text White */
.h3, .h3 span {
  color: #ffffff !important;
}

/* Gold Button Fixed Layout */
.button.w-button {
  background-color: #ffffff !important;
  color: #020512 !important;
  font-weight: bold !important;
  font-size: 16px !important;
  padding: 12px 24px !important;
  white-space: nowrap !important;
  width: auto !important;
  min-width: 250px !important;
  text-align: center !important;
}

/* Hide Navbar Items */
.theme-toggle, .wings-img, .right-navbar {
  display: none !important;
}

/* Remove dead space completely */
.section ~ .section,
.footer,
.please,
[class*="cookie"] {
  display: none !important;
}

/* EXPLOSÃO DAS IMAGENS (Repelindo elas para longe do texto central) */
.elipse {
  /* Avatar: Joga para o alto e para a direita */
  margin-top: -20vh !important;
  margin-left: 10vw !important;
}
.elipse._2 {
  /* Folha verde: Joga para baixo e para a esquerda */
  margin-top: 10vh !important;
  margin-left: -20vw !important;
}
.elipse._3 {
  /* Mão com cartão: Joga para baixo e para a direita */
  margin-top: 10vh !important;
  margin-left: 20vw !important;
}

/* Forçar branco absoluto no sub-título e suas spans */
.h3, .h3 span, .span-first, .span-second {
  color: #ffffff !important;
  
}

/* Remover COMPLETAMENTE as imagens flutuantes (Avatar, Folha, Mão) que quebram o layout */
.elipse, .elipse._2, .elipse._3 {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Force uniform Subheadline size */
.h3, .h3 span, .span-first, .span-second {
  font-size: 20px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
  display: inline !important; /* Make sure they don't break weirdly */
  text-align: center !important;
}

/* Ensure H2 is completely white */
.h2 span {
  color: #ffffff !important;
  margin: 0 4px !important; /* give a tiny natural space between words just in case */
}

/* =========================================
   ARKAN FIXED HEADER
========================================= */
.arkan-fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(2, 5, 18, 0.8);
  backdrop-filter: blur(15px); /* Efeito glassmorphism premium */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 9999;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.arkan-fixed-header.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.arkan-logo {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}

.arkan-nav {
  display: flex;
  gap: 40px;
}

.arkan-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.arkan-nav a:hover {
  opacity: 1;
  color: #d4af37; /* Dourado no hover */
}

.arkan-white-btn {
  background-color: #ffffff !important;
  color: #020512 !important;
  padding: 12px 28px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  font-size: 15px !important;
  transition: transform 0.3s ease, background-color 0.3s ease !important;
  display: inline-block;
}

.arkan-white-btn:hover {
  background-color: #f0f0f0 !important;
  transform: translateY(-2px);
}
