/* ============================================================
   EASYFAMA - DESIGN IMPROVEMENTS v1.0
   Consolidação de tokens, identidade visual por plataforma,
   contraste melhorado, tipografia refinada e UX aprimorada.
   Carregado APÓS todos os outros CSS para ter precedência.
   ============================================================ */

/* ============================================================
   1. TOKENS UNIFICADOS - elimina conflito entre os 3 fundos
   ============================================================ */
:root {
  /* Fundo único: um dark azulado profundo (meio-termo entre os 3 arquivos) */
  --bg:            #080a12;
  --bg-2:          #0c0e18;
  --bg-main:       #080a12;
  --card:          #111422;
  --card-2:        #161929;
  --background-color: #080a12;

  /* Bordas mais visíveis */
  --border:        rgba(139, 92, 246, 0.18);
  --border-2:      rgba(255, 255, 255, 0.10);
  --border-color:  rgba(255, 255, 255, 0.10);
  --redesign-border: rgba(255, 255, 255, 0.10);

  /* Texto */
  --text:          #f1f5f9;
  --text-main:     #f1f5f9;
  --muted:         #8892a4;
  --muted-2:       #b0bac8;
  --text-secondary: #8892a4;
  --redesign-text-secondary: #8892a4;

  /* Superfícies */
  --bg-surface:        rgba(17, 20, 34, 0.70);
  --bg-surface-hover:  rgba(24, 28, 48, 0.80);
  --redesign-surface:  rgba(17, 20, 34, 0.65);

  /* Fontes — Inter como padrão, não Raleway/Roboto que não são usadas */
  --font-sans: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font-sans) !important;
  background: var(--bg) !important;
  color: var(--text) !important;
  /* Gradiente de fundo sutil e fixo */
  background-image:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(99, 102, 241, 0.07) 0px, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(236, 72, 153, 0.05) 0px, transparent 55%) !important;
  background-attachment: fixed !important;
}

/* ============================================================
   2. HEADER — mais limpo, logo sem scale artificial
   ============================================================ */
.header {
  background: rgba(8, 10, 18, 0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow: none !important;
}

.header.is-scrolled,
.header.scrolled {
  background: rgba(8, 10, 18, 0.96) !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.40) !important;
}

/* Logo sem scale desnecessário */
.logo {
  scale: 1 !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Manter gradiente animado no logo h1, mas corrigir o weight do Pacifico */
.logo h1 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  background: linear-gradient(90deg, #a78bfa, #ec4899, #f97316, #fbbf24, #ec4899, #a78bfa) !important;
  background-size: 400% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradientFlow 5s linear infinite !important;
}

.logo span {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  color: #6b7a94 !important;
  -webkit-text-fill-color: #6b7a94 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  margin-top: 3px !important;
}

/* Grid do header: logo | nav (centro) | actions */
body.theme-ig .header .container {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 16px !important;
  min-height: 80px !important;
  height: auto !important;
  padding: 10px 0 !important;
}

body.theme-ig .header .container .logo   { justify-self: start; }
body.theme-ig .header .container .nav    { justify-self: center; }
body.theme-ig .header .container .header-actions { justify-self: end; }

/* Nav links */
.nav a {
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #94a3b8 !important;
  padding: 7px 14px !important;
  border-radius: 8px !important;
  transition: color 0.2s ease, background 0.2s ease !important;
}
.nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Botão "Comprar agora" no header */
.nav-cta {
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.30) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  color: #fff !important;
  transition: filter 0.2s ease, transform 0.2s ease !important;
}
.nav-cta:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-1px) !important;
  background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
}

/* Ícones sociais no header */
.header-social {
  color: #6b7a94 !important;
  transition: color 0.2s ease !important;
}
.header-social:hover { color: #fff !important; }

/* ============================================================
   3. HERO — espaçamento e hierarquia melhorados
   ============================================================ */
.hero {
  padding: 70px 24px 90px !important;
  background: transparent !important;
}

/* Remove o fundo sólido que sobrepõe o gradiente do body */
.hero::before,
.hero::after {
  opacity: 0.35 !important;
}

/* Parágrafo do hero mais legível */
.hero-content p,
.hero p {
  color: #8892a4 !important;
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.2rem) !important;
  max-width: 680px !important;
  margin: 0 auto 40px !important;
  line-height: 1.7 !important;
}

