:root {
  --roxo:        #9D4EDD;
  --roxo-escuro: #3C096C;
  --azul-roxo:   #8886ED;
  --claro:       #F5F5F5;
  --cinza:       #CFCFCF;
  --preto:       #000000;
  --fundo:       #0d0814;
  --card-bg:     #140e20;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--fundo);
  color: var(--claro);
  font-family: 'Belleza', Georgia, serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 48px;
  background: rgba(13, 8, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(157, 78, 221, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo img {
  height: 30px;
  filter: drop-shadow(0 0 12px rgba(157,78,221,0.6));
}
.nav-logo-text {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #fff 30%, var(--roxo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--cinza);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--roxo); }


 /* ─── BTN LOGIN ─── */
        /* Container do botão */
.btn-login-wrapper {
  display: flex;
  justify-content: center; /* Centraliza na tela para responsividade */
  align-items: center;
  padding: 20px; /* Espaçamento para o brilho */
}

/* O Botão principal */
.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px; /* Espaço entre o ícone e o texto */
  padding: 8px 22px; /* Padding vertical e horizontal para o formato retangular */
  
  /* Cores e Fundo (baseado na imagem e no CSS fornecido) */
  background: #2A044A; /* Roxo bem escuro e profundo */
  color: #ffffff;
  
  /* Tipografia (ajustada para o visual da imagem) */
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700; /* Mais negrito para destaque */
  text-transform: uppercase; /* 'LOGIN' em maiúsculas */
  letter-spacing: 0.1em;
  text-decoration: none;
  
  /* Borda e Formato */
  border-radius: 12px; /* Cantos arredondados */
  /* Borda sutil sugerida no CSS original, mas mais visível na imagem */
  border: 1px solid rgba(136, 134, 237, 0.5); 
  
  cursor: pointer;
  
  /* Efeito de Brilho Neon (A chave do visual) */
  box-shadow: 
    0 0 10px rgba(0, 102, 255, 0.6),  /* Brilho interno/borda azul */
    0 0 20px rgba(0, 102, 255, 0.4),  /* Brilho externo médio */
    0 0 35px rgba(0, 102, 255, 0.2);  /* Brilho externo amplo */
  
  /* Transições suaves */
  transition: all 0.3s ease-in-out;
}

/* Pseudo-elemento para simular a borda metálica/brilhante interna da imagem */
.btn-login::before {
  content: '';
  position: absolute;
  top: 1px; left: 1px; right: 1px; bottom: 1px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

/* Responsividade para Celulares */
@media (max-width: 480px) {
  .btn-login {
    width: 100%; /* Ocupa a largura total em telas pequenas */
    max-width: 300px; /* Limita a largura máxima */
    padding: 7px 14px;
    font-size: 0.9rem;
    gap: 10px;
  }
}

/* Estados de Interação */
.btn-login:hover {
  background: #3C096C; /* Roxo original ao passar o mouse */
  transform: translateY(-3px);
  /* Brilho mais intenso no hover */
  box-shadow: 
    0 0 15px rgba(0, 102, 255, 0.8),
    0 0 30px rgba(0, 102, 255, 0.6),
    0 0 50px rgba(0, 102, 255, 0.4);
}

.btn-login:active {
  background: #1A0230; /* Roxo ainda mais escuro no clique */
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.5);
}

/* Estilização para o ícone (SVG ou fonte de ícone) */
.btn-login-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── HEADER DA LOJA ── */
header {
  display: flex;
  align-items: center;
  padding: 18px 48px;
  background: rgba(13, 8, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(157, 78, 221, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}
header a {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--roxo);
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
header a::before {
  content: '←';
  font-size: 0.9rem;
}
header a:hover {
  color: var(--azul-roxo);
  gap: 12px;
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 60px 72px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(60,9,108,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 60%, rgba(136,134,237,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(157,78,221,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,78,221,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s cubic-bezier(.22,1,.36,1) both;
}
.hero-eyebrow {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--roxo);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--roxo);
}
h1 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
h1 span {
  background: linear-gradient(135deg, var(--roxo) 0%, var(--azul-roxo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,245,245,0.65);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.hero-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--roxo);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  box-shadow: 0 0 28px rgba(157,78,221,0.4);
  transition: box-shadow 0.25s, transform 0.2s;
}
.hero-cta:hover {
  box-shadow: 0 0 48px rgba(157,78,221,0.7);
  transform: translateY(-2px);
}

.hero-img {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease both;
}
.hero-img img {
  width: min(90%, 480px);
  filter: drop-shadow(0 0 48px rgba(157,78,221,0.5));
  animation: float 6s ease-in-out infinite;
}

/* ── DRAGÃO ORIENTAL ── */
.dragao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 100px 80px;
  background: #0f0a1a;
  position: relative;
}
.dragao::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 10% 50%, rgba(136,134,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dragao-img {
  position: relative;
  z-index: 1;
}
.dragao-img img {
  width: 100%;
  max-width: 440px;
  border-radius: 8px;
  filter: drop-shadow(0 0 40px rgba(60,9,108,0.7));
  border: 1px solid rgba(157,78,221,0.2);
}
.dragao-texto {
  position: relative;
  z-index: 1;
}
.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  color: var(--azul-roxo);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--azul-roxo);
}
h2 {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
h2 .destaque {
  background: linear-gradient(135deg, var(--roxo), var(--azul-roxo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dragao-texto p {
  font-size: 1rem;
  color: rgba(245,245,245,0.68);
  line-height: 1.8;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
.dragao-texto p strong {
  color: var(--roxo);
  font-style: normal;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(157,78,221,0.4);
  border-radius: 999px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--roxo);
  margin-top: 14px;
  margin-right: 10px;
  text-transform: uppercase;
}
.pill::before {
  content: '◆';
  font-size: 0.5rem;
}

/* ── PRODUTOS ── */
.produtos {
  padding: 100px 80px;
  background: var(--fundo);
  position: relative;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: rgba(245,245,245,0.5);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.card-produto {
  background: var(--card-bg);
  border: 1px solid rgba(157,78,221,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.7s ease both;
}
.card-produto:hover {
  transform: translateY(-6px);
  border-color: rgba(157,78,221,0.5);
  box-shadow: 0 16px 48px rgba(60,9,108,0.4);
}
.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a0f2e, #0d0814);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(157,78,221,0.1) 0%, transparent 70%);
}
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--roxo);
  color: #fff;
  font-family: 'Orbitron', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.card-info {
  padding: 20px 20px 22px;
}
.card-nome {
  font-family: 'Orbitron', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.card-desc {
  font-size: 0.8rem;
  color: rgba(245,245,245,0.45);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  line-height: 1.5;
}
.card-preco {
  font-family: 'Orbitron', monospace;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--roxo);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.card-preco span {
  font-size: 0.65rem;
  color: rgba(245,245,245,0.4);
  font-weight: 400;
  letter-spacing: 0.1em;
  vertical-align: super;
  margin-right: 3px;
}
.card-acoes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: 6px;
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-comprar {
  background: var(--roxo);
  color: #fff;
}
.btn-comprar:hover {
  background: #b366e8;
  box-shadow: 0 4px 18px rgba(157,78,221,0.45);
}
.btn-carrinho {
  background: transparent;
  color: var(--roxo);
  border: 1px solid rgba(157,78,221,0.5);
}
.btn-carrinho:hover {
  background: rgba(157,78,221,0.12);
  border-color: var(--roxo);
}

/* ── BOTÃO LOJA (index.html) ── */
.btn-loja-wrapper {
  display: flex;
  justify-content: center;
  padding: 48px 20px;
  background: var(--fundo);
}
.btn-loja {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 42px;
  background: transparent;
  color: var(--claro);
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(254, 253, 254, 0.6);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s, color 0.2s;
}
.btn-loja::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn-loja:hover {
  background: rgba(174, 164, 182, 0.12);
  box-shadow: 0 0 32px rgba(157,78,221,0.35);
  color: #fff;
  transform: translateY(-2px);
}
.btn-loja:hover::after {
  transform: translateX(4px);
}

/* ── LOADING BAR ── */
.loading-section {
  padding: 100px 80px;
  background: #0a0614;
  border-top: 1px solid rgba(157,78,221,0.12);
  text-align: center;
}
.loading-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--roxo);
  text-transform: uppercase;
  margin-bottom: 48px;
}
.loading-title {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.loading-sub {
  font-size: 0.95rem;
  color: rgba(245,245,245,0.45);
  letter-spacing: 0.08em;
  margin-bottom: 56px;
}
.loading-container {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}
.loading-track {
  height: 6px;
  background: rgba(157,78,221,0.15);
  border-radius: 999px;
  overflow: visible;
  margin-bottom: 20px;
  position: relative;
}
.loading-fill {
  height: 100%;
  width: 15%;
  background: linear-gradient(90deg, var(--roxo-escuro), var(--roxo), var(--azul-roxo));
  border-radius: 999px;
  position: relative;
  box-shadow: 0 0 20px rgba(157,78,221,0.7);
  animation: glow-pulse 2s ease-in-out infinite;
}
.loading-fill::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 16px var(--roxo), 0 0 30px var(--azul-roxo);
}
.loading-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loading-pct {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--roxo);
  letter-spacing: -0.02em;
  line-height: 1;
}
.loading-msg {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(245,245,245,0.4);
  text-transform: uppercase;
  text-align: right;
}
.loading-steps {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.step-dot.done   { background: var(--roxo); box-shadow: 0 0 8px var(--roxo); }
.step-dot.active { background: var(--azul-roxo); animation: blink 1.2s ease-in-out infinite; }
.step-dot.pending{ background: rgba(245,245,245,0.15); }
.step.done    { color: rgba(245,245,245,0.7); }
.step.active  { color: var(--azul-roxo); }
.step.pending { color: rgba(245,245,245,0.3); }

/* ── FOOTER ── */
footer {
  padding: 32px 80px;
  background: rgba(13,8,20,0.95);
  border-top: 1px solid rgba(157,78,221,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copy {
  font-family: 'Orbitron', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: rgba(245,245,245,0.25);
  text-transform: uppercase;
}
footer .marca {
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, var(--roxo), var(--azul-roxo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(157,78,221,0.7); }
  50%       { box-shadow: 0 0 40px rgba(157,78,221,1), 0 0 60px rgba(136,134,237,0.4); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* stagger cards */
.card-produto:nth-child(1) { animation-delay: 0.05s; }
.card-produto:nth-child(2) { animation-delay: 0.12s; }
.card-produto:nth-child(3) { animation-delay: 0.19s; }
.card-produto:nth-child(4) { animation-delay: 0.26s; }

/* ── RESPONSIVO TABLET ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 50px 36px;
  }
  .dragao {
    gap: 40px;
    padding: 70px 36px;
  }
  .produtos {
    padding: 70px 36px;
  }
  .loading-section {
    padding: 70px 36px;
  }
  footer {
    padding: 28px 36px;
  }
}

/* ── RESPONSIVO MOBILE ── */
@media (max-width: 640px) {
  /* Nav */
  nav {
    padding: 7px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-logo img {
    height: 20px;
  }

  /* Header loja */
  header {
    padding: 14px 20px;
  }

  /* Hero: coluna única, imagem escondida no mobile */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 20px 48px;
    text-align: center;
  }
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-sub {
    margin: 0 auto 32px;
    font-size: 0.95rem;
  }
  /* Esconde a imagem do dragão na hero em mobile — o texto já fala por si */
  .hero-img {
    display: none;
  }

  /* Dragão: coluna única, esconde imagem duplicada */
  .dragao {
    grid-template-columns: 1fr;
    padding: 52px 20px;
    gap: 28px;
    text-align: center;
  }
  /* Esconde a imagem na seção dragão em mobile (já aparece na hero em desktop) */
  .dragao-img {
    display: none;
  }
  .section-label {
    justify-content: center;
  }
  .section-label::before {
    display: none;
  }
  .pill {
    font-size: 0.58rem;
    padding: 6px 14px;
  }

  /* Botão loja */
  .btn-loja-wrapper {
    padding: 32px 20px;
  }

  /* Produtos: 2 colunas no mobile */
  .produtos {
    padding: 48px 16px;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .grid-produtos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .card-img {
    font-size: 3.2rem;
  }
  .card-info {
    padding: 12px 12px 14px;
  }
  .card-nome {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .card-desc {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }
  .card-preco {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  .card-acoes {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .btn {
    font-size: 0.55rem;
    padding: 8px 6px;
    letter-spacing: 0.08em;
  }

  /* Loading */
  .loading-section {
    padding: 52px 20px;
  }
  .loading-pct {
    font-size: 1.8rem;
  }
  .loading-steps {
    gap: 16px;
    margin-top: 36px;
  }
  .step {
    font-size: 0.55rem;
  }

  /* Footer */
  footer {
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px;
    text-align: center;
  }
}