/* ============================================
   VARIÁVEIS E RESET GLOBAL
   ============================================ */

:root {
  --bg: #04010a;
  --bg2: #08031a;
  --glass: rgba(255, 255, 255, 0.04);
  --glass2: rgba(255, 255, 255, 0.08);
  --glass3: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.1);
  --border2: rgba(255, 255, 255, 0.2);
  --neon-pink: #ff2d78;
  --neon-cyan: #00f5ff;
  --neon-lime: #b6ff00;
  --neon-gold: #ffd700;
  --neon-purple: #bf5fff;
  --white: #ffffff;
  --dim: #aaa8c0;
  --fog: #55506a;
  --ff-display: 'Black Ops One', sans-serif;
  --ff-mono: 'VT323', monospace;
  --ff-ui: 'Rajdhani', sans-serif;
  --ff-tech: 'Orbitron', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-ui);
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(191, 95, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(0, 245, 255, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 50%, rgba(255, 45, 120, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ============================================
   ACESSIBILIDADE
   ============================================ */

/* Classe para ocultar visualmente mas manter acessível para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Melhorar visibilidade do foco para navegação por teclado */
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Cursor padrão (removido cursor: none para acessibilidade) */
body {
  cursor: auto;
}

/* ============================================
   EFEITOS VISUAIS (SCANLINES E GRAIN)
   ============================================ */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(0, 0, 0, .03) 0px, rgba(0, 0, 0, .03) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 9990;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: .025;
  pointer-events: none;
  z-index: 9989;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

canvas#pc {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ============================================
   NAVEGAÇÃO
   ============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 1, 10, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

nav.sc {
  background: rgba(4, 1, 10, .9);
  border-color: rgba(0, 245, 255, .2);
}

.n-logo {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: .2em;
  text-decoration: none;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, .4));
}

.n-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.n-link {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

.n-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 12px var(--neon-cyan);
}

/* ============================================
   ÍCONES FLUTUANTES Y2K
   ============================================ */

.ico {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  font-size: 28px;
  animation: float linear infinite;
  opacity: 0.15;
  filter: drop-shadow(0 0 6px currentColor);
}

@keyframes float {
  0% {
    transform: translateY(110vh) rotate(0deg);
  }

  100% {
    transform: translateY(-10vh) rotate(360deg);
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px 80px;
  overflow: hidden;
}

.h-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-tech);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .3);
  background: rgba(0, 245, 255, .06);
  padding: 6px 14px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  width: fit-content;
  opacity: 0;
  animation: fu .7s .2s forwards;
}

.h-chip::before {
  content: '◆';
  font-size: 7px;
  animation: blink 1.2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

h1.h-title {
  font-family: var(--ff-display);
  font-size: clamp(52px, 9vw, 130px);
  line-height: .92;
  letter-spacing: .04em;
  margin-bottom: 24px;
  opacity: 0;
  animation: fu .9s .3s forwards;
}

.h-title .line1 {
  background: linear-gradient(90deg, #fff 0%, var(--neon-cyan) 50%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.h-title .line2 {
  background: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-size: .7em;
}

.h-title .line3 {
  color: rgba(255, 255, 255, .15);
  display: block;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
}

.h-sub {
  font-family: var(--ff-mono);
  font-size: 18px;
  color: var(--dim);
  letter-spacing: .08em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fu .9s .45s forwards;
}

.h-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .9s .6s forwards;
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   BOTÕES
   ============================================ */

.btn-y2k {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--bg);
  border: none;
  font-weight: 700;
  transition: all .3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-y2k:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 30px rgba(0, 245, 255, .5);
}

.btn-y2k:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

.btn-ghost2 {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  background: var(--glass);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .3);
  backdrop-filter: blur(8px);
  text-decoration: none;
  display: inline-block;
  transition: all .3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-ghost2:hover {
  background: rgba(0, 245, 255, .1);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, .3);
}

.btn-ghost2:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* ============================================
   ESTATÍSTICAS DO HERO
   ============================================ */

