:root {
  --rosa:    #FF006E;
  --roxo:    #8338EC;
  --azul:    #3A86FF;
  --verde:   #06FFB4;
  --amarelo: #FFD60A;
  --preto:   #0D0D0D;
  --fundo:   #0D0D1A;
  --branco:  #F5F5F5;
  --cinza:   #2A2A3A;
  --radius:  8px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--fundo);
  color: var(--branco);
  font-family: 'Chakra Petch', 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, #FF006E22 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, #8338EC22 0%, transparent 60%),
              radial-gradient(ellipse at 50% 80%, #3A86FF11 0%, transparent 60%),
              var(--fundo);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,0,110,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,0,110,0.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.nav {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 48px;
}

.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--branco); text-decoration: none; opacity: 0.7; transition: opacity .2s; font-size: 14px; }
.nav-links a:hover { opacity: 1; }

.btn-nav {
  border: 1px solid var(--rosa) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  opacity: 1 !important;
  color: var(--rosa) !important;
  transition: all .2s !important;
}
.btn-nav:hover { background: var(--rosa) !important; color: var(--preto) !important; }

.hero-content {
  position: relative; z-index: 5;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 40px 24px;
}

.hero-tag {
  font-family: 'VT323', monospace;
  font-size: 16px; letter-spacing: 3px;
  color: var(--verde); margin-bottom: 24px;
  border: 1px solid var(--verde33);
  padding: 6px 16px; border-radius: 50px;
  display: inline-block;
}

.hero-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(32px, 7vw, 72px);
  line-height: 1.3;
  margin-bottom: 24px;
}

