/* Estilos da Plataforma de Aula Interativa: Do Web App ao APK */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;600;700&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

body {
  font-family: var(--font-sans);
  background-color: #0f172a;
  color: #f8fafc;
}

code, pre, .font-code {
  font-family: var(--font-mono);
}

/* Custom Glow Effects */
.glow-emerald {
  box-shadow: 0 0 40px -10px rgba(16, 185, 129, 0.3);
}

.glow-blue {
  box-shadow: 0 0 40px -10px rgba(59, 130, 246, 0.3);
}

.glow-amber {
  box-shadow: 0 0 40px -10px rgba(245, 158, 11, 0.3);
}

/* Step Card Transitions */
.step-content-section {
  animation: fadeIn 0.35s ease-out;
}

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

/* Scrollbar Style */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1e293b;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Tactile Active Press */
.active-press:active {
  transform: scale(0.97);
}

/* Analogy Badge Shimmer */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer-badge {
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.05) 75%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