.h-stats {
  position: absolute;
  right: 48px;
  bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  opacity: 0;
  animation: fu 1s 1s forwards;
}

.hs-n {
  font-family: var(--ff-display);
  font-size: 72px;
  line-height: 1;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 245, 255, .3));
}

.hs-l {
  font-family: var(--ff-tech);
  font-size: 9px;
  color: var(--fog);
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0, 245, 255, .15);
  border-bottom: 1px solid rgba(0, 245, 255, .15);
  background: rgba(0, 245, 255, .03);
  padding: 10px 0;
  position: relative;
  z-index: 2;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: tick 20s linear infinite;
}

.ticker-item {
  font-family: var(--ff-mono);
  font-size: 16px;
  color: var(--neon-cyan);
  padding: 0 24px;
  letter-spacing: .1em;
  opacity: .7;
}

.ticker-sep {
  color: var(--neon-pink);
  padding: 0 8px;
}

@keyframes tick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   SEÇÕES
   ============================================ */

.sec-head {
  padding: 80px 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--border);
}

.sec-tag {
  font-family: var(--ff-tech);
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sec-tag::before {
  content: '>';
  color: var(--neon-pink);
}

.sec-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 72px);
  background: linear-gradient(90deg, #fff, var(--dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec-right {
  font-family: var(--ff-mono);
  font-size: 15px;
  color: var(--fog);
  line-height: 1.7;
  text-align: right;
  max-width: 280px;
}

/* ============================================
   GRID DE PRODUTOS
   ============================================ */

#produtos {
  position: relative;
  z-index: 2;
}

.p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .05);
}

@media (max-width: 1024px) {
  .p-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .p-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   CARDS DE PRODUTOS
   ============================================ */

.p-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  border: 1px solid var(--border);
}

.p-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 245, 255, .06), rgba(191, 95, 255, .06));
  transition: opacity .4s;
  z-index: 1;
}

.p-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 255, .3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(0, 245, 255, .15), inset 0 0 40px rgba(0, 245, 255, .03);
}

.p-card:hover::before {
  opacity: 1;
}

.p-img {
  width: 100%;
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.1);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .4s;
}

.p-card:hover .p-img img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.15);
}

.p-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 1, 10, .95) 0%, rgba(4, 1, 10, .3) 40%, transparent 70%);
  z-index: 2;
}

.p-img-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-purple), transparent);
  z-index: 3;
  opacity: 0;
  transition: opacity .4s;
}

.p-card:hover .p-img-glow {
  opacity: 1;
}

.p-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  font-family: var(--ff-tech);
  font-size: 8px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.p-corner {
  position: absolute;
  top: 0;
  right: 0;
  border-top: 32px solid rgba(0, 245, 255, .12);
  border-left: 32px solid transparent;
  z-index: 4;
}

.p-info {
  padding: 16px 20px 22px;
  position: relative;
  z-index: 2;
}

.p-name {
  font-family: var(--ff-display);
  font-size: 17px;
  letter-spacing: .06em;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.1;
}

.p-mat {
  font-family: var(--ff-tech);
  font-size: 8px;
  color: var(--fog);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.p-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-lbl {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--neon-cyan);
}

.btn-int {
  font-family: var(--ff-tech);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--glass2);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .3);
  padding: 7px 14px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .25s;
}

.btn-int:hover {
  background: var(--neon-cyan);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 245, 255, .4);
}

/* ============================================
   MODAL
   ============================================ */

.m-ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 1, 10, .85);
  z-index: 600;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(12px);
}

.m-ov.on {
  display: flex;
}

.modal {
  background: rgba(8, 3, 26, .9);
  border: 1px solid rgba(0, 245, 255, .2);
  width: 100%;
  max-width: 460px;
  position: relative;
  backdrop-filter: blur(24px);
  animation: mIn .4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 60px rgba(0, 245, 255, .1), 0 0 120px rgba(191, 95, 255, .08);
}