.gradient-text  { background: linear-gradient(90deg, var(--rosa), var(--amarelo)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-2 { background: linear-gradient(90deg, var(--roxo), var(--azul));  -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.gradient-text-3 { background: linear-gradient(90deg, var(--azul), var(--verde)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-sub {
  font-size: 18px; color: rgba(245,245,245,0.8);
  margin-bottom: 40px; max-width: 480px;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, var(--rosa), var(--amarelo));
  color: var(--preto); font-weight: 700;
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Chakra Petch', monospace;
  font-size: 15px; letter-spacing: 1px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(255,0,110,0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,0,110,0.6); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid rgba(245,245,245,0.3);
  color: var(--branco);
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none; cursor: pointer;
  font-family: 'Chakra Petch', monospace;
  font-size: 15px;
  transition: all .2s;
}
.btn-secondary:hover { border-color: var(--verde); color: var(--verde); }

.hero-counter {
  display: flex; gap: 32px; align-items: center;
  font-size: 13px;
}
.counter-num {
  font-family: 'VT323', monospace;
  font-size: 28px; color: var(--verde);
  display: block;
}
.counter-label { color: rgba(245,245,245,0.5); display: block; }
.counter-divider { color: rgba(245,245,245,0.2); font-size: 24px; }

.hero-scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'VT323', monospace;
  font-size: 14px; color: rgba(245,245,245,0.4);
  letter-spacing: 3px; z-index: 5;
}

/* ── SEÇÕES GERAIS ── */
section { padding: 80px 24px; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  font-family: 'VT323', monospace;
  font-size: 16px; letter-spacing: 4px;
  color: var(--verde); margin-bottom: 12px;
}
.section-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 3vw, 28px);
  line-height: 1.4; margin-bottom: 12px;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub { color: rgba(245,245,245,0.6); font-size: 15px; }

/* ── EDUCAÇÃO ── */
.aprenda { background: radial-gradient(ellipse at 50% 0%, #8338EC11 0%, transparent 70%); }

.cards-edu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto 48px;
}

.card-edu {
  background: rgba(131,56,236,0.08);
  border: 1px solid rgba(131,56,236,0.25);
  border-radius: 12px; padding: 28px;
  position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.card-edu:hover { transform: translateY(-4px); border-color: var(--roxo); }

.card-edu-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 32px; color: rgba(131,56,236,0.2);
  position: absolute; top: 16px; right: 20px;
}
.card-edu-icon { font-size: 36px; margin-bottom: 16px; }
.card-edu h3 {
  font-size: 16px; color: var(--verde);
  margin-bottom: 12px; font-weight: 700;
}
.card-edu p { font-size: 14px; color: rgba(245,245,245,0.7); line-height: 1.7; }

.aprenda-cta { text-align: center; }
.aprenda-cta p { font-size: 18px; margin-bottom: 24px; color: rgba(245,245,245,0.8); }

/* ── WIZARD ── */
.tokenize {
  background: radial-gradient(ellipse at 50% 100%, #FF006E11 0%, transparent 60%);
}

.wizard-container { max-width: 720px; margin: 0 auto; }

.wizard-progress {
  display: flex; align-items: center;
  margin-bottom: 48px;
}
.wizard-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; flex: 0 0 auto;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(245,245,245,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'VT323', monospace; font-size: 20px;
  color: rgba(245,245,245,0.3);
  transition: all .3s;
}
.wizard-step.active .step-num {
  border-color: var(--rosa); color: var(--branco);
  background: rgba(255,0,110,0.2);
  box-shadow: 0 0 16px rgba(255,0,110,0.4);
}
.wizard-step.done .step-num {
  border-color: var(--verde); background: var(--verde); color: var(--preto);
}
.step-label { font-size: 11px; color: rgba(245,245,245,0.4); letter-spacing: 1px; }
.wizard-step.active .step-label { color: var(--rosa); }
.wizard-line { flex: 1; height: 1px; background: rgba(245,245,245,0.1); margin: 0 12px; }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeIn .4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.wizard-title {
  font-size: 22px; font-weight: 700;
  color: var(--branco); margin-bottom: 8px;
}
.wizard-hint { font-size: 13px; color: rgba(245,245,245,0.5); margin-bottom: 32px; }

.tipo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 8px;
}
.tipo-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 16px;
  background: rgba(131,56,236,0.08);
  border: 1px solid rgba(131,56,236,0.2);
  border-radius: 12px; cursor: pointer;
  color: var(--branco);
  font-family: 'Chakra Petch', monospace;
  font-size: 14px;
  transition: all .2s;
}
.tipo-card:hover { border-color: var(--rosa); background: rgba(255,0,110,0.12); }
.tipo-card.selected { border-color: var(--verde); background: rgba(6,255,180,0.1); color: var(--verde); }
.tipo-icon { font-size: 32px; }

.valor-input-wrapper {
  display: flex; align-items: center; gap: 12px;
  background: rgba(131,56,236,0.1);
  border: 1px solid rgba(131,56,236,0.4);
  border-radius: var(--radius); padding: 16px 20px;
  margin-bottom: 20px;
}
.valor-prefix { font-family: 'VT323', monospace; font-size: 28px; color: var(--verde); }
.valor-input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--branco); font-family: 'VT323', monospace;
  font-size: 32px; width: 100%;
}

.valor-presets, .fracoes-presets {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
}
.preset-btn {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(245,245,245,0.2);
  border-radius: 50px; color: rgba(245,245,245,0.7);
  cursor: pointer; font-family: 'Chakra Petch', monospace;
  font-size: 13px; transition: all .2s;
}
.preset-btn:hover { border-color: var(--amarelo); color: var(--amarelo); }