/* ============================================================
   4. SECTION HEADERS — subtítulos mais suaves
   ============================================================ */
.select-lead h3 {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
}
.select-lead p { color: #8892a4 !important; }

.down-hint {
  color: rgba(139, 92, 246, 0.5);
  animation: bounceDown 2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* Badges de seção */
.lead-badge,
.section-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(99, 102, 241, 0.10) !important;
  border: 1px solid rgba(99, 102, 241, 0.28) !important;
  color: #a5b4fc !important;
  padding: 5px 14px !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

/* ============================================================
   5. NETWORK CARDS — cards de plataforma com identidade de cor
   ============================================================ */
.network-card {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border-2) !important;
  border-radius: 20px !important;
  padding: 24px !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
  margin-bottom: 16px !important;
}

.network-card:hover:not(.expanded) {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32) !important;
}

.network-card.expanded {
  border-color: rgba(99, 102, 241, 0.30) !important;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.20), 0 20px 56px rgba(0, 0, 0, 0.35) !important;
}

/* Check badge */
.check-badge {
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  color: #fff !important;
  display: grid !important;
  place-items: center !important;
  font-size: 14px !important;
  opacity: 0 !important;
  transform: scale(0) !important;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 2 !important;
}
.network-card.expanded .check-badge,
.network-card.selected .check-badge {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Headers de plataforma com cores específicas */
.ig-gradient {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.14), rgba(131, 58, 180, 0.10)) !important;
  border: 1px solid rgba(225, 48, 108, 0.20) !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}
.ig-gradient:hover {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.22), rgba(131, 58, 180, 0.16)) !important;
  border-color: rgba(225, 48, 108, 0.38) !important;
}

.tk-gradient {
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.12), rgba(37, 244, 238, 0.07)) !important;
  border: 1px solid rgba(254, 44, 85, 0.20) !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}
.tk-gradient:hover {
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.20), rgba(37, 244, 238, 0.12)) !important;
  border-color: rgba(254, 44, 85, 0.38) !important;
}

.kw-gradient {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12), rgba(255, 180, 0, 0.07)) !important;
  border: 1px solid rgba(255, 107, 0, 0.20) !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}
.kw-gradient:hover {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.20), rgba(255, 180, 0, 0.12)) !important;
  border-color: rgba(255, 107, 0, 0.38) !important;
}

/* Ícones dos cards de plataforma */
.ig-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #e1306c, #833ab4) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

.tk-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #fe2c55, #25f4ee) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

.kw-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #ff6b00, #ffb400) !important;
  display: grid !important;
  place-items: center !important;
  font-size: 22px !important;
  color: #fff !important;
  flex-shrink: 0 !important;
}

/* Títulos dentro dos cards de plataforma */
.ig-title { color: #f9a8d4 !important; font-weight: 700 !important; font-size: 1rem !important; }
.tk-title { color: #99f6e4 !important; font-weight: 700 !important; font-size: 1rem !important; }
.kw-title { color: #fed7aa !important; font-weight: 700 !important; font-size: 1rem !important; }

/* ============================================================
   6. OPTION CARDS — cards de serviço dentro das plataformas
   ============================================================ */
.option-card {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
}

.option-card:hover {
  background: rgba(255, 255, 255, 0.055) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  transform: translateY(-2px) !important;
}

.option-icon {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
  color: #fff !important;
}

/* Cores dos ícones de opção por tipo */
.option-card[data-group="ig"] .option-icon {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.25), rgba(131, 58, 180, 0.20)) !important;
  border: 1px solid rgba(225, 48, 108, 0.25) !important;
  scale: 1.2;
}

.option-card[data-group="tk"] .option-icon {
  background: linear-gradient(135deg, rgba(254, 44, 85, 0.22), rgba(37, 244, 238, 0.15)) !important;
  border: 1px solid rgba(254, 44, 85, 0.22) !important;
}

.option-card[data-group="kw"] .option-icon {
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.22), rgba(255, 180, 0, 0.15)) !important;
  border: 1px solid rgba(255, 107, 0, 0.22) !important;
}

.option-title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  margin-bottom: 4px !important;
}

