/* Base + fundo (cópia mínima para deploy solo de /upsell en subdominio) */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
}

:root {
  --px: 16px;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background: radial-gradient(ellipse at 60% 0%, #1a2a6c 0%, #0d1b4b 40%, #05103a 100%);
  font-family: 'Nunito', sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -webkit-text-size-adjust: 100%;
  padding-top: env(safe-area-inset-top, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  overflow-x: hidden;
}

.stars {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.stars span {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle var(--d, 3s) ease-in-out infinite;
  opacity: 0;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: var(--o, .6);
  }
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb1 {
  width: 300px;
  height: 300px;
  background: rgba(100, 80, 200, .18);
  top: -80px;
  right: -80px;
}

.orb2 {
  width: 250px;
  height: 250px;
  background: rgba(50, 120, 220, .15);
  bottom: 100px;
  left: -60px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
