
  /* AnyGen: cores dos títulos (somente cor) */
  :root{
    --anygen-title-h1: #166534; /* green-800 - harmoniza com botões verdes */
    --anygen-title-h2: #1f2937; /* gray-800 */
    --anygen-title-h3: #16a34a; /* green-600 - combina com CTAs verdes */
  }
  h1{color: var(--anygen-title-h1) !important;}
  h2{color: var(--anygen-title-h2) !important;}
  h3{color: var(--anygen-title-h3) !important;}

  /* Mantém layout e cores: apenas adiciona animação e sticky */
  /* MOBILE FIRST: barra colada no topo absoluto */
  .anygen-discount-sticky{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    margin: 0 !important;
    transform: translateY(0) !important;
    pointer-events: none; /* não bloqueia scroll/toque */
    touch-action: pan-y;
  }
  /* Desktop: mantém comportamento original (sem mudar layout) */
  @media (min-width: 768px){
    .anygen-discount-sticky{
      position: sticky;
      left: auto;
      right: auto;
    }
  }

  /* Animação neon pulsante (não altera cores do botão) */
  @keyframes anygenNeonPulse {
    0%, 100% {
      box-shadow:
        0 0 0 0 rgba(255,255,255,0.00),
        0 0 0 0 rgba(255,255,255,0.00);
      transform: translateZ(0) scale(1);
    }
    50% {
      box-shadow:
        0 0 14px 2px rgba(255,255,255,0.55),
        0 0 28px 6px rgba(255,255,255,0.28);
      transform: translateZ(0) scale(1.03);
    }
  }

  .anygen-neon-pulse{
    animation: anygenNeonPulse 1.8s ease-in-out infinite;
    will-change: transform, box-shadow;
  }
  @media (prefers-reduced-motion: reduce){
    .anygen-neon-pulse{animation: none !important;}
  }

/* AnyGen: Countdown + Prova social */
.anygen-countdown-bar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(90deg, #0f7a3a 0%, #12a150 55%, #ff7a00 100%);
  color: #ffffff;
  border-bottom: 3px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.anygen-countdown-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.anygen-countdown-label{
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12.5px;
}
.anygen-countdown-timer{
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
  font-size: 24px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.28);
  text-shadow: 0 2px 0 rgba(0,0,0,.25);
}
.anygen-countdown-reset{
  font-weight: 800;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
}
.anygen-countdown-reset:hover{background: rgba(255,255,255,.18)}

.anygen-live-sale{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99998;
  max-width: min(92vw, 420px);
  padding: 12px 14px;
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  border: 2px solid rgba(255,122,0,.35);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
}
.anygen-live-sale.show{
  opacity: 1;
  transform: translateY(0);
  transition: all .35s ease;
}
.anygen-live-sale strong{color:#ff7a00}