.option-desc {
  font-size: 0.82rem !important;
  color: #8892a4 !important;
  line-height: 1.5 !important;
}

/* Botão de compra dentro dos option cards */
.btn-cta {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e2e8f0 !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 7px 16px !important;
  font-size: 0.8rem !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: none !important;
}

.btn-cta:hover {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.30) !important;
  transform: translateY(-1px) scale(1.02) !important;
}

/* ============================================================
   7. SERVICE CARDS (grid de serviços) — contraste e hover
   ============================================================ */
.service-card {
  background: linear-gradient(160deg, var(--card), var(--card-2)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

.service-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(99, 102, 241, 0.35) !important;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(99, 102, 241, 0.20) !important;
}

.service-badge {
  background: rgba(99, 102, 241, 0.14) !important;
  color: #a5b4fc !important;
  border-color: rgba(99, 102, 241, 0.28) !important;
  font-size: 0.7rem !important;
}

.service-description {
  color: #8892a4 !important;
  font-size: 0.92rem !important;
}

.quantity-info { color: #6b7a94 !important; font-size: 0.85rem !important; }

/* ============================================================
   8. COMBOS — cards mais vistosos com gradiente no preço
   ============================================================ */
.combos-showcase-card {
  background: linear-gradient(160deg, rgba(17, 20, 34, 0.90), rgba(12, 14, 24, 0.85)) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 22px !important;
  padding: 28px !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.30) !important;
}

.combos-showcase-header h4 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: #f1f5f9 !important;
}

.combos-kicker {
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #6b7a94 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 4px !important;
}

.combos-live-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 12px !important;
  background: rgba(16, 185, 129, 0.12) !important;
  border: 1px solid rgba(16, 185, 129, 0.28) !important;
  border-radius: 999px !important;
  color: #6ee7b7 !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
}

.combo-card-item {
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 16px !important;
  padding: 22px !important;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
}

.combo-card-item:hover {
  background: rgba(255, 255, 255, 0.048) !important;
  border-color: rgba(99, 102, 241, 0.28) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.30) !important;
}

/* Preço do combo com gradiente */
.combo-price-value {
  font-size: 1.7rem !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #a78bfa, #ec4899) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.combo-old-price {
  color: #4a5568 !important;
  font-size: 0.85rem !important;
  text-decoration: line-through !important;
}

.combo-discount-tag {
  background: linear-gradient(135deg, #059669, #10b981) !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
}

.combo-buy-btn {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 10px 20px !important;
  font-size: 0.88rem !important;
  transition: filter 0.2s ease, transform 0.2s ease !important;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.30) !important;
}

.combo-buy-btn:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-1px) scale(1.02) !important;
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
}

