:root {
  --font-sans: 'Inter Tight', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', SF Mono, Consolas, monospace;

  /* Colors */
  --surface: #070709;
  --bg-deep: #000000;
  --neutral: #111115;
  
  --primary: #149EE1;
  --blue-bright: #58bef2;
  --blue-deep: #0e8bc7;
  
  --text: #edebe6;
  --text-muted: #9f9d99;
  --text-mid: rgba(237, 235, 230, 0.68);
  --text-dim: rgba(237, 235, 230, 0.42);
  --text-faint: rgba(237, 235, 230, 0.22);
  
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: var(--neutral);
  border: 1px solid var(--border);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blue-deep);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px var(--border);
}

.glass-nav {
  background: rgba(7, 7, 9, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1px var(--border), 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Premium Blue Glows */
.glow-gold {
  box-shadow: 0 10px 40px rgba(20, 158, 225, 0.25);
}

.glow-gold-hover:hover {
  box-shadow: 0 16px 50px rgba(20, 158, 225, 0.4);
  transform: translateY(-2px);
}

.card-hover-glow:hover {
  box-shadow: 0 20px 60px -20px rgba(20, 158, 225, 0.18), inset 0 0 0 1px rgba(20, 158, 225, 0.08);
}

/* Fonts and Custom Classes */
.font-serif-italic {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 500;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text) 40%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Marquee Carousel */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}
.animate-marquee {
  animation: marquee 25s linear infinite;
}
.animate-marquee:hover {
  animation-play-state: paused;
}

/* ==========================================================================
   Efeito de Borda com Brilho Giratório (Animated Glowing Border Card)
   ========================================================================== */

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Classe para uso geral */
.glow-card-animated {
  position: relative;
  border: 1.5px solid transparent !important;
  border-radius: 20px !important;
  /* Primeiro gradiente é o fundo escuro (padding-box), o segundo é a borda colorida (border-box) */
  background-image: linear-gradient(#111115, #111115), 
                    conic-gradient(from var(--angle), #149EE1 0%, #58bef2 25%, transparent 50%, transparent 75%, #149EE1 100%) !important;
  background-origin: border-box !important;
  background-clip: padding-box, border-box !important;
  animation: rodar-glow 4s infinite linear !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.glow-card-animated:hover {
  background-image: linear-gradient(#15151b, #15151b), 
                    conic-gradient(from var(--angle), #149EE1 0%, #58bef2 25%, transparent 50%, transparent 75%, #149EE1 100%) !important;
}

@keyframes rodar-glow {
  to {
    --angle: 360deg;
  }
}

