:root {
  --bg: #000000;
  --bg-alt: #000000;
  --surface: #000000;
  --border: #1a1a1a;
  --ink: #E0E0E0;
  --ink-strong: #FFF;
  --heading: #FFF;
  --muted: #888;
  --accent-purple: #9D00FF;
  --accent-violet: #8A2BE2;
  --accent-blue: #7000FF;
  --accent-magenta: #BF00FF;
  --accent-yellow: #FFFF00;
  --accent-green: #00FF66;
  --grad-hot: linear-gradient(135deg, var(--accent-purple), var(--accent-violet));
  --grad-power: linear-gradient(135deg, var(--accent-violet), var(--accent-blue));
  --radius: 8px;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); color: var(--ink); font-family: 'Inter', sans-serif; padding-top: 100px; }

/* Full Header Equalizer */
.header-eq-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #000;
  overflow: hidden;
  z-index: 1000;
}

.eq-bg-glow {
  display: none; /* Removed as requested for transparent/chroma key effect */
}

.eq-visualizer {
  display: flex;
  align-items: flex-start; /* Align to top for "falling" effect */
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0;
  position: relative;
  z-index: 2;
}

.eq-bar {
  width: 3%;
  max-width: 45px;
  min-width: 8px;
  display: flex;
  flex-direction: column; /* Direction top to bottom */
  gap: 3px; /* Vertical gap between segments */
  height: 100%;
}

.eq-segment {
  width: 100%;
  height: 5px;
  background: #0a0a0a; /* Default "off" color */
  border-radius: 2px;
  transition: opacity 0.15s ease, background 0.15s ease;
  opacity: 0.15;
}

.eq-bar[data-level] .eq-segment {
  box-shadow: 0 0 8px rgba(157, 0, 255, 0.4);
}

/* Reflection */
.eq-reflection {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 40%;
  transform: scaleY(-1);
  opacity: 0.3;
  filter: blur(2px);
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}

.header-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.header-text-box {
  background: transparent;
  padding: 8px 16px;
  pointer-events: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); /* Maintain legibility without background */
}


/* iPhone Mockup */
.iphone-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 650px;
  margin: 40px auto;
  background: #1c1c1e; /* Titanium / Graphite */
  border-radius: 50px;
  padding: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(157, 0, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.iphone-frame::before { /* Bezel */
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 42px;
  background: #000;
  z-index: 1;
}

.iphone-screen {
  position: relative;
  flex: 1;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.iphone-dynamic-island {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Side Buttons */
.iphone-button {
  position: absolute;
  background: #2c2c2e;
  width: 3px;
  border-radius: 2px;
}
.iphone-button.volume-up { left: -3px; top: 120px; height: 50px; }
.iphone-button.volume-down { left: -3px; top: 180px; height: 50px; }
.iphone-button.side { right: -3px; top: 160px; height: 80px; }

/* VSL Content */
.vsl-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: #555;
  transition: color 0.3s;
}
.vsl-placeholder:hover { color: var(--accent-blue); }
.vsl-play-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.vsl-play-icon::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 4px;
}

/* Placeholder */
.placeholder-img {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 900;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.placeholder-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}

/* Sections */
.section { 
  padding: 40px 20px; 
  position: relative;
  overflow: hidden;
  background: #000;
  border-bottom: 2px solid rgba(157, 0, 255, 0.2);
}

/* Section Dividers - Enhanced with glow effect */
.section::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(157, 0, 255, 0) 20%, 
    rgba(157, 0, 255, 0.4) 50%, 
    rgba(157, 0, 255, 0) 80%, 
    transparent 100%
  );
  filter: blur(4px);
  z-index: 10;
  pointer-events: none;
}


.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(157, 0, 255, 0.03) 100px, rgba(157, 0, 255, 0.03) 101px),
    radial-gradient(circle at 50% 50%, rgba(157, 0, 255, 0.08) 0%, transparent 80%);
  pointer-events: none;
  display: none;
}

