*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: #0d001a; color: #f3e8ff; overflow-x: hidden; }

/* ── GRAIN overlay ── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ── HERO bg mesh ── */
.hero-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(168,85,247,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,92,138,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(91,14,166,0.5) 0%, transparent 65%),
    #0d001a;
}

/* ── Floating orbs ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: rgba(168,85,247,0.15); top: -100px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(255,92,138,0.12); top: 50%; right: -80px; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; background: rgba(240,192,64,0.08); bottom: 0; left: 30%; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ── Headline gradient ── */
.headline-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 40%, #f0c040 70%, #ff5c8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Badge pulsante ── */
.pulse-badge {
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,192,64,0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(240,192,64,0); }
}

/* ── Ticker ── */
.ticker-wrap { overflow: hidden; }
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 22s linear infinite;
  width: max-content;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Card produto ── */
.card-produto {
  position: relative;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), box-shadow 0.35s ease;
  cursor: pointer;
}
.card-produto:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 32px 64px rgba(168,85,247,0.35), 0 0 0 1px rgba(168,85,247,0.3);
}
.card-produto .overlay-cta {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card-produto:hover .overlay-cta { opacity: 1; }

/* ── Botão primário ── */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 12px 32px rgba(124,58,237,0.6); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

/* ── Botão WhatsApp ── */
.btn-wpp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.btn-wpp:hover { transform: scale(1.06); box-shadow: 0 16px 40px rgba(37,211,102,0.6); }

/* ── Shine nos cards ── */
.shine {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: shine 4s ease-in-out infinite;
}
@keyframes shine {
  0%   { background-position: -100% 0; }
  60%, 100% { background-position: 200% 0; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contagem Regressiva ── */
.countdown-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}

/* ── Stars ── */
.stars { color: #f0c040; letter-spacing: 2px; }

/* ── Nav glass ── */
.nav-glass {
  background: rgba(13,0,26,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.15);
}
.nav-link {
  transition: color 0.2s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, #a855f7, #ff5c8a);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-link:hover { color: #e9d5ff; }
.nav-link:hover::after { transform: scaleX(1); }

/* ── Secao escura ── */
.section-dark { background: #0d001a; }
.section-mid  { background: #100020; }

/* ── Divider ── */
.wave-divider { line-height: 0; }
.wave-divider svg { display: block; }

/* ── Copa card especial ── */
.copa-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.copa-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37,211,102,0.2), 0 0 0 1px rgba(37,211,102,0.3);
}

/* ── Sobre glow ── */
.sobre-foto-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse, rgba(168,85,247,0.3), transparent 70%);
  border-radius: 2rem;
  z-index: 0;
}

/* ── Gradiente da secao sobre ── */
.section-sobre {
  background: linear-gradient(180deg, #100020 0%, #1a0030 100%);
}

/* ── Tag promocional ── */
.promo-tag {
  background: linear-gradient(135deg, #f0c040, #ff9800);
  color: #1a0030;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
}