/* ===================================================
   GLOBAL - TEXT UTILITIES
   =================================================== */

.gradient-text {
  background: linear-gradient(135deg, var(--yellow-accent) 0%, var(--cyan-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline-gradient {
  background: linear-gradient(90deg, #F5A623 0%, #0ea5e9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

.headline-yellow-blue {
  background: linear-gradient(90deg, #F5A623 0%, #0ea5e9 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

.gradient-highlight {
  background: linear-gradient(135deg, #f59e0b 0%, #06b6d4 50%, #8b5cf6 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 28px) !important; /* Forçado para evitar overrides indesejados */
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.7;
}

/* Pílulas de Título de Seção - Estilo Moderno */
.section-badge,
.ciclo-badge,
.prof-label,
.hero-badge,
.pill-title,
.gold-label {
  display: flex !important;
  width: fit-content !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 20px auto !important; /* Centralização horizontal absoluta */
  text-align: center !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%) !important;
  border: 1px solid rgba(245, 158, 11, 0.3) !important;
  color: #fbbf24 !important;
  padding: 8px 20px !important;
  border-radius: 100px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  line-height: 1.2 !important;
  position: relative;
  overflow: hidden;
}

.pill-title::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

/* Ajuste específico para a gold-label quando usada como cabeçalho de seletor */
.gold-label {
  margin-bottom: 16px !important;
  background: rgba(245, 166, 35, 0.15) !important;
  border-color: rgba(245, 166, 35, 0.5) !important;
}

/* Utilitário para números amarelos */
.yellow-num,
.card-number,
.stat-number,
.step-number,
.ciclo-step-num {
  color: #F5A623 !important;
  font-family: var(--font-primary);
  font-weight: 500; /* Reduzido de 800 para 500 - visual luxo */
}

.bad-text {
  color: #ef4444;
}

@media (max-width: 900px) {
  .section-title {
    margin-bottom: 8px !important;
  }
  .section-subtitle {
    margin-bottom: 15px !important;
  }
  .pill-title, .section-badge, .ciclo-badge, .prof-label, .hero-badge, .gold-label {
    margin-bottom: 8px !important;
    padding: 5px 12px !important;
    font-size: 11px !important;
  }
}