.hero-section::before {
  display: block;
}
.muted { color: var(--muted); font-size: 0.95rem; }
.container { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }

h1 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: #FFF;
  text-shadow: 
    0 0 10px rgba(157, 0, 255, 0.5),
    0 0 20px rgba(157, 0, 255, 0.2);
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 { 
  font-family: 'Anton', sans-serif; /* Alterado de 'Bebas Neue' para 'Anton' */
  text-transform: uppercase; 
  letter-spacing: 0.08em; /* Aumentado levemente para diferenciar do Hero */
  color: #FFF;
  text-shadow: 
    0 0 10px rgba(157, 0, 255, 0.8),
    0 0 20px rgba(157, 0, 255, 0.4),
    0 0 30px rgba(157, 0, 255, 0.2);
  line-height: 1.2;
  margin-bottom: 30px;
  font-size: 3.2rem;
  font-weight: 400;
}
.handle-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--accent-purple);
  background: rgba(157, 0, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  border: 1px solid rgba(157, 0, 255, 0.2);
}


.hl-hot {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(157, 0, 255, 0.4));
}

.badge-best-seller {
  position: absolute !important;
  top: 15px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: transparent !important;
  color: #fff !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: none !important;
  border: none !important;
  animation: none !important;
  white-space: nowrap;
  opacity: 0.9;
}

.badge-best-seller i {
  font-size: 1rem;
  margin-right: 6px;
  color: #fff;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.hl-power {
  background: var(--grad-power);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.4));
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--grad-hot);
  color: #FFF;
  font-family: 'Anton', sans-serif;
  padding: 18px 40px;
  border-radius: var(--radius);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 0 20px rgba(157, 0, 255, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  cursor: pointer;
  letter-spacing: 2px;
}

.btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}

.btn:hover { 
  box-shadow: 
    0 0 40px rgba(157, 0, 255, 0.8),
    inset 0 0 15px rgba(255, 255, 255, 0.4);
  transform: translateY(-3px) scale(1.05); 
  border-color: rgba(255, 255, 255, 0.6);
}

.btn:hover::before {
  left: 100%;
}

.btn-hero {
  font-size: 1.6rem;
  padding: 22px 60px;
  background: #9D00FF;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(157, 0, 255, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: 'Anton', sans-serif;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.btn-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  background: #b033ff;
  box-shadow: 0 12px 30px rgba(157, 0, 255, 0.6);
}

.btn-hero:hover::after {
  left: 100%;
}

.cta-final {
  background: #000;
  border-top: 1px solid var(--border);
}

/* Grid and Utils */
.center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

/* Social Marquee */
.social-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.social-marquee-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.social-marquee-content.reverse {
  animation-direction: reverse;
}

.social-marquee-wrapper:hover .social-marquee-content {
  /* animation-play-state: paused; */ /* Removido para manter girando sem parar */
}

