@keyframes hs-twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}
@keyframes hs-spin {
  to {
    transform: rotate(360deg);
  }
}
.hs-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hs-bg .hs-nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 40% at 20% 15%,
      rgba(110, 210, 235, 0.18),
      transparent 60%
    ),
    radial-gradient(
      50% 35% at 80% 60%,
      rgba(170, 130, 235, 0.2),
      transparent 65%
    ),
    radial-gradient(
      40% 30% at 50% 100%,
      rgba(235, 150, 90, 0.14),
      transparent 70%
    );
}
.hs-bg .hs-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}
.hs-bg .hs-star {
  position: absolute;
  background: #fff;
  border-radius: 9999px;
  animation: hs-twinkle var(--d, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.hs-bg .hs-sparkle {
  position: absolute;
  font-size: 14px;
  animation: hs-twinkle 3s ease-in-out infinite;
}
.hs-cursor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: screen;
}
body {
  background: #0b0820;
}

/* Callout de cupom de afiliado — preenchido pelo resolvedor (aoma-back) */
.hs-discount {
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid rgba(170, 130, 235, 0.45);
  border-radius: 12px;
  background: rgba(170, 130, 235, 0.12);
  color: #e9e4f7;
  font-size: 15px;
  line-height: 1.5;
  text-align: left;
}
.hs-discount strong {
  color: #fff;
  font-weight: 700;
}