.fracoes-slider-wrapper { margin-bottom: 20px; }
.fracoes-slider {
  width: 100%; margin-bottom: 16px;
  -webkit-appearance: none; height: 4px;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  border-radius: 2px; outline: none;
}
.fracoes-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--verde); cursor: pointer;
  box-shadow: 0 0 12px rgba(6,255,180,0.6);
}
.fracoes-display {
  display: flex; align-items: baseline; gap: 8px; margin-bottom: 8px;
}
.fracoes-big {
  font-family: 'Press Start 2P', monospace;
  font-size: 36px;
  background: linear-gradient(90deg, var(--verde), var(--azul));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fracoes-label { font-size: 16px; color: rgba(245,245,245,0.5); }
.fracoes-calc { font-size: 14px; color: var(--amarelo); }

.retro-input {
  width: 100%; padding: 14px 18px;
  background: rgba(131,56,236,0.08);
  border: 1px solid rgba(131,56,236,0.3);
  border-radius: var(--radius);
  color: var(--branco);
  font-family: 'Chakra Petch', monospace;
  font-size: 16px; outline: none;
  transition: border-color .2s;
}
.retro-input:focus { border-color: var(--rosa); box-shadow: 0 0 12px rgba(255,0,110,0.2); }
.retro-input.input-error { border-color: var(--rosa) !important; box-shadow: 0 0 10px rgba(255,0,110,0.3); }
.field-error {
  display: block; min-height: 16px;
  font-size: 12px; color: var(--rosa);
  margin-top: 5px; letter-spacing: 0.3px;
}
.retro-input option { background: var(--cinza); }

.token-name-inputs { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.input-group { display: flex; flex-direction: column; gap: 8px; }
.input-group label { font-size: 13px; color: rgba(245,245,245,0.6); letter-spacing: 1px; }
.hint-text { color: var(--roxo); }

.simbolo-input {
  text-transform: uppercase; font-family: 'Press Start 2P', monospace !important;
  font-size: 22px !important; letter-spacing: 4px;
}
.simbolo-preview {
  font-family: 'VT323', monospace;
  font-size: 20px; color: var(--verde);
  letter-spacing: 2px;
}

.btn-wizard-next {
  width: 100%; padding: 16px;
  background: linear-gradient(90deg, var(--rosa), var(--amarelo));
  border: none; border-radius: 50px;
  color: var(--preto); font-weight: 700;
  font-family: 'Chakra Petch', monospace;
  font-size: 16px; letter-spacing: 2px;
  cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 24px rgba(255,0,110,0.3);
}
.btn-wizard-next:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,0,110,0.5); }
.btn-wizard-next:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.btn-minerar {
  background: linear-gradient(90deg, var(--roxo), var(--azul));
  box-shadow: 0 4px 24px rgba(131,56,236,0.4);
  letter-spacing: 3px;
}
.btn-minerar:hover { box-shadow: 0 8px 32px rgba(131,56,236,0.6); }

/* ── MINING ── */
.mining {
  text-align: center; padding: 48px 24px;
}
.mining-content { max-width: 500px; margin: 0 auto; }
.mining-ascii {
  font-family: 'VT323', monospace;
  font-size: 14px; color: var(--verde);
  line-height: 1.3; margin-bottom: 24px;
  min-height: 120px; white-space: pre;
}
.mining-status {
  font-family: 'VT323', monospace;
  font-size: 20px; color: var(--amarelo);
  margin-bottom: 16px; letter-spacing: 2px;
}
.mining-bar {
  width: 100%; height: 8px;
  background: rgba(245,245,245,0.1);
  border-radius: 4px; overflow: hidden;
  margin-bottom: 16px;
}
.mining-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--rosa), var(--verde));
  border-radius: 4px;
  transition: width .2s linear;
}
.mining-hash {
  font-family: 'VT323', monospace;
  font-size: 13px; color: rgba(6,255,180,0.5);
  word-break: break-all; min-height: 20px;
}

/* ── EXEMPLO PRÁTICO ── */
.exemplo {
  max-width: 1100px; margin: 0 auto 56px;
  background: rgba(58,134,255,0.05);
  border: 1px solid rgba(58,134,255,0.15);
  border-radius: 16px; padding: 32px 36px;
}
.exemplo-label {
  font-family: 'VT323', monospace;
  font-size: 14px; color: var(--azul); letter-spacing: 3px;
  margin-bottom: 12px;
}
.exemplo-title {
  font-size: 18px; font-weight: 700;
  color: var(--branco); margin-bottom: 28px;
  line-height: 1.5; max-width: 700px;
}
.exemplo-steps {
  display: flex; align-items: flex-start;
  gap: 8px; flex-wrap: wrap;
}
.exemplo-step {
  display: flex; gap: 14px; align-items: flex-start;
  flex: 1; min-width: 180px;
}
.ex-num {
  font-family: 'Press Start 2P', monospace;
  font-size: 18px; color: var(--azul);
  flex: 0 0 auto; line-height: 1;
  margin-top: 2px;
}
.ex-body { display: flex; flex-direction: column; gap: 4px; }
.ex-body strong { font-size: 14px; color: var(--verde); display: block; }
.ex-body span { font-size: 13px; color: rgba(245,245,245,0.6); line-height: 1.5; }
.ex-body code {
  font-family: 'VT323', monospace; font-size: 16px;
  color: var(--amarelo); background: rgba(255,214,10,0.1);
  padding: 1px 6px; border-radius: 4px;
}
.exemplo-arrow {
  font-size: 24px; color: rgba(58,134,255,0.4);
  flex: 0 0 auto; padding-top: 2px; align-self: center;
}