@keyframes mIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.m-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  background-size: 200%;
  animation: ms 3s linear infinite;
}

@keyframes ms {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 200%;
  }
}

.m-head {
  padding: 28px 32px 20px;
}

.m-etq {
  font-family: var(--ff-tech);
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.m-tit {
  font-family: var(--ff-display);
  font-size: 28px;
  background: linear-gradient(90deg, #fff, var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-prod {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--fog);
  margin-top: 4px;
}

.m-body {
  padding: 0 32px 32px;
}

.m-txt {
  font-size: 14px;
  color: var(--dim);
  line-height: 1.7;
  margin-bottom: 22px;
}

.co {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.copt {
  flex: 1;
  padding: 14px 10px;
  border: 1px solid var(--border);
  background: var(--glass);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  backdrop-filter: blur(8px);
}

.copt:hover,
.copt.sel {
  border-color: var(--neon-cyan);
  background: rgba(0, 245, 255, .08);
  box-shadow: 0 0 20px rgba(0, 245, 255, .1);
}

.copt-e {
  font-size: 20px;
}

.copt-l {
  font-family: var(--ff-tech);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
}

.copt.sel .copt-l {
  color: var(--neon-cyan);
}

.m-inp {
  width: 100%;
  background: rgba(0, 0, 0, .4);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--ff-mono);
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
  transition: border-color .2s;
}

.m-inp:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 255, .15);
}

.m-inp::placeholder {
  color: var(--fog);
}

.m-err {
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--neon-pink);
  margin-bottom: 12px;
  display: none;
}

.m-err.on {
  display: block;
}

.m-btn {
  width: 100%;
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--bg);
  border: none;
  padding: 16px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: all .2s;
}

.m-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 0 30px rgba(0, 245, 255, .4);
}

.m-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.m-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--glass2);
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  padding: 4px 8px;
  font-family: var(--ff-tech);
}

.m-close:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

.m-ok {
  display: none;
  padding: 40px 32px;
  text-align: center;
}

.m-ok.on {
  display: block;
}

.ok-k {
  font-size: 40px;
  margin-bottom: 16px;
  animation: pop .5s cubic-bezier(.16, 1, .3, 1);
}

