/* ==========================================================================
   DESIGN SYSTEM & VARIÁVEIS CSS (Blugames)
   ========================================================================== */
:root {
  /* Cores Principais */
  --bg-gamer-dark: #0A0E17;
  --bg-surface-primary: #121824;
  --bg-surface-secondary: #1A2232;
  
  --primary-blue: #0066FF;
  --primary-blue-hover: #0D6EFD;
  --accent-cyan: #00E5FF;
  --accent-neon-green: #00FF88;

  /* Cores de Texto */
  --text-primary: #FFFFFF;
  --text-light: #E2E8F0;
  --text-muted: #94A3B8;

  /* Efeitos e Bordas */
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow-blue: rgba(0, 102, 255, 0.35);
  --glow-shadow: 0 0 20px rgba(0, 102, 255, 0.25);

  /* Tipografia */
  --font-display: 'Chakra Petch', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   BASE & RESET MOBILE-FIRST
   ========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-gamer-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Títulos */
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

/* Utilitários Customizados para Suporte ao Bootstrap */
.bg-gamer-dark {
  background-color: var(--bg-gamer-dark) !important;
}

.bg-surface-primary {
  background-color: var(--bg-surface-primary) !important;
}

.bg-surface-secondary {
  background-color: var(--bg-surface-secondary) !important;
}

.text-body-gamer {
  color: var(--text-light) !important;
}

.text-muted-gamer {
  color: var(--text-muted) !important;
}

.text-accent-cyan {
  color: #00fe8f !important;
}

.btn-primary-gamer {
  background-color: #00fe8f;
  border: 1px solid #63e9ff;
  color: #000000;
  font-family: var(--font-body);
  font-weight: 600;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-primary-gamer:hover,
.btn-primary-gamer:focus {
  background-color: #00f9a1;
  border-color: #41db98;
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

.btn-whatsapp-glow {
  background: linear-gradient(135deg, #00FF88 0%, #00E5FF 100%);
  color: #0A0E17 !important;
  font-weight: 700;
  min-height: 48px;
  border: none;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  transition: all 0.3s ease;
}

.btn-whatsapp-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

/* Glassmorphism & Cartões */
.card-glass {
  background: rgba(18, 24, 36, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header-blur {
  background-color: rgba(10, 14, 23, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}

.text-primary-blue {
  color: var(--primary-blue) !important;
}

.text-light-gamer {
  color: var(--text-light) !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #00fe5a !important;
  background-color: rgba(0, 229, 255, 0.08);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 255, 0.4);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: calc(100vh - 80px);
  background: radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.12) 0%, rgba(10, 14, 23, 1) 70%);
}

.hero-glow {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-image-wrapper {
  max-width: 500px;
}

.hero-floating-card {
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.status-indicator {
  width: 10px;
  height: 10px;
  background-color: var(--accent-neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-neon-green);
  display: inline-block;
  animation: pulseGreen 1.8s infinite ease-in-out;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px var(--accent-neon-green); }
  100% { transform: scale(0.9); opacity: 0.8; }
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  background-color: var(--bg-gamer-dark);
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.15);
  transition: all 0.3s ease;
}

.card:hover .service-icon-box {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transform: scale(1.05);
}

/* ==========================================================================
   PROCESSO DE ATENDIMENTO
   ========================================================================== */
.process-section {
  background: linear-gradient(180deg, var(--bg-gamer-dark) 0%, var(--bg-surface-primary) 50%, var(--bg-gamer-dark) 100%);
}

.step-number {
  width: 52px;
  height: 52px;
  background-color: var(--primary-blue);
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
  border: 2px solid var(--accent-cyan);
}

.timeline-container {
  position: relative;
}

@media (min-width: 992px) {
  .timeline-line {
    top: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 229, 255, 0.8) 50%, rgba(0, 102, 255, 0.2) 100%);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.5);
  }
}

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.differentials-section {
  background-color: var(--bg-gamer-dark);
}

.border-subtle-glow {
  border: 1px solid var(--border-glass);
}

.differential-icon i {
  display: inline-block;
  transition: transform 0.3s ease;
}

.card:hover .differential-icon i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px var(--accent-cyan));
}

/* ==========================================================================
   PROVA SOCIAL
   ========================================================================== */
.testimonials-section {
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08) 0%, rgba(10, 14, 23, 1) 80%);
}

.text-accent-neon-green {
  color: var(--accent-neon-green) !important;
}

.stars-rating {
  font-size: 1.1rem;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.4));
}

.avatar-placeholder {
  width: 44px;
  height: 44px;
  font-size: 0.95rem;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  background-color: var(--bg-gamer-dark);
}

.accordion-gamer .accordion-button {
  min-height: 56px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.accordion-gamer .accordion-button:not(.collapsed) {
  color: #00fe8f !important;
  background-color: rgba(0, 102, 255, 0.08) !important;
}

.accordion-gamer .accordion-button::after {
  filter: invert(1) brightness(200%);
  transition: transform 0.3s ease;
}

.accordion-gamer .accordion-button:not(.collapsed)::after {
  filter: invert(74%) sepia(85%) saturate(3048%) hue-rotate(149deg) brightness(103%) contrast(105%);
}

/* ==========================================================================
   CHAMADA PARA AÇÃO (CTA)
   ========================================================================== */
.cta-section {
  background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, rgba(10, 14, 23, 1) 70%);
}

.border-glow-blue-box {
  border: 1px solid rgba(0, 229, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 102, 255, 0.25);
}

.cta-inner-glow {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-description {
  max-width: 700px;
}

.pulse-glow-btn {
  animation: pulseButton 2.2s infinite ease-in-out;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
  }
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer-section {
  background-color: #070a10;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.hover-cyan:hover,
.hover-cyan:focus {
  color: var(--accent-cyan) !important;
}