@media (max-width: 768px) {
  .social-marquee-wrapper:hover .social-marquee-content {
    animation-play-state: running; /* No hover pause on mobile */
  }
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.social-print-card {
  background: #151515;
  border: 1px solid rgba(157, 0, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.social-print-card.portrait {
  width: 220px;
  height: 391px; /* Proporção 9:16 aproximada (220 * 16 / 9 = 391.1) */
}

.social-print-card.square {
  display: none; /* Removido em favor do formato 9:16 */
}

@media (max-width: 768px) {
  .social-print-card.portrait { width: 160px; height: 284px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-social { grid-template-columns: 1fr; gap: 20px; }
  .grid-social-story { height: 450px; grid-row: auto; }
  .section { padding: 40px 15px; }
  h1 { font-size: 2.5rem !important; }
  h2 { font-size: 1.8rem !important; }
  .container { padding: 0 10px; }
}

/* Cover Flow / Theater Carousel */
.theater-carousel-wrapper {
  perspective: 1000px;
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}

.theater-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  height: 250px;
  transform-style: preserve-3d;
}

.carousel-card {
  position: absolute;
  width: 200px;
  height: 200px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-style: preserve-3d;
  opacity: 0.2; /* Better signal that they are side cards */
  filter: brightness(0.3) blur(1px);
}
@media (max-width: 768px) {
  .carousel-card {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 768px) {
  .theater-carousel-wrapper {
    padding: 6px 0 8px !important;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  }
  .theater-carousel { height: 190px; }
  .active-genre-neon-count { margin-bottom: 0 !important; }
  .carousel-card.prev {
    transform: translateX(-88px) rotateY(30deg) scale(0.86) !important;
    opacity: 0.35;
  }
  .carousel-card.next {
    transform: translateX(88px) rotateY(-30deg) scale(0.86) !important;
    opacity: 0.35;
  }
  .carousel-card.prev-prev {
    transform: translateX(-140px) rotateY(38deg) scale(0.7) translateZ(-60px) !important;
    opacity: 0.12;
  }
  .carousel-card.next-next {
    transform: translateX(140px) rotateY(-38deg) scale(0.7) translateZ(-60px) !important;
    opacity: 0.12;
  }
  .carousel-card .genre-label { font-size: 0.8rem; }
}

/* Center active card */
.carousel-card.active {
  z-index: 10;
  transform: translateZ(120px);
  opacity: 1;
  filter: brightness(1) blur(0);
}

/* Left side cards */
.carousel-card.prev {
  z-index: 5;
  transform: translateX(-110px) rotateY(35deg) translateZ(0px);
  opacity: 0.6;
  filter: brightness(0.5);
}

.carousel-card.prev-prev {
  z-index: 2;
  transform: translateX(-190px) rotateY(45deg) translateZ(-60px);
  opacity: 0.3;
}

/* Right side cards */
.carousel-card.next {
  z-index: 5;
  transform: translateX(110px) rotateY(-35deg) translateZ(0px);
  opacity: 0.6;
  filter: brightness(0.5);
}

.carousel-card.next-next {
  z-index: 2;
  transform: translateX(190px) rotateY(-45deg) translateZ(-60px);
  opacity: 0.3;
}

.carousel-card .placeholder-img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 30px rgba(0,0,0,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #000;
}

.carousel-card img {
  filter: brightness(0.6) contrast(1.1);
  transition: all 0.5s;
}

.carousel-card.active img {
  filter: brightness(0.9) contrast(1);
  transform: scale(1.05);
}

.carousel-card .placeholder-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.5s;
}

.carousel-card.active .placeholder-img::before {
  opacity: 0;
}

.carousel-card .vsl-play-icon {
  display: none;
}

.carousel-card .genre-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 5px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent);
  z-index: 5;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-align: center;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* Square cover-flow layout adjustments */
.carousel-card.prev {
  transform: translateX(-120px) rotateY(25deg) translateZ(0px);
}
.carousel-card.next {
  transform: translateX(120px) rotateY(-25deg) translateZ(0px);
}
.carousel-card.prev-prev {
  transform: translateX(-220px) rotateY(35deg) translateZ(-80px);
}
.carousel-card.next-next {
  transform: translateX(220px) rotateY(-35deg) translateZ(-80px);
}


/* IG Mini-Profile Updated (fiel ao app) */
.ig-profile-card {
  background: #000;
  border: 1px solid rgba(157, 0, 255, 0.3);
  border-radius: 20px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 560px;
  margin: 32px auto;
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.1);
}
.ig-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ig-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #222;
  border: 4px solid var(--accent-purple);
  flex-shrink: 0;
  box-shadow: 0 0 18px rgba(157, 0, 255, 0.55), inset 0 0 10px rgba(157,0,255,0.3);
}

