
/* Estilos Globais */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  background-color: #000000;
  color: #F2F2F2;
}

/* Utilitários Premium */
.bg-glass {
  background: rgba(122, 122, 122, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 193, 193, 0.1);
}

.premium-gradient-border {
  position: relative;
  background: #000000;
  background-clip: padding-box;
  border: 1px solid transparent;
}

.premium-gradient-border::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
  background: linear-gradient(to bottom right, #bfa163, #7A7A7A);
  opacity: 0.3;
}

/* Custom Selection */
::selection {
  background-color: #bfa163;
  color: #000000;
}

/* Animations */
@keyframes pulse-gold {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.animate-pulse-gold {
  animation: pulse-gold 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
