/* 
 * Arquivo de estilos personalizados.
 * Foco em CNH Especial PCD, Design Minimalista e Tecnológico.
 */

:root {
  --cor-primaria: #0EA5E9; /* Sky Blue 500 - tech e acessível */
  --cor-secundaria: #0F172A; /* Slate 900 - sóbrio e moderno */
  --cor-destaque: #38BDF8; /* Sky Blue 400 */
}

/* Scrollbar minimalista */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; 
}

/* Glassmorphism Utilities */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass-panel {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-glass {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .dark-glass {
  background: rgba(2, 6, 23, 0.9);
}

html {
  scroll-behavior: smooth;
  transition: font-size 0.3s ease;
}

/* Modo Alto Contraste */
html.high-contrast {
  filter: contrast(120%) saturate(120%);
}
html.high-contrast body {
  background-color: #000 !important;
  color: #fff !important;
}
html.high-contrast .glass-panel, 
html.high-contrast .dark-glass,
html.high-contrast .bg-white,
html.high-contrast .bg-brand-bg {
  background-color: #000 !important;
  border-color: #fff !important;
  color: #fff !important;
}
html.high-contrast * {
  text-shadow: none !important;
  box-shadow: none !important;
}
