/* =========================================================
   DESCONTAÇO RELÂMPAGO - LANDING PAGE DE ALTA CONVERSÃO
   Paleta: Preto Profundo, Amarelo Neon, Dourado, Laranja & Verde WhatsApp
   ========================================================= */

:root {
  --bg-deep: #050508;
  --bg-card: rgba(15, 15, 24, 0.72);
  --bg-card-hover: rgba(22, 22, 35, 0.85);
  
  --neon-yellow: #FFE600;
  --neon-yellow-glow: rgba(255, 230, 0, 0.45);
  --gold: #FFB800;
  --orange: #FF7A00;
  
  --wa-green: #25D366;
  --wa-green-light: #2ef379;
  --wa-green-dark: #1da851;
  --wa-glow: rgba(37, 211, 102, 0.55);
  --wa-glow-intense: rgba(37, 211, 102, 0.85);

  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;

  --border-subtle: rgba(255, 230, 0, 0.12);
  --border-glow: rgba(255, 230, 0, 0.35);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset Global */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  line-height: 1.5;
  background-color: var(--bg-deep);
  scrollbar-width: none;
}

/* ================= BACKGROUND CÓSMICO COM FOGUETE 3D ================= */
.space-bg-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}

.space-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.55;
  filter: contrast(1.15) brightness(0.85);
  transform: scale(1.02);
  transition: transform 0.5s ease-out;
}

.space-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 15%, rgba(5, 5, 8, 0.4) 0%, rgba(5, 5, 8, 0.85) 60%, var(--bg-deep) 100%),
              linear-gradient(180deg, rgba(5, 5, 8, 0.3) 0%, rgba(5, 5, 8, 0.92) 85%, var(--bg-deep) 100%);
}

#starsCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Acentos de Luz Ambiente */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
}

.glow-top {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  height: 350px;
  background: radial-gradient(circle, var(--neon-yellow) 0%, var(--orange) 60%, transparent 80%);
}

.glow-bottom {
  bottom: 5%;
  right: 0;
  width: min(450px, 80vw);
  height: 350px;
  background: radial-gradient(circle, var(--wa-green) 0%, transparent 70%);
  opacity: 0.12;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(5, 5, 8, 0.82);
  border-bottom: 1px solid rgba(255, 230, 0, 0.1);
  padding: 10px 16px;
  transition: all var(--transition-fast);
}

.header-container {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo {
  height: 52px;
  width: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.45));
  transition: transform var(--transition-bounce);
  border-radius: 50%;
}

.brand-logo:hover {
  transform: scale(1.08) rotate(-2deg);
}

/* Botão Compacto WhatsApp no Topo */
.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--wa-green-light) 0%, var(--wa-green) 100%);
  color: #03220e;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.3px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 16px var(--wa-glow), 0 2px 6px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-bounce);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-wa-header:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 24px var(--wa-glow-intense), 0 4px 10px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #4ef98e 0%, var(--wa-green-light) 100%);
}

.btn-wa-header .wa-icon {
  width: 16px;
  height: 16px;
}

/* ================= ESTRUTURA PRINCIPAL ================= */
.main-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 24px 16px 40px;
}

.content-container {
  width: 100%;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ================= HERO SECTION ================= */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px;
}

/* Live Status Badge */
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 230, 0, 0.08);
  border: 1px solid rgba(255, 230, 0, 0.28);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.1);
}

.live-indicator {
  width: 8px;
  height: 8px;
  background-color: var(--neon-yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-yellow);
  animation: liveBlink 1.5s infinite ease-in-out;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.live-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--neon-yellow);
  text-transform: uppercase;
}

/* Headline */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.68rem, 5.4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  max-width: 580px;
}

.mobile-br {
  display: block;
}

.highlight-neon {
  color: var(--neon-yellow);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--neon-yellow) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  position: relative;
  text-shadow: 0 0 25px rgba(255, 230, 0, 0.4);
  filter: drop-shadow(0 0 12px rgba(255, 230, 0, 0.45));
}

/* Subtítulo */
.hero-subtitle {
  font-size: clamp(1rem, 3.2vw, 1.2rem);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.55;
}

/* ================= SUPER BOTÃO CTA WHATSAPP ================= */
.cta-wrapper {
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  position: relative;
}

.btn-wa-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #32fa7c 0%, var(--wa-green) 50%, #1ab151 100%);
  color: #03200d;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 35px var(--wa-glow), 0 8px 25px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  overflow: hidden;
  transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.25);
  animation: heroPulse 2.8s infinite ease-in-out;
}

@keyframes heroPulse {
  0% {
    box-shadow: 0 0 25px var(--wa-glow), 0 6px 20px rgba(0, 0, 0, 0.6);
  }
  50% {
    box-shadow: 0 0 45px var(--wa-glow-intense), 0 0 18px rgba(37, 211, 102, 0.7), 0 10px 28px rgba(0, 0, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 25px var(--wa-glow), 0 6px 20px rgba(0, 0, 0, 0.6);
  }
}

.btn-wa-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px var(--wa-glow-intense), 0 12px 32px rgba(0, 0, 0, 0.8);
  background: linear-gradient(135deg, #4fff91 0%, #28e06f 50%, #1cb855 100%);
}

.btn-wa-hero:active {
  transform: translateY(1px) scale(0.99);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.wa-icon-large {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.btn-text {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Efeito de Brilho / Sweep no Botão */
.btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-22deg);
  animation: buttonShine 4.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@keyframes buttonShine {
  0% { left: -120%; }
  25% { left: 160%; }
  100% { left: 160%; }
}

/* Microcopy / Garantia */
.guarantee-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.check-icon {
  width: 17px;
  height: 17px;
  color: var(--wa-green);
}

/* ================= SEÇÃO DE BENEFÍCIOS ================= */
.benefits-section {
  width: 100%;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
}

.benefit-card:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--border-glow);
  box-shadow: 0 6px 24px rgba(255, 230, 0, 0.08), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.benefit-icon-box {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(255, 230, 0, 0.18) 0%, rgba(255, 122, 0, 0.08) 100%);
  border: 1px solid rgba(255, 230, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-yellow);
  box-shadow: 0 0 14px var(--neon-yellow-glow);
}

.benefit-icon {
  width: 24px;
  height: 24px;
}

.benefit-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.2px;
}

.benefit-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================= SEGUNDA DOBRA / CTA FINAL ================= */
.final-cta-section {
  width: 100%;
}

.final-cta-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.12) 0%, rgba(15, 15, 24, 0.85) 70%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 184, 0, 0.3);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 35px rgba(255, 184, 0, 0.12), 0 8px 30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.cta-glow-bg {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 230, 0, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.urgency-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.12);
  border: 1px solid rgba(255, 122, 0, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 4.4vw, 1.85rem);
  font-weight: 900;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  max-width: 100%;
}

.final-cta-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 24px;
}

.small-guarantee {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================= FOOTER ================= */
.footer {
  position: relative;
  z-index: 10;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 5, 8, 0.9);
  padding: 24px 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
}

.footer-content {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: #475569;
}

/* ================= MEDIA QUERIES (DESKTOP & TABLET ENHANCEMENT) ================= */
@media (min-width: 640px) {
  .benefits-grid {
    gap: 16px;
  }

  .benefit-card {
    padding: 18px 24px;
  }

  .header {
    padding: 14px 24px;
  }

  .brand-logo {
    height: 54px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-sub {
    font-size: 0.9rem;
  }

  .btn-wa-header {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .mobile-br {
    display: none;
  }
}
