/* Custom Scrollbar com Gradiente Ciano Neon */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0B0F19;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00D2FF 0%, #0066FF 100%);
  border-radius: 9999px;
  border: 2px solid #0B0F19;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #2563eb 100%);
}

/* Glassmorphism e Efeitos Dark */
.glass-panel {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.glass-panel-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.glass-panel-hover:hover {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(0, 210, 255, 0.35);
  box-shadow: 0 10px 30px -10px rgba(0, 210, 255, 0.2);
}

.glass-nav {
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Gradientes e Brilhos Neon */
.text-gradient-cyan-blue {
  background: linear-gradient(135deg, #00D2FF 0%, #0066FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-gradient-cyan-blue {
  background: linear-gradient(135deg, #00D2FF 0%, #0066FF 100%);
}
.glow-cyan {
  box-shadow: 0 0 25px rgba(0, 210, 255, 0.3);
}

/* Radar Pulse Animation */
@keyframes radar-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.animate-radar {
  animation: radar-pulse 2.2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

/* Flutuação suave */
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.animate-float {
  animation: float-slow 5s ease-in-out infinite;
}

/* 3D Perspective Card */
.perspective-1000 {
  perspective: 1000px;
}
.preserve-3d {
  transform-style: preserve-3d;
}
