/* Arquivo CSS base para evitar 404 no console */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&family=Barrio&display=swap');

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar Elegant */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.2);
  border-radius: 10px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 68, 68, 0.4);
}

.dark ::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.1);
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 68, 68, 0.3);
}

/* --- Elite Animations --- */
@keyframes reveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.reveal-delayed-1 { animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; opacity: 0; }
.reveal-delayed-2 { animation: reveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; opacity: 0; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.premium-blur {
  backdrop-filter: blur(20px) saturate(180%);
  background-color: rgba(15, 23, 42, 0.7);
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* UX - A4: Acessibilidade de Foco Global */
button:focus-visible, 
input:focus-visible, 
select:focus-visible, 
textarea:focus-visible, 
a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #ef4444;
}

.dark button:focus-visible, 
.dark input:focus-visible, 
.dark select:focus-visible, 
.dark textarea:focus-visible, 
.dark a:focus-visible {
  box-shadow: 0 0 0 2px #0f172a, 0 0 0 4px #ef4444;
}