/* Badges dos combos */
.combo-badge,
.combo-platform-badge {
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  padding: 3px 9px !important;
  border-radius: 999px !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   9. ABOUT / FEATURES — ícones com cor por feature
   ============================================================ */
.feature {
  background: linear-gradient(160deg, var(--card), var(--card-2)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 30px 22px !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

.feature:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(99, 102, 241, 0.28) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.40) !important;
}

/* Ícones das features com cores únicas */
.feature:nth-child(1) i {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.30) !important;
  animation: none !important;
  border: none !important;
}
.feature:nth-child(2) i {
  background: linear-gradient(135deg, #f59e0b, #f97316) !important;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.30) !important;
  animation: none !important;
  border: none !important;
}
.feature:nth-child(3) i {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.30) !important;
  animation: none !important;
  border: none !important;
}
.feature:nth-child(4) i {
  background: linear-gradient(135deg, #ec4899, #f97316) !important;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.30) !important;
  animation: none !important;
  border: none !important;
}

/* Seletores mais específicos para garantir precedência sobre redesign.css */
.about .features .feature:nth-child(1) i { background: linear-gradient(135deg, #10b981, #059669) !important; border: none !important; -webkit-text-fill-color: #fff !important; -webkit-background-clip: unset !important; background-clip: unset !important; }
.about .features .feature:nth-child(2) i { background: linear-gradient(135deg, #f59e0b, #f97316) !important; border: none !important; -webkit-text-fill-color: #fff !important; -webkit-background-clip: unset !important; background-clip: unset !important; }
.about .features .feature:nth-child(3) i { background: linear-gradient(135deg, #6366f1, #8b5cf6) !important; border: none !important; -webkit-text-fill-color: #fff !important; -webkit-background-clip: unset !important; background-clip: unset !important; }
.about .features .feature:nth-child(4) i { background: linear-gradient(135deg, #ec4899, #f97316) !important; border: none !important; -webkit-text-fill-color: #fff !important; -webkit-background-clip: unset !important; background-clip: unset !important; }

.feature i {
  -webkit-text-fill-color: #fff !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: #fff !important;
  border: none !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 16px !important;
  font-size: 1.6rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.feature h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
}

.feature p {
  color: #8892a4 !important;
  font-size: 0.9rem !important;
  line-height: 1.65 !important;
}

/* ============================================================
   10. CONTATO — cards com destaque por plataforma
   ============================================================ */
.contact-item {
  border-radius: 18px !important;
  padding: 26px 22px !important;
  background: linear-gradient(160deg, var(--card), var(--card-2)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease !important;
}

.contact-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38) !important;
}

.contact-item.whatsapp:hover { border-color: rgba(37, 211, 102, 0.30) !important; }
.contact-item.telegram:hover { border-color: rgba(0, 136, 204, 0.30) !important; }
.contact-item.email:hover    { border-color: rgba(245, 158, 11, 0.30) !important; }

.contact-item h3 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
}

.contact-item p {
  font-size: 0.85rem !important;
  color: #8892a4 !important;
  margin: 0 !important;
}

/* ============================================================
   11. FAQ — mais refinada
   ============================================================ */
.faq { background: var(--bg-2) !important; }

.faq-item {
  background: rgba(17, 20, 34, 0.60) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

.faq-item.open {
  border-color: rgba(99, 102, 241, 0.28) !important;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.08) !important;
}

.faq-question {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: #e2e8f0 !important;
  padding: 20px 22px !important;
}

.faq-question:hover { color: #fff !important; }

.faq-icon {
  width: 30px !important;
  height: 30px !important;
  background: rgba(99, 102, 241, 0.12) !important;
  border: 1px solid rgba(99, 102, 241, 0.20) !important;
  color: #a5b4fc !important;
  border-radius: 50% !important;
  font-size: 1.1rem !important;
  animation: none !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.2s ease !important;
}

.faq-item.open .faq-icon {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  color: #fff !important;
  border-color: transparent !important;
  transform: rotate(135deg) !important;
}

.faq-content p {
  color: #8892a4 !important;
  font-size: 0.9rem !important;
  line-height: 1.7 !important;
}

/* ============================================================
   12. FOOTER — bordas e hierarquia visual melhoradas
   ============================================================ */
.footer {
  background: rgba(6, 7, 14, 0.98) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 48px 0 28px !important;
  margin-top: 80px !important;
  /* Cancela a animação de borda do enhancements.css que usa background duplo */
  animation: none !important;
  background-image: none !important;
}

.footer-brand h3 {
  font-size: 1.5rem !important;
  font-weight: 400 !important;
  background: linear-gradient(90deg, #a78bfa, #ec4899, #f97316, #fbbf24) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: gradientFlow 5s linear infinite !important;
}

.footer-brand p {
  color: #4a5568 !important;
  font-size: 0.82rem !important;
}

.footer-links a {
  color: #4a5568 !important;
  transition: color 0.2s ease !important;
}
.footer-links a:hover { color: #94a3b8 !important; }

.footer-social a {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #4a5568 !important;
  border-radius: 10px !important;
}
.footer-social a:hover {
  background: rgba(99, 102, 241, 0.15) !important;
  border-color: rgba(99, 102, 241, 0.30) !important;
  color: #a5b4fc !important;
  transform: translateY(-2px) !important;
}

.footer-bottom p { color: rgba(255, 255, 255, 0.22) !important; }

/* Linha divisória sutil antes do footer-bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-top: 20px !important;
  margin-top: 24px !important;
}

/* ============================================================
   13. MODAIS — mais polidos
   ============================================================ */
.modal-content {
  background: linear-gradient(160deg, #111422, #0c0e18) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 22px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.60) !important;
}

.modal-content h2 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #f1f5f9 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
  letter-spacing: -0.02em !important;
}

.close {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  color: #6b7a94 !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
}

.close:hover {
  background: rgba(239, 68, 68, 0.14) !important;
  border-color: rgba(239, 68, 68, 0.28) !important;
  color: #fca5a5 !important;
  transform: rotate(90deg) !important;
}

/* Botão PIX / order */
.order-button,
.pix-button {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7) !important;
  background-size: 200% 100% !important;
  border: none !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.32) !important;
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
  animation: none !important;
}

.order-button:hover,
.pix-button:hover {
  filter: brightness(1.1) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 38px rgba(99, 102, 241, 0.45) !important;
}

/* Inputs nos modais */
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 10px !important;
  color: #f1f5f9 !important;
  font-size: 0.94rem !important;
  padding: 12px 14px !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(99, 102, 241, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.16) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  outline: none !important;
}

.form-group label {
  color: #b0bac8 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.form-group small { color: #6b7a94 !important; }

/* Aviso de privacidade no modal */
.privacy-warning-fixed {
  background: rgba(239, 68, 68, 0.08) !important;
  border-color: rgba(239, 68, 68, 0.22) !important;
  border-radius: 10px !important;
  font-size: 0.85rem !important;
}

/* ============================================================
   14. MOBILE MENU SHEET
   ============================================================ */
.mobile-menu-sheet {
  background: linear-gradient(175deg, #111422, #080a12) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
}

.mobile-menu-cta {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  color: #e2e8f0 !important;
  font-weight: 700 !important;
  padding: 16px 18px !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  transition: background 0.2s ease, border-color 0.2s ease !important;
  text-decoration: none !important;
  width: 100% !important;
  text-align: left !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus {
  background: rgba(99, 102, 241, 0.12) !important;
  border-color: rgba(99, 102, 241, 0.25) !important;
  color: #fff !important;
}

.mobile-menu-cta-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(99, 102, 241, 0.12) !important;
  display: grid !important;
  place-items: center !important;
  color: #a5b4fc !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

.mobile-menu-social {
  display: flex !important;
  gap: 10px !important;
  justify-content: center !important;
  padding-top: 8px !important;
  margin-top: 4px !important;
}

.mobile-menu-social-link {
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: grid !important;
  place-items: center !important;
  color: #6b7a94 !important;
  font-size: 1.1rem !important;
  transition: all 0.2s ease !important;
}
.mobile-menu-social-link:hover {
  background: rgba(99, 102, 241, 0.15) !important;
  color: #a5b4fc !important;
}

/* Botão hamburguer */
.hamburger {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 10px !important;
  transition: background 0.2s ease !important;
}
.hamburger:hover { background: rgba(255, 255, 255, 0.10) !important; }

/* ============================================================
   15. SEÇÃO DE PEDIDOS — refinada
   ============================================================ */
#ordersActions .order-button {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
  animation: none !important;
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
  transition: background 0.2s ease, transform 0.2s ease !important;
  width: auto !important;
}

#ordersActions .order-button:hover {
  background: rgba(255, 255, 255, 0.10) !important;
  transform: translateY(-1px) !important;
  filter: none !important;
}

/* ============================================================
   16. FLOATING SUPPORT BUTTON
   ============================================================ */
#mat-float-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.38) !important;
}

#mat-float-btn:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.55) !important;
}

#mat-float-menu {
  background: #111422 !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55) !important;
}

.mat-float-title { color: #f1f5f9 !important; }
.mat-float-alert { color: #6b7a94 !important; }

.mat-float-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  color: #e2e8f0 !important;
  border-radius: 12px !important;
}
.mat-float-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* ============================================================
   17. SCROLLBAR — mais sutil
   ============================================================ */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); }
::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.30);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(99, 102, 241, 0.55); }

/* ============================================================
   18. MICRO AJUSTES DE TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

p { line-height: 1.65; }

/* Seções — subtítulos */
.about > .container > p,
.contact > .container > p,
.orders > .container > p {
  color: #6b7a94 !important;
  font-size: 1rem !important;
}

/* Seção FAQ título */
.faq > .container > h2,
.about > .container > h2,
.contact > .container > h2,
.orders > .container > h2 {
  font-size: clamp(1.7rem, 2.5vw + 0.8rem, 2.4rem) !important;
}

/* ============================================================
   19. RESPONSIVO
   ============================================================ */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex !important; }
  body.theme-ig .header .container {
    grid-template-columns: auto 1fr !important;
  }
}