@keyframes pop {
  from {
    transform: scale(.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ok-tit {
  font-family: var(--ff-display);
  font-size: 32px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.ok-txt {
  font-family: var(--ff-mono);
  font-size: 15px;
  color: var(--dim);
  line-height: 1.8;
}

/* ============================================
   PAINEL ADMIN
   ============================================ */

#admin {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-lock {
  text-align: center;
  padding: 60px 40px;
  background: var(--glass3);
  border: 1px solid var(--border2);
  backdrop-filter: blur(20px);
  max-width: 400px;
  margin: 0 auto;
}

.lk-k {
  font-size: 64px;
  margin-bottom: 20px;
}

.lk-tit {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 10px;
}

.lk-sub {
  font-family: var(--ff-tech);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: .15em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.lk-inp {
  width: 100%;
  background: rgba(0, 0, 0, .4);
  border: 1px solid var(--border);
  color: #fff;
  padding: 14px 16px;
  font-family: var(--ff-mono);
  font-size: 15px;
  margin-bottom: 12px;
  transition: border-color .2s;
}

.lk-inp:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 255, .15);
}

.lk-err {
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--neon-pink);
  margin-bottom: 12px;
  display: none;
}

.lk-err.on {
  display: block;
}

.a-panel {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.a-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.a-h {
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 4px;
}

.a-sub {
  font-family: var(--ff-tech);
  font-size: 11px;
  color: var(--fog);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.a-btns {
  display: flex;
  gap: 12px;
}

.abtn {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--glass2);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .3);
  cursor: pointer;
  transition: all .2s;
}

.abtn:hover {
  background: rgba(0, 245, 255, .1);
  border-color: var(--neon-cyan);
}

.abtn-g {
  color: var(--neon-pink);
  border-color: rgba(255, 45, 120, .3);
}

.abtn-g:hover {
  background: rgba(255, 45, 120, .1);
  border-color: var(--neon-pink);
}

.st-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .st-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.st-box {
  padding: 20px;
  background: var(--glass2);
  border: 1px solid var(--border);
  text-align: center;
  opacity: 0;
  animation: fu .6s forwards;
}

.st-n {
  font-family: var(--ff-display);
  font-size: 36px;
  color: var(--neon-cyan);
  margin-bottom: 8px;
}

.st-l {
  font-family: var(--ff-tech);
  font-size: 9px;
  color: var(--fog);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.f-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.fbtn {
  font-family: var(--ff-tech);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--glass);
  color: var(--dim);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
}

.fbtn:hover,
.fbtn.on {
  background: rgba(0, 245, 255, .1);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table thead {
  background: var(--glass2);
}

table th {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--neon-cyan);
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

table td {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--dim);
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

table tbody tr:hover {
  background: rgba(0, 245, 255, .05);
}

.t-empty {
  text-align: center;
  padding: 40px;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--fog);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 48px 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.ft-logo {
  font-family: var(--ff-display);
  font-size: 24px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.ft-tag {
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--fog);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ft-ct {
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--neon-cyan);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

footer ul {
  list-style: none;
}

.ft-i {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 8px;
}

.ft-i a {
  color: var(--dim);
  text-decoration: none;
  transition: color .2s;
}

.ft-i a:hover {
  color: var(--neon-cyan);
}

.ft-bot {
  background: rgba(0, 0, 0, .5);
  border-top: 1px solid var(--border);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--fog);
}

.ft-cp {
  letter-spacing: .1em;
}

.ft-ada {
  letter-spacing: .1em;
}

/* ============================================
   ASSISTENTE ADA - FLUTUANTE E CONTEXTUAL
   ============================================ */

#ada-w {
  position: fixed;
  z-index: 1000;
  pointer-events: none;
}

#ada-w.visible {
  pointer-events: auto;
}

/* BUBBLE FLUTUANTE */
#ada-bubble {
  position: fixed;
  pointer-events: auto;
  z-index: 1000;
  animation: floatIn .4s cubic-bezier(.16, 1, .3, 1);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: scale(.5) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  to {
    opacity: 0;
    transform: scale(.5) translateY(20px);
  }
}

.ada-bubble-content {
  background: rgba(8, 3, 26, .98);
  border: 1px solid rgba(0, 245, 255, .3);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  padding: 16px;
  max-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 245, 255, .2), 0 0 60px rgba(0, 245, 255, .1);
  position: relative;
}

.ada-bubble-content::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(8, 3, 26, .98);
  border: 1px solid rgba(0, 245, 255, .3);
  border-radius: 2px;
  transform: rotate(45deg);
  bottom: -7px;
  right: 20px;
}

.ada-bubble-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 245, 255, .1);
}

.ada-bubble-avatar {
  width: 32px;
  height: 32px;
  background: var(--glass2);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.ada-bubble-name {
  font-family: var(--ff-display);
  font-size: 12px;
  color: var(--neon-cyan);
  letter-spacing: .05em;
}

.ada-bubble-text {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--dim);
  line-height: 1.5;
  margin-bottom: 12px;
}

.ada-bubble-tips {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ada-tip-btn {
  font-family: var(--ff-tech);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 8px 12px;
  background: rgba(0, 245, 255, .1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  text-align: left;
}

.ada-tip-btn:hover {
  background: rgba(0, 245, 255, .2);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(0, 245, 255, .2);
}

.ada-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  color: var(--fog);
  font-size: 16px;
  cursor: pointer;
  transition: color .2s;
  padding: 4px;
}

.ada-close-btn:hover {
  color: var(--neon-pink);
}

/* BOTÃO FLUTUANTE (quando não há bubble) */
#ada-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(0, 245, 255, .3);
  animation: pulse 2s infinite;
}

