/* Stylesheet para Analise.Cloud */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Smooth Scroll Behaviour */
html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0B0914;
}
::-webkit-scrollbar-thumb {
  background: #2A2050;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7209B7;
}

/* Focus Visible for WCAG AA compliance */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #4CC9F0 !important;
  outline-offset: 3px !important;
}

/* Background Glow Effects */
.glow-purple {
  background: radial-gradient(circle at center, rgba(114, 9, 183, 0.25) 0%, rgba(11, 9, 20, 0) 70%);
}

.glow-accent {
  background: radial-gradient(circle at center, rgba(76, 201, 240, 0.2) 0%, rgba(11, 9, 20, 0) 70%);
}

/* Card Hover Elevation & Border Animation */
.glass-card {
  background: rgba(21, 16, 42, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid #2A2050;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(114, 9, 183, 0.6);
  box-shadow: 0 10px 30px -10px rgba(114, 9, 183, 0.3);
  transform: translateY(-2px);
}

/* Pulsing Badge Glow */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.animate-pulse-glow {
  animation: pulse-glow 3s infinite ease-in-out;
}

/* Reduced Motion Override for Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .animate-pulse-glow {
    animation: none;
  }
  .glass-card:hover {
    transform: none;
  }
}