/* Logo não pode colar na borda esquerda no celular */
@media (max-width: 640px) {
  body.theme-ig .header .container {
    padding-left: 20px !important;
  }
  body.theme-ig .header .container .logo {
    margin-left: 0 !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 640px) {
  .combo-card-item { padding: 16px !important; }
  .combos-showcase-card { padding: 18px !important; }
  .feature { padding: 24px 18px !important; }
  .contact-item { padding: 20px 18px !important; }
  .faq-question { padding: 16px 18px !important; font-size: 0.9rem !important; }
}

/* ============================================================
   20. ACESSIBILIDADE — foco visível e motion seguro
   ============================================================ */
*:focus-visible {
  outline: 2px solid rgba(99, 102, 241, 0.80);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   21. SEPARADORES VISUAIS ENTRE SEÇÕES
   ============================================================ */
.services + .combos-section,
.combos-section + section,
section + section {
  position: relative;
}

/* Divisor sutil de gradiente entre seções */
.about::before,
.contact::before,
.faq::before,
.orders::before {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.40), transparent);
  border-radius: 999px;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ============================================================
   22. NAV LINK ATIVO (via IntersectionObserver no enhancements.js)
   ============================================================ */
.nav a.nav-link-active {
  color: #fff !important;
  background: rgba(99, 102, 241, 0.10) !important;
}

/* ============================================================
   23. TIPAGEM (cursor piscante mais coeso com o design)
   ============================================================ */
#typing {
  border-right-color: rgba(99, 102, 241, 0.80) !important;
}