.ig-info { flex: 1; color: #FFF; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.ig-username-row { display: flex; align-items: center; gap: 8px; }
.ig-username { font-weight: 700; font-size: 1.1rem; }
.ig-verified { color: #0095f6; font-size: 1.1rem; }

.ig-stats {
  display: flex;
  flex: 1;
  gap: 8px;
  margin: 0;
}
.ig-stats > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.15;
}
.ig-stat-val { font-weight: 700; font-size: 1.15rem; color: #FFF; }
.ig-stat-label { color: #A0A0A0; font-weight: 400; font-size: 0.85rem; }

.ig-name { font-weight: 700; font-size: 0.95rem; margin: 0; }
.ig-bio { font-size: 0.88rem; line-height: 1.25; color: #E0E0E0; white-space: pre-line; margin: 0; }
.ig-link { color: #7FB3FF; text-decoration: none; font-weight: 600; display: block; font-size: 0.85rem; margin: 0; }

.ig-actions { display: flex; gap: 8px; margin-top: 4px; width: 100%; }
.ig-btn {
  flex: 1 1 50%;
  width: 50%;
  text-align: center;
  padding: 7px 6px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
}
.ig-btn-primary { background: var(--accent-purple); color: #FFF; }
.ig-btn-secondary { border: 1px solid #333; color: #FFF; }

@media (max-width: 768px) {
  .ig-profile-card {
    padding: 16px;
    gap: 10px;
    max-width: 95%;
  }
  .ig-header-row { gap: 16px; }
  .ig-avatar {
    width: 86px;
    height: 86px;
    border-width: 3px;
  }
  .ig-stats { gap: 4px; }
  .ig-stat-val { font-size: 0.95rem; }
  .ig-stat-label { font-size: 0.7rem; }
  .ig-username { font-size: 0.95rem; }
  .ig-name { font-size: 0.85rem; }
  .ig-bio { font-size: 0.78rem; line-height: 1.22; }
  .ig-link { font-size: 0.78rem; }
  .ig-btn { padding: 6px 4px; font-size: 0.75rem; }
}

/* Reels UI */
.reels-ui-overlay {
  position: absolute;
  right: 10px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #FFF;
  text-align: center;
  font-size: 0.8rem;
}
.reels-icon { font-size: 1.5rem; }

/* IG Post Card */
.ig-post-card {
  background: #000;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  padding-bottom: 10px;
}
.ig-post-header { display: flex; align-items: center; padding: 10px; gap: 8px; }
.ig-post-avatar { width: 30px; height: 30px; border-radius: 50%; background: #333; }
.ig-post-image { width: 100%; aspect-ratio: 1/1; background: #111; }
.ig-post-actions { padding: 10px; font-size: 1.2rem; display: flex; gap: 10px; }
.ig-post-likes { padding: 0 10px; font-weight: bold; font-size: 0.9rem; }

/* Bonus cards */
.bonus-card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.bonus-card:hover {
  border-color: var(--accent-purple);
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
  transform: translateY(-2px);
}
.bonus-card h3 { color: var(--accent-purple) !important; font-size: 1.3rem; margin-bottom: 5px; font-family: 'Anton', sans-serif; }
.bonus-card .muted { color: #BBB; font-size: 1rem; }
@media (max-width: 768px) {
  .bonus-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    text-align: center;
  }
  .bonus-card .placeholder-img {
    width: 100% !important;
    max-width: 280px;
    height: auto !important;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
  }
}
.bonus-price-old { text-decoration: line-through; color: #888; margin-right: 12px; font-weight: bold; }
.bonus-price-free { 
  color: var(--accent-green); 
  font-weight: 900; 
  font-size: 1.1rem;
  background: rgba(0, 255, 102, 0.15);
  padding: 4px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ */
.faq details {
  background: #000;
  margin-bottom: 10px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.faq summary {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::after { content: "+"; color: var(--accent-purple); }
.faq details[open] summary::after { content: "×"; }
.faq-content { padding: 0 20px 20px; color: #BBB; line-height: 1.6; font-size: 0.95rem; }

/* Plan card fixes */
.plan-card {
  transition: transform 0.3s;
}
.btn-palco:hover {
  background: #555 !important;
  border-color: #666 !important;
}

/* CTA Final */
.cta-final {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(157, 0, 255, 0.12) 0%, transparent 80%);
}
.cta-final .eq-visualizer { height: 100px; margin-bottom: 40px; }
@media (max-width: 768px) {
  .cta-final { padding: 60px 16px; }
  .cta-final .eq-visualizer { height: 140px; margin-bottom: 14px; }
  .cta-final .eq-bar { min-width: 6px; width: 3.6%; gap: 2px; }
  .cta-final .eq-segment { height: 6px; }
  .cta-final h2 { margin-top: 0; }
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 0, 255, 0.05);
  border: 1px solid rgba(157, 0, 255, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  color: #E0E0E0;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 0 10px rgba(157, 0, 255, 0.05);
}

.stat-item i {
  color: var(--accent-purple);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-item {
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.8rem;
  }
}

/* Genre Badge (Card Corner) */
.active-genre-neon-count {
  text-align: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.8rem; /* Aumentado de 1.4rem */
  color: #FFF;
  text-transform: uppercase;
  margin-bottom: 5px; /* Movido mais para cima (era -10px) */
  position: relative;
  z-index: 20;
  text-shadow: 
    0 0 10px var(--accent-purple),
    0 0 20px var(--accent-magenta),
    0 0 30px var(--accent-purple);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.active-genre-neon-count.changing {
  opacity: 0;
  transform: scale(0.95);
}


.genre-count-badge {
  display: none;
}


/* Descriptive Paragraph Below Carousel */
.carousel-description {
  margin: 40px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 700px;
  padding: 0 20px;
}

/* Carousel Focus/Blur Improvements */
.carousel-card .genre-label {
  opacity: 0.8;
  transition: opacity 0.5s, transform 0.5s;
}

.carousel-card.active .genre-label {
  opacity: 1;
  transform: translateY(-5px);
  color: #FFF;
  text-shadow: 0 0 15px var(--accent-purple);
}

.carousel-card.prev .genre-label,
.carousel-card.next .genre-label {
  opacity: 1;
  color: #FFF;
}

/* How it Works Step-by-Step */
.how-it-works-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
}

.how-it-works-grid::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent-purple) 0, var(--accent-purple) 5px, transparent 5px, transparent 10px);
  z-index: 1;
  opacity: 0.3;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #000;
  border: 2px solid var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: #FFF;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #FFF;
}

.step-content p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  padding: 0 10px;
}

@media (max-width: 768px) {
  .how-it-works-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
    padding-top: 20px;
  }
  
  .how-it-works-grid::before {
    display: block;
    content: "";
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(0deg, var(--accent-purple) 0, var(--accent-purple) 6px, transparent 6px, transparent 12px);
    z-index: 1;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(157, 0, 255, 0.6);
  }
  
  .step-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  
  .step-header {
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    position: relative;
  }

  .step-number {
    display: flex !important;
    position: absolute;
    background: #000;
    z-index: 5;
  }

  /* Número sempre à esquerda, ícone centralizado, texto abaixo */
  .step-item .step-number {
    left: 0;
    right: auto;
    transform: none;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto;
    background: #000;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(157, 0, 255, 0.3);
  }
  
  .step-content h3::before {
    content: none;
  }
  
  .step-content p {
    padding: 0 20px;
  }
}


/* Plan Improvements */
.payment-condition {
  font-size: 0.8rem;
  color: #BBB;
  text-align: center;
  margin-top: auto; /* Push to bottom */
  margin-bottom: 15px;
  padding-top: 20px;
}

.benefit-item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-item:last-child {
  border-bottom: none;
}

.trust-seals {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}

.price-anchoring {
  font-size: 0.9rem;
  color: #AAA;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .plan-card {
    transform: none !important;
    margin-bottom: 20px;
  }
}

/* Payment Methods and Icon alignment */
.payment-methods-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.pix-badge-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.pix-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(157, 0, 255, 0.05);
  border: 1px solid rgba(157, 0, 255, 0.2);
  border-radius: 30px;
  color: #FFF;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.1);
}

.pix-badge i {
  color: #32BCAD; /* Cor oficial aproximada do PIX */
  font-size: 1.1rem;
}

.benefit-item i, .trust-seals i, .cta-final i {
  margin-right: 5px;
  opacity: 0.8;
}

.genre-badge i, h2 i {
  margin-right: 8px;
}

/* Consolidated Trust and Payment Badges */
.payment-methods-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(157, 0, 255, 0.15);
  border-radius: 30px;
  color: #AAA;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.trust-badge-pill:hover {
  border-color: rgba(157, 0, 255, 0.4);
  color: #FFF;
}

.trust-badge-pill i {
  font-size: 0.9rem;
  color: var(--accent-purple);
}

@media (max-width: 768px) {
  .payment-methods-row {
    flex-direction: column;
    align-items: center;
  }
  .pix-badge, .trust-badge-pill {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  /* Invert order of plans on mobile: 32GB before 16GB */
  .plans-grid {
    display: flex !important;
    flex-direction: column-reverse;
    gap: 25px !important;
  }
  
  .plan-card {
    transform: none !important;
    width: 100% !important;
  }
}


/* CTA Variants and overrides */
.btn-palco {
  border: 2px solid var(--accent-purple) !important;
  color: var(--accent-purple) !important;
  background: rgba(157, 0, 255, 0.05) !important;
  font-family: 'Anton', sans-serif !important;
  letter-spacing: 2px !important;
  text-shadow: none !important;
  transition: all 0.3s ease !important;
}

.btn-palco:hover {
  background: var(--accent-purple) !important;
  color: #fff !important;
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.5) !important;
}

.update-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(157, 0, 255, 0.1);
  border: 1px solid rgba(157, 0, 255, 0.3);
  padding: 6px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(157, 0, 255, 0.2);
}

.update-badge-pill i {
  color: var(--accent-purple);
  font-size: 0.9rem;
}

/* ===== ORDER BUMP MODAL ===== */
.bump-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}
.bump-overlay.is-open { display: flex; }
.bump-modal {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 94vh;
  overflow-y: auto;
  background: radial-gradient(120% 80% at 50% 0%, rgba(157, 0, 255, 0.16), rgba(10, 0, 26, 0.98) 60%), #08000F;
  border: 2px solid rgba(157, 0, 255, 0.85);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(157, 0, 255, 0.5), inset 0 0 40px rgba(157, 0, 255, 0.1);
  padding: 52px 44px 44px;
  text-align: center;
  animation: bumpIn 0.25s ease-out;
}
@keyframes bumpIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.bump-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #888;
  font-size: 1.35rem;
  cursor: pointer;
  padding: 6px;
  line-height: 1;
}
.bump-close:hover { color: #fff; }
.bump-title {
  font-family: 'Anton', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 0 12px rgba(157, 0, 255, 0.8);
  margin: 0 0 18px;
}
.bump-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-purple);
  margin: 0 0 20px;
}
.bump-text {
  font-size: 0.98rem;
  color: #D8D8D8;
  line-height: 1.6;
  margin: 0 0 34px;
}
.bump-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 38px;
}
.bump-option {
  position: relative;
  border: 2px solid rgba(157, 0, 255, 0.75);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(157, 0, 255, 0.14), rgba(10, 0, 26, 0.9) 70%), #0A0A0A;
  padding: 26px 20px 22px;
  box-shadow: 0 0 22px rgba(157, 0, 255, 0.25), inset 0 0 24px rgba(157, 0, 255, 0.12);
}
.bump-seal {
  position: absolute;
  top: -16px;
  right: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-purple);
  color: #fff;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(157, 0, 255, 0.95);
}
.bump-option-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(157, 0, 255, 0.45);
  box-shadow: 0 0 16px rgba(157, 0, 255, 0.22);
}
.bump-option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bump-option-icon {
  display: block;
  font-size: 2.2rem;
  color: var(--accent-purple);
  margin-bottom: 14px;
}
.bump-option-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}
.bump-btn-primary {
  display: block;
  width: 100%;
  font-size: 1.15rem;
  padding: 26px 20px;
}
.bump-btn-secondary {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.85rem;
  color: #9a9a9a;
  text-decoration: underline;
}
.bump-btn-secondary:hover { color: #ddd; }
.bump-modal .payment-methods-row,
.bump-modal .trust-badge-pill { margin-top: 28px; }
body.bump-open { overflow: hidden; }

@media (max-width: 600px) {
  .bump-modal { padding: 44px 22px 32px; border-radius: 16px; }
  .bump-title { font-size: 1.7rem; }
  .bump-options { gap: 14px; margin-bottom: 30px; }
  .bump-option { padding: 20px 14px 16px; }
  .bump-btn-primary { font-size: 0.95rem; padding: 20px 12px; }
}


.bonus-card .placeholder-img img { object-fit: contain !important; }

/* --- VSL Overlay & Replay --- */
.vsl-wrap { position: relative; width: 100%; height: 100%; border-radius: 38px; overflow: hidden; }
.vsl-overlay {
  position: absolute; inset: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(3px);
  cursor: pointer; text-align: center; padding: 20px;
  animation: vslPulse 1.6s ease-in-out infinite;
}
.vsl-overlay-icon { font-size: 2.4rem; color: var(--accent-purple); text-shadow: 0 0 18px rgba(157,0,255,.9); }
.vsl-overlay-text {
  font-family: 'Anton', sans-serif; font-size: 1.7rem; letter-spacing: .06em; color: #fff;
  text-shadow: 0 0 12px rgba(157,0,255,.9), 0 0 30px rgba(157,0,255,.6), 0 2px 4px rgba(0,0,0,.8);
}
.vsl-overlay-sub {
  font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #e9d5ff; background: rgba(157,0,255,.25); border: 1px solid rgba(157,0,255,.6);
  padding: 8px 18px; border-radius: 999px; box-shadow: 0 0 16px rgba(157,0,255,.5);
}
@keyframes vslPulse { 0%,100% { box-shadow: inset 0 0 0 3px rgba(157,0,255,.5);} 50% { box-shadow: inset 0 0 30px 6px rgba(157,0,255,.35);} }
.vsl-replay {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 6;
  width: 88px; height: 88px; border-radius: 50%; border: 3px solid var(--accent-purple);
  background: rgba(0,0,0,.6); color: #fff; font-size: 2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 25px rgba(157,0,255,.8), inset 0 0 15px rgba(157,0,255,.4);
  transition: transform .2s, box-shadow .2s;
}
.vsl-replay i { margin-left: 5px; }
.vsl-replay:hover { transform: translate(-50%,-50%) scale(1.08); box-shadow: 0 0 40px rgba(157,0,255,1); }
@media (max-width: 768px) {
  .vsl-overlay-text { font-size: 1.2rem; }
  .vsl-overlay-icon { font-size: 1.8rem; }
  .vsl-overlay-sub { font-size: .75rem; padding: 6px 14px; }
}


/* VSL mute toggle */
.vsl-mute {
  position: absolute;
  bottom: 18px;
  right: 14px;
  z-index: 6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.6);
  border: 1.5px solid var(--accent-purple);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 14px rgba(157,0,255,0.55);
  backdrop-filter: blur(4px);
  transition: transform .15s ease, box-shadow .15s ease;
}
.vsl-mute:hover { transform: scale(1.08); box-shadow: 0 0 22px rgba(157,0,255,0.85); }