/* ── COMPARAÇÃO FIDC vs TIDC ── */
.comparison {
  display: flex; align-items: stretch; gap: 0;
  max-width: 1000px; margin: 0 auto 56px;
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(131,56,236,0.2);
}
.comp-col {
  flex: 1; padding: 28px 28px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.comp-old { background: rgba(255,0,110,0.04); }
.comp-new { background: rgba(6,255,180,0.04); }
.comp-header {
  font-weight: 700; font-size: 16px;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.comp-badge {
  font-size: 10px; letter-spacing: 2px;
  padding: 3px 10px; border-radius: 50px;
  font-family: 'VT323', monospace;
}
.comp-badge-old { background: rgba(255,0,110,0.15); color: var(--rosa); border: 1px solid rgba(255,0,110,0.3); }
.comp-badge-new { background: rgba(6,255,180,0.15); color: var(--verde); border: 1px solid rgba(6,255,180,0.3); }
.comp-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(245,245,245,0.05);
  font-size: 14px; line-height: 1.4;
}
.comp-row:last-child { border-bottom: none; }
.comp-icon-no { color: var(--rosa); flex: 0 0 auto; font-weight: 700; }
.comp-icon-yes { color: var(--verde); flex: 0 0 auto; font-weight: 700; }
.comp-old .comp-row { color: rgba(245,245,245,0.5); }
.comp-new .comp-row { color: rgba(245,245,245,0.85); }
.comp-vs {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 56px;
  background: rgba(131,56,236,0.12);
  border-left: 1px solid rgba(131,56,236,0.2);
  border-right: 1px solid rgba(131,56,236,0.2);
}
.comp-vs-text {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px; color: var(--roxo);
  writing-mode: vertical-rl; letter-spacing: 4px;
}

/* ── CREDENCIAIS ── */
.credenciais {
  padding: 40px 24px;
  border-top: 1px solid rgba(245,245,245,0.06);
  border-bottom: 1px solid rgba(245,245,245,0.06);
}
.cred-inner { max-width: 1000px; margin: 0 auto; }
.cred-stats {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 20px;
}
.cred-stat { text-align: center; }
.cred-num {
  display: block; font-family: 'Press Start 2P', monospace;
  font-size: 16px;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 4px;
}
.cred-text { font-size: 11px; color: rgba(245,245,245,0.35); letter-spacing: 1px; }
.cred-divider { color: rgba(245,245,245,0.12); font-size: 20px; }
.cred-selos {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px;
}
.cred-selo {
  font-size: 12px; color: rgba(245,245,245,0.35);
  border: 1px solid rgba(245,245,245,0.08);
  padding: 6px 14px; border-radius: 50px;
  letter-spacing: 0.5px;
}

/* ── BLOCKCHAINS ── */
.blockchains {
  background: radial-gradient(ellipse at 50% 50%, #3A86FF0A 0%, transparent 70%);
  border-top: 1px solid rgba(58,134,255,0.15);
}
.chains-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 900px; margin: 0 auto 32px;
}
.chain-card {
  background: rgba(58,134,255,0.06);
  border: 1px solid rgba(58,134,255,0.2);
  border-radius: 12px; padding: 20px 16px;
  text-align: center; transition: all .2s;
}
.chain-card:hover { border-color: var(--azul); transform: translateY(-3px); background: rgba(58,134,255,0.12); }
.chain-icon { font-size: 28px; margin-bottom: 8px; color: var(--azul); }
.chain-name { font-weight: 700; font-size: 14px; margin-bottom: 4px; color: var(--branco); }
.chain-desc { font-size: 11px; color: rgba(245,245,245,0.4); }
.chains-note {
  text-align: center; font-size: 12px;
  color: rgba(245,245,245,0.35); letter-spacing: 1px;
  max-width: 700px; margin: 0 auto;
}

/* ── STRUCT IA ── */
.struct {
  background: linear-gradient(135deg, rgba(255,0,110,0.08), rgba(131,56,236,0.12), rgba(6,255,180,0.05));
  border-top: 1px solid rgba(255,0,110,0.2);
  border-bottom: 1px solid rgba(6,255,180,0.15);
  padding: 80px 24px;
}
.struct-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.struct-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(16px, 2.5vw, 26px);
  line-height: 1.5; margin-bottom: 20px;
  background: linear-gradient(90deg, var(--verde), var(--azul));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.struct-sub {
  font-size: 15px; color: rgba(245,245,245,0.75);
  margin-bottom: 28px; line-height: 1.9;
}
.struct-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 32px;
}
.struct-features li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: rgba(245,245,245,0.8); }
.sf-icon { color: var(--verde); flex: 0 0 auto; font-weight: 700; }
.struct-ctas { display: flex; flex-direction: column; gap: 10px; }
.struct-sub-note { font-size: 12px; color: rgba(245,245,245,0.35); letter-spacing: 1px; }