/* ============================================================
   24. PIX MODAL — container do QR code mais elegante
   ============================================================ */
.pix-qr-container {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 16px !important;
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.20),
              0 16px 48px rgba(0, 0, 0, 0.40) !important;
  animation: none !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 12px auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-width: 100% !important;
}

#pixQRCode {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 220px !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#pixQRCode img,
#pixQRCode canvas,
#pixQRCode svg {
  display: block !important;
  width: 220px !important;
  height: 220px !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  filter: none !important;
}

/* ============================================================
   25. SUCCESS MODAL — ícone e card
   ============================================================ */
.order-success-card {
  text-align: center !important;
}

.order-success-title {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #f1f5f9 !important;
  -webkit-text-fill-color: #f1f5f9 !important;
}

.order-success-subtitle {
  color: #8892a4 !important;
  font-size: 0.9rem !important;
}

.order-success-details {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  padding: 16px !important;
  margin: 18px 0 !important;
  text-align: left !important;
}

.order-success-row {
  display: flex !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 8px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  font-size: 0.86rem !important;
}

.order-success-row:last-child { border-bottom: none !important; }

.order-success-label { color: #6b7a94 !important; }
.order-success-value { color: #e2e8f0 !important; font-weight: 600 !important; }

.order-success-btn {
  border-radius: 10px !important;
  padding: 11px 22px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  border: none !important;
  cursor: pointer !important;
  transition: filter 0.2s ease, transform 0.2s ease !important;
}

.order-success-btn.primary {
  background: linear-gradient(135deg, #6366f1, #a855f7) !important;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.28) !important;
}
.order-success-btn.primary:hover { filter: brightness(1.1) !important; transform: translateY(-1px) !important; }

.order-success-btn.secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  color: #b0bac8 !important;
}
.order-success-btn.secondary:hover { background: rgba(255, 255, 255, 0.10) !important; color: #fff !important; }

/* ============================================================
   26. MOBILE — melhorias gerais
   ============================================================ */
@media (max-width: 480px) {
  .hero { padding: 50px 16px 70px !important; }
  .network-card { padding: 18px !important; border-radius: 16px !important; }
  .option-card { padding: 14px 16px !important; }
  .combos-showcase-card { padding: 16px !important; border-radius: 16px !important; }
  .combo-card-item { padding: 14px !important; }
  .modal-content { padding: 20px 16px !important; border-radius: 18px !important; }
  .footer { padding: 36px 0 20px !important; }
}

/* ============================================================
   27. ORDER BUMP (oferta adicional no checkout)
   ============================================================ */
#orderBumpModal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
    z-index: 11990;
    overflow-y: auto;
    padding: 32px 16px;
}
#orderBumpModal .order-bump-modal.modal-content {
    width: min(480px, calc(100% - 32px));
    margin: 6vh auto;
    background: linear-gradient(160deg, #111827, #0a0b0f);
    border: 1px solid rgba(236, 72, 153, 0.35);
    box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 40px rgba(236, 72, 153, 0.12);
    text-align: center;
}
#orderBumpModal .modal-title {
    margin: 4px 0 6px;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
}
#orderBumpModal .modal-subtitle {
    margin: 0 auto 18px;
    color: var(--muted, #9ca3af);
    font-size: 0.95rem;
    max-width: 34ch;
}
.ob-offer-card {
    position: relative;
    display: inline-block;
    padding: 22px 30px 18px;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.10));
    border: 1.5px dashed rgba(236, 72, 153, 0.5);
    margin-bottom: 14px;
    min-width: min(320px, 100%);
}
.ob-tag {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
.ob-qty-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.ob-plus { font-size: 1.6rem; font-weight: 800; color: #ec4899; }
.ob-qty { font-size: 2.4rem; font-weight: 800; line-height: 1; color: #fff; }
.ob-unit { font-size: 1rem; font-weight: 600; color: #d1d5db; }
.ob-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.ob-old-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 0.95rem;
}
.ob-new-price {
    color: #34d399;
    font-size: 1.35rem;
    font-weight: 800;
}
.ob-badge {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.4);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 999px;
}
.ob-summary {
    width: 100%;
    border-top: 1px solid var(--border-2, rgba(255,255,255,.08));
    padding-top: 14px;
    margin-bottom: 16px;
    display: grid;
    gap: 8px;
}
.ob-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--muted, #9ca3af);
    font-size: 0.95rem;
    padding: 0 6px;
}
.ob-summary-row strong { color: #e5e7eb; font-weight: 700; }
.ob-summary-row.ob-total span,
.ob-summary-row.ob-total strong { color: #fff; font-size: 1.05rem; }
.ob-summary-row.ob-total strong { color: #34d399; }
#orderBumpModal .ob-actions {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px;
}
/* Botões sempre compactos: em coluna o flex-basis viraria altura — trava altura natural */
#orderBumpModal .ob-actions .btn-secondary,
#orderBumpModal .ob-actions .order-button {
    flex: 1 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: 64px !important;
    padding: 14px 16px !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
    border-radius: var(--r-md, 12px);
    font-weight: 700;
    cursor: pointer;
}
#orderBumpModal .ob-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #e5e7eb;
    border: 1px solid var(--border-2, rgba(255,255,255,.12));
    transition: background var(--dur-fast, .2s) ease;
}
#orderBumpModal .ob-actions .btn-secondary:hover { background: rgba(255, 255, 255, 0.12); }
@media (max-width: 480px) {
    #orderBumpModal .ob-actions { flex-direction: column-reverse !important; }
    #orderBumpModal .ob-actions .btn-secondary,
    #orderBumpModal .ob-actions .order-button {
        flex: 0 0 auto !important;
        width: 100%;
    }
    .ob-qty { font-size: 2rem; }
}