#ada-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(0, 245, 255, .6);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 245, 255, .3);
  }

  50% {
    box-shadow: 0 0 30px rgba(0, 245, 255, .5);
  }
}

.ada-ping {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--neon-cyan);
  animation: ping 2s infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* PANEL LEGADO (mantido para compatibilidade) */
#ada-panel {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: rgba(8, 3, 26, .95);
  border: 1px solid rgba(0, 245, 255, .2);
  border-radius: 8px;
  backdrop-filter: blur(20px);
  flex-direction: column;
  max-height: 500px;
  box-shadow: 0 0 60px rgba(0, 245, 255, .1);
}

#ada-panel.on {
  display: flex;
}

.ada-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
}

.ada-top {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.ada-id {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ada-av {
  width: 40px;
  height: 40px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ada-nm {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--white);
}

.ada-st {
  font-family: var(--ff-tech);
  font-size: 9px;
  color: var(--neon-cyan);
  letter-spacing: .1em;
}

.ada-cl {
  background: var(--glass2);
  border: 1px solid var(--border);
  color: var(--dim);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all .2s;
}

.ada-cl:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}

.ada-emo {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.ada-kmo {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}

.ada-mood {
  font-family: var(--ff-tech);
  font-size: 10px;
  color: var(--neon-cyan);
  letter-spacing: .1em;
  text-transform: uppercase;
}

#ada-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

.ada-ty-r {
  padding: 8px 16px;
  text-align: center;
}

.ada-ty {
  display: flex;
  justify-content: center;
  gap: 4px;
  display: none;
}

.ada-ty.on {
  display: flex;
}

.adot {
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: bounce .6s infinite;
}

.adot:nth-child(2) {
  animation-delay: .1s;
}

.adot:nth-child(3) {
  animation-delay: .2s;
}

@keyframes bounce {

  0%,
  100% {
    opacity: .3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

.ada-qk {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ada-qk-btn {
  font-family: var(--ff-tech);
  font-size: 9px;
  padding: 6px 10px;
  background: var(--glass2);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, .3);
  cursor: pointer;
  transition: all .2s;
}

.ada-qk-btn:hover {
  background: rgba(0, 245, 255, .1);
  border-color: var(--neon-cyan);
}

.ada-inp-r {
  padding: 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid var(--border);
}

#ada-input {
  flex: 1;
  background: rgba(0, 0, 0, .4);
  border: 1px solid var(--border);
  color: #fff;
  padding: 8px 12px;
  font-family: var(--ff-mono);
  font-size: 12px;
  outline: none;
  transition: border-color .2s;
}

#ada-input:focus {
  border-color: var(--neon-cyan);
}

#ada-input::placeholder {
  color: var(--fog);
}

#ada-send {
  background: var(--neon-cyan);
  color: var(--bg);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  transition: all .2s;
}

#ada-send:hover {
  filter: brightness(1.2);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .n-links {
    gap: 16px;
  }

  .n-link {
    font-size: 9px;
  }

  #hero {
    padding: 80px 24px 60px;
  }

  .h-stats {
    position: static;
    margin-top: 40px;
    text-align: left;
  }

  .sec-head {
    flex-direction: column;
    padding: 40px 24px;
  }

  .sec-right {
    text-align: left;
    margin-top: 20px;
  }

  .a-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .a-btns {
    width: 100%;
    margin-top: 16px;
  }

  footer {
    padding: 40px 24px 16px;
  }

  .ft-bot {
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
  }
}

@media (max-width: 480px) {
  .h-title {
    font-size: clamp(36px, 8vw, 60px);
  }

  .h-sub {
    font-size: 14px;
  }

  .h-actions {
    flex-direction: column;
  }

  .btn-y2k,
  .btn-ghost2 {
    width: 100%;
  }

  .modal {
    max-width: 90vw;
  }

  .co {
    flex-direction: column;
  }

  #ada-panel {
    width: calc(100vw - 40px);
    bottom: 80px;
    right: -10px;
  }
}
