/* ===== PALETA CYBER-FUTURISTA ===== */
:root {
  --bg-dark: #0A0A0D;
  --neon-cyan: #00FFF7;
  --neon-magenta: #FF00E0;
  --neon-yellow: #FFEA00;
  --accent-red: #FF3B3F;
  --accent-green: #4AFF4A;
  --text-light: #E5E5E5;
  --text-muted: #777F8C;
}

/* ===== RESET E BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Courier New', monospace;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== GLASSMORPHISM ===== */
.glass {
  backdrop-filter: blur(10px);
  background: rgba(27,27,31,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===== BOTÕES NEON ===== */
.btn-neon {
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-neon:hover {
  background: var(--neon-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px var(--neon-cyan);
  text-shadow: 0 0 5px var(--neon-cyan);
}

.btn-neon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,255,247,0.2), transparent);
  transition: left 0.5s;
}

.btn-neon:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(45deg, var(--neon-cyan), var(--neon-magenta));
  border: none;
  color: var(--bg-dark);
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,255,247,0.4);
}

/* ===== SCANLINES ===== */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,255,247,0.03) 2px,
    rgba(0,255,247,0.03) 4px
  );
  animation: scanlines 0.1s linear infinite;
}

@keyframes scanlines {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* ===== PARTICLE EMITTER ===== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 50%;
  animation: particle-float 6s linear infinite;
}

@keyframes particle-float {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) translateX(100px);
    opacity: 0;
  }
}

/* ===== HEADER ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(10,10,13,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,255,247,0.2);
}

header h1 {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
  font-size: 1.8rem;
}

/* ===== MAIN CONTENT ===== */
main {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== INTERACTIVE MAP ===== */
.interactive-map {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, rgba(0,255,247,0.1), rgba(255,0,224,0.1));
  border: 2px solid var(--neon-cyan);
  border-radius: 16px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.interactive-map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="%2300FFF7" opacity="0.3"/><circle cx="80" cy="70" r="2" fill="%23FF00E0" opacity="0.3"/><circle cx="50" cy="20" r="2" fill="%23FFEA00" opacity="0.3"/></svg>');
  animation: map-pulse 3s ease-in-out infinite;
}

@keyframes map-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ===== SECTIONS ===== */
section {
  margin-bottom: 30px;
  padding: 25px;
}

section h2 {
  color: var(--neon-yellow);
  margin-bottom: 15px;
  text-shadow: 0 0 10px var(--neon-yellow);
  font-size: 1.5rem;
}

section p {
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 15px;
  }
  
  header h1 {
    font-size: 1.4rem;
  }
  
  .interactive-map {
    height: 300px;
  }
  
  section {
    padding: 20px;
  }
}

/* ===== UTILITY CLASSES ===== */
.bg-dark {
  background: var(--bg-dark);
}

.text-light {
  color: var(--text-light);
}

.text-muted {
  color: var(--text-muted);
}

.neon-glow {
  text-shadow: 0 0 10px currentColor;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

.glitch {
  animation: glitch 0.3s ease-in-out infinite;
}

/* ===== GLITCH PAGE STYLES ===== */
.error-code {
  font-size: 4rem;
  color: var(--accent-red);
  text-align: center;
  margin-top: 20vh;
  text-shadow: 0 0 20px var(--accent-red);
  animation: glitch 0.3s ease-in-out infinite;
}

.error-sub {
  font-size: 1.5rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 2rem;
  animation: flicker 0.5s ease-in-out infinite;
}

.fake-progress {
  width: 300px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin: 3rem auto;
  overflow: hidden;
  position: relative;
}

.fake-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  animation: progress 4s ease-out forwards;
}

.hidden-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.hidden-link:hover {
  opacity: 1;
  color: var(--neon-cyan);
}

/* ===== PERSONA PAGE STYLES ===== */
.bg-light {
  background: #f8f9fa;
}

.text-dark {
  color: #212529;
}

.avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 2rem auto;
  display: block;
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,255,247,0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(0,255,247,0.5);
}

.btn-secondary {
  background: linear-gradient(45deg, var(--neon-magenta), var(--neon-yellow));
  border: none;
  color: var(--bg-dark);
  padding: 15px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 2rem auto;
  display: block;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,0,224,0.4);
} 