/* ========================================================
   BASE (FUNDO E TIPOGRAFIA DA LANDING PAGE)
   ======================================================== */
:root {
    --bg-dark: #050505;
    --card-dark: #111111;
    --border-color: #2a2a2e;
    --neon-purple: #9d00ff;
    --neon-cyan: #00e5ff;
    --text-main: #ffffff;
    --text-muted: #888888;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    padding-top: 80px;
}

/* ========================================================
   AJUSTE DA LOGO E LANDING PAGE
   ======================================================== */
.landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.logo-glow {
    max-width: 150px;
    height: auto;
    border-radius: 50%; /* Se a logo for quadrada, deixa arredondada */
    margin-bottom: 20px;
    box-shadow: 0 0 20px var(--neon-purple);
}

.landing-title { margin-bottom: 5px; font-size: 2rem; }
.landing-subtitle { color: var(--neon-cyan); margin-bottom: 40px; }

.links-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.footer-credits { margin-top: 50px; color: #777; font-size: 0.8rem; }

/* ========================================================
   ESTÉTICA DOS BOTÕES (Seu Padrão Ghost Button com Máscara)
   ======================================================== */
.btn-comprar, .btn-aplicar, .neon-btn {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 50px;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.btn-comprar::before, .btn-aplicar::before, .neon-btn::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-comprar:hover, .btn-aplicar:hover, .neon-btn:hover {
    transform: scale(1.05);
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    box-shadow: -8px 0 25px rgba(157, 0, 255, 0.5), 
                 8px 0 25px rgba(0, 229, 255, 0.5), 
                 inset 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ========================================================
   HEADER FUNCIONAL (TOPO DO SITE)
   ======================================================== */
.main-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 70px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--neon-purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 9999;
}

.logo { 
    font-family: 'Oswald', sans-serif; 
    color: var(--neon-cyan); 
    font-size: 1.5rem; 
    text-transform: uppercase; 
    margin: 0;
}
.logo span { color: var(--neon-purple); font-size: 0.8rem; margin-left: 5px; }

/* ... (Todo o resto do seu código de vitrine se mantém original caso coloque depois) ... */

/* ═══ index.html → extracted styles ═══ */
/* Layout shell & content polish that supplements style.css */
    .landing-container {
      max-width: 460px;
      margin: 0 auto;
      padding: 20px;
    }
    .logo-glow {
      width: 150px;
      height: 150px;
      object-fit: cover;
    }
    .landing-title {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .landing-subtitle {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      letter-spacing: 4px;
      text-transform: uppercase;
      font-size: 0.85rem;
    }
    .neon-btn:focus-visible {
      outline: 2px solid var(--neon-cyan);
      outline-offset: 4px;
    }
    .main-header .logo { text-decoration: none; }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

/* ── VOIDZONE credit refinement ─────────────────────── */
.footer-credits strong {
    color: #666;
    letter-spacing: 1px;
}
.footer-credits:hover strong {
    color: #888;
}
.footer-credits-link { color: #888; opacity: 1; text-decoration: underline; }
.footer-credits-link:hover { color: var(--neon-cyan); }

/* Landing Howto — Como Funciona section */
  .landing-howto {
    border-top: 1px solid rgba(0,229,255,0.06);
    padding: 28px 24px 36px;
    max-width: 480px;
    margin: 0 auto;
  }
  .howto-inner { max-width: 400px; margin: 0 auto; }
  .howto-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan, #00e5ff);
    margin-bottom: 18px;
    text-align: center;
  }
  .howto-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .howto-step {
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .step-n {
    font-family: 'Oswald', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan, #00e5ff);
    letter-spacing: 1px;
    flex-shrink: 0;
    opacity: 0.7;
  }
  .step-t {
    font-size: 0.88rem;
    color: var(--text-muted, #888);
    line-height: 1.5;
  }