.btn-struct {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(90deg, var(--verde), var(--azul));
  color: var(--preto); font-weight: 700;
  padding: 16px 28px; border-radius: 50px;
  text-decoration: none; border: none; cursor: pointer;
  font-family: 'Chakra Petch', monospace;
  font-size: 14px; letter-spacing: 1px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(6,255,180,0.35);
}
.btn-struct:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(6,255,180,0.55); }

.btn-struct-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(6,255,180,0.1);
  border: 1px solid rgba(6,255,180,0.4);
  color: var(--verde);
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; cursor: pointer;
  font-family: 'Chakra Petch', monospace;
  font-size: 14px; letter-spacing: 1px;
  transition: all .2s;
}
.btn-struct-hero:hover { background: rgba(6,255,180,0.2); border-color: var(--verde); }

.btn-struct-sm {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(6,255,180,0.1);
  border: 1px solid rgba(6,255,180,0.4);
  color: var(--verde); font-weight: 700;
  padding: 12px 20px; border-radius: 50px;
  text-decoration: none; cursor: pointer;
  font-family: 'Chakra Petch', monospace;
  font-size: 13px; transition: all .2s;
}
.btn-struct-sm:hover { background: rgba(6,255,180,0.2); }

/* Terminal animado */
.struct-terminal {
  background: #080810;
  border: 1px solid rgba(6,255,180,0.25);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 40px rgba(6,255,180,0.12);
}
.terminal-bar {
  background: rgba(6,255,180,0.08);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(6,255,180,0.15);
}
.t-dot { width: 12px; height: 12px; border-radius: 50%; flex: 0 0 auto; }
.t-title { font-family: 'VT323', monospace; font-size: 14px; color: rgba(6,255,180,0.5); letter-spacing: 2px; margin-left: 8px; }
.terminal-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.terminal-body p { font-family: 'VT323', monospace; font-size: 16px; color: rgba(245,245,245,0.6); }
.t-prompt { color: var(--verde); margin-right: 8px; }
.t-out { color: rgba(245,245,245,0.5); padding-left: 18px; }
.t-green { color: var(--verde) !important; }
.t-yellow { color: var(--amarelo) !important; }

/* (social-proof removido — substituído por .credenciais) */

/* ── TIPO-CARD com tag ── */
.tipo-tag {
  font-size: 10px; color: rgba(245,245,245,0.35);
  letter-spacing: 1px; margin-top: -4px;
}
.tipo-card.selected .tipo-tag { color: var(--verde); opacity: 0.7; }

/* ── CHAIN SELECTOR ── */
.chain-selector { margin-bottom: 28px; }
.chain-label { font-size: 13px; color: rgba(245,245,245,0.6); letter-spacing: 1px; display: block; margin-bottom: 12px; }
.chain-sepolia-badge {
  display: flex; align-items: center; gap: 16px;
  background: rgba(6,255,180,0.06);
  border: 1px solid rgba(6,255,180,0.3);
  border-radius: 10px; padding: 14px 18px;
}
.chain-sepolia-icon { font-size: 28px; opacity: .8; }
.chain-sepolia-name {
  font-family: 'Chakra Petch', monospace; font-weight: 700;
  font-size: 15px; color: var(--verde);
}
.chain-sepolia-sub {
  font-size: 11px; color: rgba(245,245,245,0.45);
  margin-top: 3px; line-height: 1.4;
}
.chain-sepolia-live {
  margin-left: auto; font-family: 'Press Start 2P', monospace;
  font-size: 8px; color: var(--verde);
  border: 1px solid var(--verde); border-radius: 4px;
  padding: 5px 8px; white-space: nowrap;
  animation: blink 1.4s step-end infinite;
}

