
body {
  background-color: #0e0e0e;
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: #e5e7eb;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Animação de Entrada */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0e0e0e;
}

::-webkit-scrollbar-thumb {
  background: #6d1b2a;
  border-radius: 10px;
}

/* Efeito de Vidro */
.glass {
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
