
/* Configurações Base e Utilitários Globais */

:root {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: dark;
  
  /* Fallback vars if Tailwind script takes time to load */
  --color-brand-50: #eff6ff;
  --color-brand-500: #3b82f6;
  --color-dark-800: #18181b;
  --color-dark-900: #09090b;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--color-dark-900);
  color: #f4f4f5;
  overflow-x: hidden; /* Garante estanqueidade lateral */
}

/* Utilitário para esconder scrollbar mantendo o scroll */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom Scrollbar (Para áreas que precisam dela no Desktop) */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #3f3f46;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #52525b;
}

/* Utilitários de Animação */
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* Input Reset */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.6;
  cursor: pointer;
}