/* ── MODAL chain badge ── */
.modal-chain-badge {
  display: inline-block; margin-bottom: 12px;
  border: 1px solid rgba(58,134,255,0.4);
  color: var(--azul); font-size: 12px; letter-spacing: 2px;
  padding: 4px 14px; border-radius: 50px;
  font-family: 'VT323', monospace;
}

/* ── FORM ── */
.lead-form { max-width: 720px; margin: 0 auto; }
.form-container { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; color: rgba(245,245,245,0.6); letter-spacing: 1px; }
.form-check {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; color: rgba(245,245,245,0.6);
}
.form-check a { color: var(--azul); }
.form-check input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--verde); }
.btn-form-submit { font-size: 14px; letter-spacing: 1px; width: 100%; border: none; }
.form-struct-link { text-align: center; font-size: 13px; color: rgba(245,245,245,0.4); }
.form-struct-link a { color: var(--verde); text-decoration: none; }
.form-struct-link a:hover { text-decoration: underline; }
.form-aviso { font-size: 11px; color: rgba(245,245,245,0.3); text-align: center; line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(131,56,236,0.2);
  padding: 48px 24px;
}
.footer-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.footer-logo {
  font-family: 'Press Start 2P', monospace; font-size: 14px;
  background: linear-gradient(90deg, var(--rosa), var(--roxo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.footer-sub { font-size: 14px; color: rgba(245,245,245,0.5); margin-bottom: 24px; }
.footer-sub a { color: var(--azul); text-decoration: none; }
.footer-links {
  display: flex; gap: 24px; justify-content: center;
  margin-bottom: 24px;
}
.footer-links a { color: rgba(245,245,245,0.4); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--branco); }
.footer-legal { font-size: 11px; color: rgba(245,245,245,0.25); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(13,13,26,0.9);
  z-index: 100; display: none;
  backdrop-filter: blur(4px);
}
.modal-overlay.active { display: block; }

.modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 101; display: none;
  width: 90%; max-width: 560px;
  opacity: 0; transition: all .3s;
}
.modal.active { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }

.modal-content {
  background: var(--fundo);
  border: 1px solid var(--roxo);
  border-radius: 16px; padding: 40px;
  text-align: center; position: relative;
  box-shadow: 0 0 60px rgba(131,56,236,0.3);
}
.modal-glow {
  position: absolute; inset: -1px; border-radius: 16px;
  background: linear-gradient(135deg, var(--rosa), var(--roxo), var(--azul));
  z-index: -1; opacity: 0.5;
}
.modal-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 20px; margin-bottom: 8px;
}
.modal-subtitle { color: rgba(245,245,245,0.7); margin-bottom: 24px; }
.modal-hash-label { font-size: 11px; color: var(--verde); letter-spacing: 2px; margin-bottom: 8px; }
.modal-hash {
  background: #00000066; border: 1px solid rgba(6,255,180,0.2);
  border-radius: 6px; padding: 12px; font-family: 'VT323', monospace;
  font-size: 13px; color: rgba(245,245,245,0.5);
  word-break: break-all; margin-bottom: 24px;
}
.modal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.modal-explorer-link {
  display: block; margin: -4px auto 16px;
  font-family: 'VT323', monospace; font-size: 16px;
  color: var(--verde); text-decoration: none;
  letter-spacing: 1px; transition: opacity .2s;
}
.modal-explorer-link:hover { opacity: .7; }
.modal-contract-box {
  background: rgba(6,255,180,0.05);
  border: 1px solid rgba(6,255,180,0.25);
  border-radius: 8px; padding: 12px 16px;
  margin-bottom: 16px; text-align: left;
}
.modal-contract-label {
  font-size: 10px; color: var(--verde);
  letter-spacing: 2px; margin-bottom: 6px;
}
.modal-contract-addr {
  font-family: 'VT323', monospace; font-size: 13px;
  color: rgba(245,245,245,0.7); word-break: break-all;
  margin-bottom: 8px;
}
.modal-contract-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.modal-token-link {
  font-family: 'VT323', monospace; font-size: 16px;
  color: var(--verde); text-decoration: none; transition: opacity .2s;
}
.modal-token-link:hover { opacity: .7; }
.btn-metamask {
  background: linear-gradient(90deg, #F6851B, #E2761B);
  border: none; border-radius: 6px;
  padding: 6px 14px; color: #fff;
  font-family: 'Chakra Petch', monospace; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: opacity .2s;
}
.btn-metamask:hover { opacity: .85; }
.modal-aviso { font-size: 11px; color: rgba(245,245,245,0.3); margin-bottom: 16px; transition: color .3s; }
.modal-close {
  background: none; border: none; color: rgba(245,245,245,0.4);
  cursor: pointer; font-size: 13px; font-family: 'Chakra Petch', monospace;
}
.modal-close:hover { color: var(--branco); }

/* ── GATE FORM (step 5) ── */
.gate-form {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 28px;
}
.gate-lgpd {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: rgba(245,245,245,0.5);
}
.gate-lgpd input { flex: 0 0 auto; margin-top: 2px; accent-color: var(--verde); }
.gate-lgpd a { color: var(--azul); }

/* ── OVERLAY CERTIFICADO ── */
.cert-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(13,13,26,0.95);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.cert-overlay.active {
  opacity: 1; pointer-events: auto;
}
.cert-overlay-box {
  background: #0d0d1a;
  border: 1px solid rgba(131,56,236,0.4);
  border-radius: 16px; overflow: hidden;
  max-width: 860px; width: 100%;
  max-height: 95vh;
  display: flex; flex-direction: column;
  box-shadow: 0 0 80px rgba(131,56,236,0.25);
  transform: scale(0.95);
  transition: transform .3s ease;
}
.cert-overlay.active .cert-overlay-box {
  transform: scale(1);
}
.cert-overlay-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px;
  background: rgba(131,56,236,0.1);
  border-bottom: 1px solid rgba(131,56,236,0.2);
  flex: 0 0 auto;
}
.cert-overlay-title {
  font-family: 'VT323', monospace;
  font-size: 18px; color: var(--roxo); letter-spacing: 2px;
}
.cert-overlay-close {
  background: none; border: 1px solid rgba(245,245,245,0.2);
  color: rgba(245,245,245,0.6); cursor: pointer;
  font-family: 'Chakra Petch', monospace; font-size: 13px;
  padding: 6px 14px; border-radius: 50px;
  transition: all .2s;
}
.cert-overlay-close:hover { border-color: var(--rosa); color: var(--rosa); }
.cert-img-wrapper {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; align-items: center; justify-content: center;
  background: #060610;
}
.cert-img {
  max-width: 100%; height: auto;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(131,56,236,0.3);
  display: block;
}
.cert-overlay-actions {
  padding: 16px 20px;
  background: rgba(131,56,236,0.06);
  border-top: 1px solid rgba(131,56,236,0.15);
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  flex: 0 0 auto;
}
.cert-overlay-aviso {
  text-align: center; font-size: 11px;
  color: rgba(245,245,245,0.25);
  padding: 8px 20px 14px;
  flex: 0 0 auto;
}

/* ── UTILS ── */
.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

@media (max-width: 900px) {
  .comparison { flex-direction: column; }
  .comp-vs { flex: 0 0 auto; padding: 12px; writing-mode: initial; }
  .comp-vs-text { writing-mode: initial; letter-spacing: 2px; }
  .exemplo-steps { flex-direction: column; }
  .exemplo-arrow { transform: rotate(90deg); align-self: center; }
}
@media (max-width: 768px) {
  .struct-inner { grid-template-columns: 1fr; gap: 40px; }
  .chains-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-stats { gap: 10px 20px; }
  .cred-divider { display: none; }
}
@media (max-width: 640px) {
  .nav { padding: 16px 20px; }
  .nav-links a:not(.btn-nav) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .tipo-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-counter { flex-direction: column; gap: 12px; }
  .struct-terminal { display: none; }
  .exemplo { padding: 24px 20px; }
  .cert-overlay-actions { flex-direction: column; align-items: center; }
}