/* ============================================================
   28. BUSCA DE PEDIDOS POR EMAIL
   ============================================================ */
#orders .orders-search {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    max-width: 560px;
    margin: 0 auto 14px;
}
#orders .orders-search input[type="email"] {
    flex: 1 1 220px;
    min-width: 0;
    min-height: 48px;
    max-height: 56px;
    padding: 12px 16px;
    border-radius: var(--r-md, 12px);
    border: 1px solid var(--border-color, rgba(0,0,0,.15));
    background: var(--card, #fff);
    color: var(--text-main, #111827);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--dur-fast, .2s) ease, box-shadow var(--dur-fast, .2s) ease;
}
#orders .orders-search input[type="email"]:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.18);
}
@media (max-width: 480px) {
    #orders .orders-search { flex-direction: column; }
    #orders .orders-search input[type="email"] {
        flex: 0 0 auto;
        width: 100%;
        height: 48px;
    }
    #orders .orders-search .order-button { width: 100%; }
}

/* ============================================================
   29. IDENTIDADE VIVA — logo com gradiente animado + polimento global
   ============================================================ */

/* Keyframes próprios (nomes novos: o `gradientFlow` antigo foi
   transformado em no-op pelo enhancements.css) */
@keyframes efFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: -300% 50%; }
}
@keyframes efGlowBreathe {
  0%, 100% { opacity: .40; transform: scale(1); }
  50%      { opacity: .75; transform: scale(1.08); }
}

/* ---------- LOGO ---------- */
body.theme-ig .logo {
  position: relative !important;
}

/* Brilho suave respirando atrás do nome */
body.theme-ig .logo::before {
  content: '';
  position: absolute !important;
  left: -24px !important;
  top: -18px !important;
  bottom: -12px !important;
  width: 140px !important;
  border-radius: 50% !important;
  background: radial-gradient(closest-side,
              rgba(236, 72, 153, 0.30),
              rgba(168, 85, 247, 0.16) 55%,
              transparent 75%) !important;
  filter: blur(14px) !important;
  animation: efGlowBreathe 6s ease-in-out infinite !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

body.theme-ig .logo h1 {
  position: relative !important;
  z-index: 1 !important;
  /* Pacifico tem descendente longo (perna do "y"): com background-clip:text o
     gradiente só existe DENTRO da caixa — line-height 1 cortava a perna. */
  line-height: 1.5 !important;
  padding-bottom: 4px !important;
  margin: -4px 0 0 !important;
  /* Mesmas cores atuais, agora FLUINDO de verdade */
  background: linear-gradient(90deg,
      #fbbf24, #f97316, #ec4899, #a855f7, #6366f1,
      #a855f7, #ec4899, #f97316, #fbbf24) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: efFlow 6s linear infinite !important;
  filter: drop-shadow(0 2px 16px rgba(236, 72, 153, 0.28)) !important;
  transition: filter 0.3s ease !important;
  font-size: clamp(2.0rem, 4vw + 0.8rem, 3rem) !important;
  line-height: 1.25 !important;
  overflow: visible !important;
  padding-bottom: 6px !important;
}

body.theme-ig .logo:hover h1 {
  animation-duration: 2.4s !important;
  filter: drop-shadow(0 2px 22px rgba(236, 72, 153, 0.45)) !important;
}

/* ---------- HERO: "Transforme" acompanha a identidade ---------- */
body.theme-ig #static-word {
  background: linear-gradient(90deg,
      #fbbf24, #f97316, #ec4899, #a855f7, #6366f1,
      #a855f7, #ec4899, #f97316, #fbbf24) !important;
  background-size: 300% 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  animation: efFlow 8s linear infinite !important;
}

/* ---------- BOTÕES: gradiente fluindo devagar ---------- */
body.theme-ig .cta-button,
body.theme-ig .btn-cta,
body.theme-ig .service-button,
body.theme-ig .order-button,
body.theme-ig .nav-cta,
body.theme-ig .combo-buy-btn {
  animation: efFlowSoft 7s ease-in-out infinite alternate !important;
}
@keyframes efFlowSoft {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}

/* ---------- POLIMENTO GLOBAL ---------- */

/* Seleção de texto na paleta */
::selection {
  background: rgba(236, 72, 153, 0.35);
  color: #fff;
}

/* Scrollbar com identidade */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #a855f7, #ec4899) !important;
  border-radius: 999px !important;
}
::-webkit-scrollbar-track { background: rgba(255,255,255,0.04) !important; }

/* Foco visível para acessibilidade */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(236, 72, 153, 0.65) !important;
  outline-offset: 2px !important;
}

/* Cards de serviço: brilho suave no hover */
.service-card {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease !important;
}
.service-card:hover {
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35),
              0 0 32px rgba(236, 72, 153, 0.10),
              inset 0 0 0 1px rgba(236, 72, 153, 0.14) !important;
}

/* Respeita usuários que preferem menos movimento */
@media (prefers-reduced-motion: reduce) {
  body.theme-ig .logo h1,
  body.theme-ig .logo::before,
  body.theme-ig #static-word,
  body.theme-ig .cta-button,
  body.theme-ig .btn-cta,
  body.theme-ig .service-button,
  body.theme-ig .order-button,
  body.theme-ig .nav-cta,
  body.theme-ig .combo-buy-btn {
    animation: none !important;
  }
}
