/* ========================================
   01 DAS VIRADAS - Landing Page Styles
   Design: Dark Gold Premium Theme
======================================== */

/* CSS Variables - Paleta Refinada */
:root {
  /* Cores principais - mais elegantes */
  --gold: #d4a855;
  --gold-dark: #b8923d;
  --gold-light: #e8c77a;
  --gold-glow: rgba(212, 168, 85, 0.15);
  
  /* Backgrounds - mais suaves */
  --bg-dark: #0d0d0d;
  --bg-darker: #080808;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  
  /* Textos - melhor contraste */
  --text-primary: #f5f5f5;
  --text-secondary: #a0a0a0;
  --text-muted: #5a5a5a;
  
  /* Gradientes - mais sutis */
  --gradient-gold: linear-gradient(135deg, #d4a855 0%, #e8c77a 50%, #d4a855 100%);
  --gradient-bg: linear-gradient(180deg, #0d0d0d 0%, #111111 50%, #0d0d0d 100%);
  
  /* Sombras - mais leves */
  --shadow-gold: 0 4px 20px rgba(212, 168, 85, 0.2);
  --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.3);
  
  /* Fontes */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  /* Transições suaves */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 320px;
}

/* Container - responsivo */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ========================================
   HERO SECTION - CAPA RESPONSIVA
======================================== */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 0;
  background: var(--bg-darker);
  overflow: hidden;
  isolation: isolate;
}

/* Anti-duplicação: hero e capa aparecem apenas 1x */
.hero .hero-bg,
.hero .hero-capa {
  flex: 0 0 auto;
}

.hero-bg {
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-capa {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}

/* Desktop - capa centralizada */
@media (min-width: 1024px) {
  .hero {
    min-height: auto;
  }
  
  .hero-bg {
    max-width: 100%;
  }
  
  .hero-capa {
    width: 100%;
    max-height: 100vh;
    object-fit: contain;
  }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 769px) {
  .hero {
    min-height: auto;
  }
  
  .hero-capa {
    width: 100%;
    height: auto;
  }
}

/* Mobile - capa ocupa toda a largura */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }
  
  .hero-bg {
    width: 100%;
  }
  
  .hero-capa {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

.hero-cta-overlay {
  display: none; /* Removido pois a capa já tem o botão */
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--gold);
  font-size: 28px;
  z-index: 10;
  background: rgba(0,0,0,0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  background: var(--gold);
  color: #000;
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 168, 85, 0.5);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* CTA Button - Mais limpo */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--gold);
  color: #0d0d0d;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
  box-shadow: 0 8px 25px rgba(212, 168, 85, 0.3);
}

.cta-btn.pulse {
  animation: cta-pulse 3s infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 168, 85, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(212, 168, 85, 0.4); }
}

.cta-btn.big {
  padding: 18px 50px;
  font-size: 17px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--text-muted);
  font-size: 24px;
  z-index: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ========================================
   SECTIONS COMMON STYLES
======================================== */
.section {
  padding: 80px 0;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-glow);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.section-desc {
  font-size: 20px;
  color: var(--gold-light);
  margin-bottom: 40px;
  font-weight: 500;
}

.depoimentos-arrow-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.depoimentos-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(212, 168, 85, 0.1);
  animation: depoimentos-arrow-bounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.depoimentos-arrow:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.1);
}

@keyframes depoimentos-arrow-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.highlight {
  color: var(--gold);
}

.highlight-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
  background: 
    radial-gradient(ellipse at left, rgba(212, 168, 85, 0.05) 0%, transparent 50%),
    var(--bg-dark);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text .lead {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 25px;
}

/* Texto destacado da seção sobre */
.about-text-destacado .lead {
  font-size: 22px;
  color: var(--gold-light);
  line-height: 1.9;
  font-weight: 500;
}

.about-text-destacado .lead strong {
  color: var(--gold);
  font-weight: 700;
}

.about-text-destacado .historia {
  font-size: 18px;
  color: var(--text-primary);
  font-style: normal;
  padding: 20px 25px;
  background: linear-gradient(145deg, rgba(212, 168, 85, 0.1) 0%, rgba(212, 168, 85, 0.03) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  line-height: 1.8;
}

.about-text-destacado .historia strong {
  color: var(--gold);
  font-weight: 700;
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.about-text-destacado .frase-destaque {
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 85, 0.3);
  margin: 25px 0;
}

.about-text-destacado .frase-destaque strong {
  color: #fff;
  font-weight: 700;
}

.about-text-destacado .consciencia {
  font-size: 17px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}

.highlight-box.oportunidade {
  margin-top: 30px;
  padding: 25px 30px;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.15) 0%, rgba(212, 168, 85, 0.05) 100%);
  border: 1px solid rgba(212, 168, 85, 0.3);
  border-left: 5px solid var(--gold);
  border-radius: 12px;
  text-align: center;
}

.highlight-box.oportunidade p {
  font-size: 20px;
  line-height: 1.6;
}

.highlight-box.oportunidade .icon {
  font-size: 32px;
}

.oportunidade-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.oportunidade-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 5px 15px rgba(212, 168, 85, 0.4));
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: var(--bg-card);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
}

.highlight-box.gold {
  background: rgba(212, 168, 85, 0.1);
  border-color: var(--gold);
}

.highlight-box .icon {
  font-size: 28px;
}

.highlight-box p {
  margin: 0;
  color: var(--text-primary);
}

.about-features {
  display: grid;
  gap: 20px;
}

.feature-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  transform: translateX(5px);
  border-color: rgba(212, 168, 85, 0.2);
}

.feature-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--gold);
}

.feature-card p {
  color: var(--gold-light);
  font-size: 15px;
  margin: 0;
  font-weight: 500;
}

/* ========================================
   HOW WORKS SECTION
======================================== */
.how-works {
  background: var(--bg-darker);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.check-item:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 168, 85, 0.15);
}

.check-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.check-item p {
  margin: 0;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 500;
}

/* ========================================
   STEPS SECTION
======================================== */
.steps {
  background: 
    radial-gradient(ellipse at right, rgba(155, 77, 255, 0.05) 0%, transparent 50%),
    var(--bg-dark);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.step-card {
  text-align: center;
  padding: 30px 18px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-normal);
  position: relative;
}

.step-card::after {
  content: '→';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  opacity: 0.4;
}

.step-card:last-child::after {
  display: none;
}

.step-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.step-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #0d0d0d;
  font-family: var(--font-heading);
  font-size: 22px;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-card p {
  font-size: 14px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

.steps-note {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
}

/* ========================================
   CARD SECTION
======================================== */
.card-section {
  background: var(--bg-darker);
  overflow: hidden;
}

.card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.card-benefits {
  margin: 30px 0;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.benefit-icon {
  font-size: 20px;
}

.benefit p {
  margin: 0;
  font-size: 16px;
  color: var(--gold-light);
  font-weight: 500;
}

/* 3D Card */
.card-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.card-3d {
  width: 340px;
  height: 200px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotateY(-5deg); }
  50% { transform: translateY(-15px) rotateY(5deg); }
}

.card-front {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 20px;
  padding: 30px;
  position: relative;
  border: 2px solid rgba(212, 168, 85, 0.3);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.card-brand {
  position: absolute;
  top: 25px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 3px;
}

.card-chip {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #d4a24a 0%, #f5c46b 50%, #d4a24a 100%);
  border-radius: 8px;
  margin-top: 20px;
}

.card-number {
  display: block;
  margin-top: 25px;
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 4px;
  color: var(--text-secondary);
}

.card-name {
  position: absolute;
  bottom: 25px;
  left: 30px;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--gold);
}

/* ========================================
   LIVE SECTION
======================================== */
.live-section {
  background: var(--bg-dark);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 40px;
}

.live-card {
  text-align: center;
  padding: 40px 25px;
  background: var(--bg-card);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.live-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  border-color: rgba(212, 168, 85, 0.3);
}

.live-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 20px;
}

.live-icon.pulse-live {
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.live-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--gold);
}

.live-card p {
  font-size: 15px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

.live-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px;
  background: rgba(212, 168, 85, 0.1);
  border-radius: 12px;
  text-align: center;
}

.live-highlight .icon {
  font-size: 32px;
}

.live-highlight p {
  margin: 0;
  font-size: 18px;
}

/* ========================================
   PROGRESS SECTION
======================================== */
.progress-section {
  background: var(--bg-darker);
}

.progress-items {
  max-width: 700px;
  margin: 0 auto;
}

.progress-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: var(--bg-card);
  border-radius: 12px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.progress-item:hover {
  background: var(--bg-card-hover);
  transform: translateX(10px);
  border-color: rgba(212, 168, 85, 0.3);
}

.progress-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.progress-item h4 {
  font-size: 17px;
  margin-bottom: 5px;
  color: var(--gold);
}

.progress-item p {
  font-size: 15px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

/* ========================================
   BONUS SECTION
======================================== */
.bonus-section {
  background: 
    radial-gradient(ellipse at center, rgba(212, 168, 85, 0.05) 0%, transparent 60%),
    var(--bg-dark);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bonus-card {
  padding: 24px;
  background: var(--bg-card);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition-normal);
  position: relative;
}

.bonus-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.bonus-card.featured {
  background: var(--gold-glow);
  border-color: rgba(212, 168, 85, 0.2);
}

.bonus-number {
  font-family: var(--font-heading);
  font-size: 40px;
  color: rgba(212, 168, 85, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.bonus-card h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--gold);
}

.bonus-card p {
  font-size: 15px;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* ========================================
   TARGET SECTION
======================================== */
.target-section {
  background: var(--bg-darker);
}

.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.target-card {
  padding: 40px;
  border-radius: 20px;
  border: 2px solid;
}

.target-card.yes {
  background: rgba(34, 197, 94, 0.05);
  border-color: rgba(34, 197, 94, 0.3);
}

.target-card.no {
  background: rgba(239, 68, 68, 0.05);
  border-color: rgba(239, 68, 68, 0.3);
}

.target-card h3 {
  font-size: 20px;
  margin-bottom: 25px;
}

.target-card.yes h3 {
  color: #22c55e;
}

.target-card.no h3 {
  color: #ef4444;
}

.target-card ul {
  list-style: none;
}

.target-card li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.target-card li:last-child {
  border: none;
}

.target-card li span {
  font-size: 18px;
}

/* ========================================
   TESTIMONIALS SECTION - VÍDEOS
======================================== */
.testimonials-section {
  background:
    radial-gradient(ellipse at bottom, rgba(155, 77, 255, 0.05) 0%, transparent 50%),
    var(--bg-dark);
}

.testimonials-section .container {
  overflow: visible;
}

.testimonials-videos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testimonial-video {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
  position: relative;
}

.testimonial-video::before {
  content: '▶';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  padding-left: 4px;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition: var(--transition-normal);
}

.testimonial-video:hover::before {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-video:hover {
  border-color: rgba(212, 168, 85, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-video video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}

.testimonial-video.playing::before {
  opacity: 0;
  pointer-events: none;
}

/* Depoimentos - botão abre popup (sem capa de fundo) */
.depoimentos-cover-wrap {
  position: relative;
  max-width: 400px;
  margin: 24px auto 0;
  border-radius: 16px;
  overflow: hidden;
}

.depoimentos-trigger {
  width: 100%;
  padding: 24px 40px;
  background: linear-gradient(135deg, #f0d078 0%, var(--gold) 50%, #e8c77a 100%);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.3s;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 8px 35px rgba(212, 168, 85, 0.6), 0 0 40px rgba(212, 168, 85, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: depoimentos-btn-glow 2.5s ease-in-out infinite;
}

@keyframes depoimentos-btn-glow {
  0%, 100% { box-shadow: 0 8px 35px rgba(212, 168, 85, 0.6), 0 0 40px rgba(212, 168, 85, 0.2); }
  50% { box-shadow: 0 10px 45px rgba(212, 168, 85, 0.8), 0 0 60px rgba(212, 168, 85, 0.35); }
}

.depoimentos-trigger:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 50px rgba(212, 168, 85, 0.7), 0 0 70px rgba(212, 168, 85, 0.4);
}

/* Popup vídeos - carousel 1 por vez */
.videos-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.videos-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.videos-popup {
  background: #0a0a0a;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  padding: 50px 16px 24px;
  position: relative;
  border: 2px solid rgba(212, 168, 85, 0.3);
}

.videos-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.videos-popup-title {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.videos-carousel {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.videos-arrow {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(212, 168, 85, 0.3);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.videos-arrow:hover {
  background: var(--gold);
  color: #000;
}

.videos-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

.videos-track {
  display: flex;
  transition: transform 0.3s ease;
}

.videos-slide {
  width: 100%;
  min-width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #000;
}

.videos-slide iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.videos-hint {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(212, 168, 85, 0.4);
}

/* ========================================
   PRINTS SECTION
======================================== */
.prints-section {
  background: var(--bg-darker);
  text-align: center;
}

.prints-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prints-btn-open {
  display: inline-block;
  padding: 18px 44px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #b91c1c 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5);
  animation: btn-pulse-red 2s ease-in-out infinite;
}

.prints-btn-open:hover {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 50%, #dc2626 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6), 0 0 40px rgba(239, 68, 68, 0.3);
}

@keyframes btn-pulse-red {
  0%, 100% { box-shadow: 0 4px 20px rgba(220, 38, 38, 0.5); opacity: 1; }
  50% { box-shadow: 0 4px 35px rgba(220, 38, 38, 0.8), 0 0 25px rgba(239, 68, 68, 0.4); }
}

.prints-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.prints-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.prints-popup {
  background: var(--bg-card);
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  padding: 24px 20px 28px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}

.prints-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s;
}

.prints-popup-close:hover {
  background: var(--gold);
  color: #000;
}

.prints-popup-title {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
  text-align: center;
}

.prints-carousel {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.carousel-track-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
  min-width: 0;
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.35s ease-out;
  width: 1600%;
}

.carousel-slide {
  flex: 0 0 6.25%;
  min-width: 6.25%;
  box-sizing: border-box;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 65vh;
  object-fit: contain;
  display: block;
}

.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 85, 0.2);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.carousel-arrow:hover {
  background: var(--gold);
  color: #000;
}

.carousel-next {
  animation: arrow-pulse 1.5s ease-in-out infinite;
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 168, 85, 0.4); }
  50% { opacity: 0.9; transform: scale(1.08); box-shadow: 0 0 20px 4px rgba(212, 168, 85, 0.3); }
}

.carousel-hint {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  .prints-popup {
    max-width: 100%;
    margin: 10px;
    padding: 20px 14px 24px;
  }
  .prints-carousel {
    gap: 8px;
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
  .carousel-slide img {
    max-height: 55vh;
  }
}

@media (max-width: 480px) {
  .prints-popup-overlay {
    padding: 10px;
  }
  .prints-popup {
    padding: 18px 10px 20px;
  }
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  .carousel-slide img {
    max-height: 50vh;
  }
}

.testimonials-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.testimonial-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  background: var(--bg-card);
  aspect-ratio: 9/16;
}

.testimonial-item::after {
  content: '🔍';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition-normal);
  z-index: 2;
}

.testimonial-item:hover::after {
  opacity: 1;
  transform: scale(1);
}

.testimonial-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 168, 85, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition-normal);
  background: var(--bg-card);
}

.testimonial-item:hover img {
  transform: scale(1.03);
}

@media (max-width: 1024px) {
  .testimonials-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testimonials-videos {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   VIDEOS SECTION
======================================== */
.videos-section {
  background: var(--bg-darker);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.video-item {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-normal);
  position: relative;
}

.video-item::before {
  content: '▶';
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  padding-left: 4px;
  z-index: 2;
  pointer-events: none;
  transition: var(--transition-normal);
}

.video-item:hover::before {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-item:hover {
  border-color: rgba(212, 168, 85, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-item video {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  display: block;
  background: #0a0a0a;
}

.video-item.playing::before {
  opacity: 0;
  pointer-events: none;
}

/* Vimeo Embed - Trampos */
.video-item.vimeo {
  position: relative;
}

.video-item.vimeo::before {
  display: none;
}

.video-item.vimeo iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
  border-radius: 12px 12px 0 0;
  display: block;
}

.video-title {
  padding: 14px 16px;
  margin: 0;
  font-size: 13px;
  color: var(--gold);
  text-align: center;
  font-weight: 500;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-placeholder:hover {
  border-color: var(--gold);
  background: var(--bg-card-hover);
}

.play-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-gold);
  color: #000;
  font-size: 24px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.video-placeholder p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ========================================
   DISCLAIMER SECTION
======================================== */
.disclaimer-section {
  padding: 60px 0;
  background: var(--bg-dark);
}

.disclaimer-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.disclaimer-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
}

.disclaimer-box h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.disclaimer-box p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

/* ========================================
   OFFER / CHECKOUT SECTION
======================================== */
.offer-section {
  background: 
    radial-gradient(ellipse at center top, rgba(212, 168, 85, 0.08) 0%, transparent 50%),
    var(--bg-darker);
  text-align: center;
  padding: 100px 0;
}

.offer-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid rgba(212, 168, 85, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.offer-badge {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 38px);
  margin-bottom: 35px;
  letter-spacing: 1px;
}

.offer-pricing {
  margin-bottom: 35px;
}

.price-original {
  margin-bottom: 10px;
}

.price-original .label {
  color: var(--text-muted);
  font-size: 14px;
  margin-right: 8px;
}

.old-price {
  color: var(--text-muted);
  font-size: 24px;
  text-decoration: line-through;
}

.price-promo {
  margin-bottom: 15px;
}

.price-promo .label {
  color: var(--text-secondary);
  font-size: 16px;
  display: block;
  margin-bottom: 5px;
}

.new-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  color: var(--gold);
}

.new-price .currency {
  font-size: 28px;
  font-weight: 600;
  margin-top: 8px;
}

.new-price .value {
  font-family: var(--font-heading);
  font-size: 80px;
  line-height: 1;
}

.new-price .cents {
  font-size: 28px;
  font-weight: 600;
  margin-top: 8px;
}

.savings {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.offer-includes {
  text-align: left;
  margin-bottom: 35px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.offer-includes h4 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 15px;
}

.offer-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.offer-includes li {
  font-size: 14px;
  color: var(--text-secondary);
}

.offer-btn {
  width: 100%;
  justify-content: center;
  padding: 20px 40px;
  font-size: 18px;
}

.offer-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  padding: 15px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.urgency-icon {
  font-size: 20px;
}

.offer-urgency p {
  margin: 0;
  font-size: 14px;
  color: #ef4444;
}

.offer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.guarantee-icon {
  font-size: 16px;
}

.offer-guarantee p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 600px) {
  .offer-box {
    padding: 35px 25px;
  }
  
  .offer-includes ul {
    grid-template-columns: 1fr;
  }
  
  .new-price .value {
    font-size: 60px;
  }
}

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--bg-darker);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 32px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 3px;
}

.footer-text {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-year {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

/* ========================================
   LIGHTBOX - Com Efeitos
======================================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: scale(0.8) translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-img {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* ========================================
   RESPONSIVE - DESKTOP (1200px+)
======================================== */
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  
  .testimonials-videos {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   RESPONSIVE - TABLET (1024px)
======================================== */
@media (max-width: 1024px) {
  .steps-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .step-card:nth-child(3)::after {
    display: none;
  }
  
  .bonus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-videos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE - MOBILE (768px)
======================================== */
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: clamp(28px, 6vw, 42px);
  }
  
  .section-desc {
    font-size: 16px;
  }
  
  .about-content,
  .card-content,
  .target-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-text .lead {
    font-size: 17px;
  }
  
  .steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
  }
  
  .step-card::after {
    display: none;
  }
  
  .step-card {
    padding: 20px 15px;
  }
  
  .step-number {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  
  .bonus-grid,
  .bonus-4-cols {
    grid-template-columns: 1fr;
  }
  
  .live-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .live-card {
    padding: 30px 20px;
  }
  
  .testimonials-videos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .testimonials-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .testimonial-item {
    aspect-ratio: 9/14;
    border-radius: 10px;
  }
  
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .cta-btn {
    padding: 16px 30px;
    font-size: 15px;
  }
  
  .cta-btn.big {
    padding: 18px 35px;
    font-size: 16px;
  }
  
  .card-3d {
    width: 280px;
    height: 170px;
  }
  
  .cta-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .target-card {
    padding: 30px;
  }
  
  .target-card h3 {
    font-size: 18px;
  }
  
  .target-card li {
    font-size: 14px;
    padding: 10px 0;
  }
  
  .offer-box {
    padding: 35px 25px;
    margin: 0 15px;
  }
  
  .offer-includes ul,
  .includes-grid {
    grid-template-columns: 1fr;
  }
  
  .new-price .value,
  .epic-new-price .value {
    font-size: 60px;
  }
  
  .disclaimer-box {
    padding: 30px 20px;
  }
  
  .progress-item {
    padding: 20px;
  }
  
  .scroll-indicator {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 15px;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
======================================== */
@media (max-width: 480px) {
  .hero {
    padding: 0;
  }
  
  .hero-bg {
    width: 100%;
  }
  
  .hero-capa {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-badge {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .section-title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .section-desc {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .about-text .lead {
    font-size: 16px;
  }
  
  .about-text-destacado .historia {
    font-size: 15px;
    padding: 12px 15px;
  }
  
  .highlight-box.oportunidade {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-box.oportunidade p {
    font-size: 17px;
  }
  
  .oportunidade-icon {
    width: 50px;
    height: 50px;
  }
  
  .epic-card {
    padding: 25px 20px;
  }
  
  .feature-icon-img {
    width: 60px;
    height: 60px;
  }
  
  .epic-title {
    font-size: 22px;
  }
  
  .steps-timeline {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .step-card {
    padding: 25px 20px;
  }
  
  .step-title-epic {
    font-size: 18px;
  }
  
  .testimonials-videos {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .testimonial-video.vimeo {
    aspect-ratio: 9/16;
  }
  
  .testimonials-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .testimonial-item {
    aspect-ratio: 9/14;
    border-radius: 8px;
  }
  
  .testimonial-item::after {
    width: 26px;
    height: 26px;
    font-size: 11px;
    top: 5px;
    right: 5px;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .video-item.vimeo iframe {
    aspect-ratio: 9/16;
  }
  
  .check-item,
  .epic-check {
    padding: 18px;
    gap: 15px;
  }
  
  .check-content h4 {
    font-size: 17px;
  }
  
  .check-content p {
    font-size: 14px;
  }
  
  .live-card {
    padding: 25px 18px;
  }
  
  .live-title-epic {
    font-size: 20px;
  }
  
  .live-desc-highlight {
    font-size: 14px;
  }
  
  .bonus-card,
  .epic-bonus {
    padding: 22px;
  }
  
  .bonus-title-epic {
    font-size: 17px;
  }
  
  .bonus-desc-highlight {
    font-size: 14px;
  }
  
  .target-card {
    padding: 25px 20px;
  }
  
  .target-card h3 {
    font-size: 16px;
    margin-bottom: 18px;
  }
  
  .target-card li {
    font-size: 14px;
    gap: 12px;
    padding: 10px 0;
  }
  
  .offer-box {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .offer-badge,
  .epic-offer-badge {
    font-size: 12px;
    padding: 10px 20px;
  }
  
  .offer-title,
  .epic-offer-title {
    font-size: 24px;
  }
  
  .new-price .value,
  .epic-new-price .value {
    font-size: 55px;
  }
  
  .new-price .currency,
  .new-price .cents {
    font-size: 22px;
  }
  
  .savings,
  .epic-savings {
    font-size: 13px;
    padding: 10px 0;
  }
  
  .epic-includes {
    padding: 20px 18px;
  }
  
  .includes-title {
    font-size: 18px;
  }
  
  .include-item {
    font-size: 14px;
    gap: 10px;
  }
  
  .include-check {
    width: 20px;
    height: 20px;
  }
  
  .include-check::after {
    font-size: 11px;
  }
  
  .offer-btn,
  .epic-cta {
    padding: 18px 30px;
    font-size: 16px;
  }
  
  .offer-urgency,
  .epic-urgency {
    padding: 12px;
  }
  
  .offer-urgency p,
  .epic-urgency p {
    font-size: 13px;
  }
  
  .progress-item {
    padding: 18px;
    gap: 15px;
  }
  
  .progress-item h4 {
    font-size: 15px;
  }
  
  .progress-item p {
    font-size: 14px;
  }
  
  .disclaimer-box {
    padding: 25px 18px;
  }
  
  .disclaimer-icon {
    font-size: 32px;
  }
  
  .disclaimer-box h4 {
    font-size: 14px;
  }
  
  .disclaimer-box p {
    font-size: 13px;
  }
  
  .footer {
    padding: 40px 0;
  }
  
  .logo-text {
    font-size: 26px;
  }
  
  .footer-text {
    font-size: 13px;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    top: 15px;
    right: 15px;
  }
  
  .scroll-indicator {
    width: 45px;
    height: 45px;
    font-size: 20px;
    bottom: 10px;
  }
}

/* ========================================
   EPIC FEATURES - SEÇÃO SOBRE (SEM EMOJIS)
======================================== */
.epic-features {
  display: grid;
  gap: 25px;
}

.epic-card {
  padding: 35px 30px;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.8) 100%);
  border-radius: 20px;
  border: 2px solid rgba(212, 168, 85, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.epic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.epic-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(212, 168, 85, 0.15);
}

.epic-card:hover::before {
  opacity: 1;
}

.feature-icon-img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 8px 20px rgba(212, 168, 85, 0.3));
  transition: all 0.4s ease;
}

.epic-card:hover .feature-icon-img img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 12px 30px rgba(212, 168, 85, 0.5));
}

.epic-title {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(212, 168, 85, 0.2);
}

.epic-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Mobile Responsive para Epic Features */
@media (max-width: 768px) {
  .epic-card {
    padding: 28px 24px;
  }
  
  .feature-icon-img {
    width: 70px;
    height: 70px;
  }
  
  .epic-title {
    font-size: 24px;
  }
}

/* ========================================
   EPIC BADGES E TÍTULOS DESTACADOS
======================================== */
.epic-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 13px;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(212, 168, 85, 0.3);
}

.epic-section-title {
  font-size: clamp(36px, 6vw, 58px);
  text-shadow: 0 2px 20px rgba(212, 168, 85, 0.2);
}

/* ========================================
   COMO FUNCIONA - EPIC VERSION
======================================== */
.epic-checklist {
  gap: 18px;
}

.epic-check {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 30px;
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.9) 100%);
  border-radius: 16px;
  border: 1px solid rgba(212, 168, 85, 0.1);
  transition: all 0.4s ease;
}

.epic-check:hover {
  border-color: var(--gold);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.check-icon-epic {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  margin-top: 4px;
}

.check-icon-epic::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 800;
  font-size: 14px;
}

.check-content h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.check-content p {
  font-size: 16px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

/* ========================================
   PASSO A PASSO - EPIC VERSION
======================================== */
.epic-timeline {
  gap: 16px;
}

.epic-step {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(212, 168, 85, 0.15);
  padding: 35px 20px;
}

.epic-step:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.step-title-epic {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step-desc-epic {
  font-size: 15px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

.epic-note {
  font-size: 16px;
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

/* ========================================
   ACOMPANHAMENTO - EPIC VERSION
======================================== */
.epic-desc {
  font-size: 20px;
  color: var(--text-secondary);
}

.epic-live-grid {
  gap: 20px;
}

.epic-live-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 2px solid rgba(255, 255, 255, 0.05);
  padding: 35px 25px;
  text-align: center;
  position: relative;
}

.epic-live-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.epic-live-card.featured-card {
  background: linear-gradient(145deg, rgba(212, 168, 85, 0.15) 0%, rgba(212, 168, 85, 0.05) 100%);
  border: 2px solid var(--gold);
  grid-column: span 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 168, 85, 0.1);
}

.epic-live-card.featured-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 85, 0.2);
}

.live-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
}

.live-title-epic {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.live-desc-epic {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

.live-desc-highlight {
  font-size: 16px;
  color: var(--gold-light);
  margin: 0;
  font-weight: 500;
}

.epic-highlight {
  background: linear-gradient(135deg, rgba(212, 168, 85, 0.15) 0%, rgba(212, 168, 85, 0.05) 100%);
  border: 1px solid rgba(212, 168, 85, 0.3);
  padding: 30px;
  border-radius: 16px;
}

.epic-highlight p {
  font-size: 20px;
  margin: 0;
}

/* ========================================
   BÔNUS - EPIC VERSION
======================================== */
.epic-bonus-grid {
  gap: 18px;
}

.epic-bonus {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(20, 20, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.epic-bonus:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.epic-bonus .bonus-number {
  font-size: 48px;
  color: rgba(212, 168, 85, 0.2);
  margin-bottom: 15px;
}

.bonus-title-epic {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.epic-bonus p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bonus-desc-highlight {
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 500;
  line-height: 1.6;
}

.bonus-4-cols {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .bonus-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bonus-4-cols {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   OFERTA - EPIC VERSION
======================================== */
.epic-offer {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(15, 15, 15, 0.95) 100%);
  border: 2px solid var(--gold);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 50px rgba(212, 168, 85, 0.1);
}

.epic-offer-badge {
  background: #facc15;
  color: #000;
  font-weight: 800;
  padding: 14px 30px;
  font-size: 15px;
  letter-spacing: 2px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
  animation: badge-oscilar 2s ease-in-out infinite;
}
@keyframes badge-oscilar {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.epic-offer-title {
  font-size: clamp(32px, 5vw, 46px);
  text-shadow: 0 2px 20px rgba(212, 168, 85, 0.3);
}

.epic-pricing {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.epic-label {
  color: var(--gold-light);
  font-weight: 600;
}

.epic-new-price {
  text-shadow: 0 0 30px rgba(212, 168, 85, 0.5);
}

.epic-new-price .value {
  font-size: 90px;
}

.epic-savings {
  background: none;
  color: #22c55e;
  font-weight: 800;
  padding: 12px 0;
  font-size: 15px;
}

.epic-includes {
  background: linear-gradient(145deg, rgba(212, 168, 85, 0.08) 0%, rgba(212, 168, 85, 0.02) 100%);
  border: 1px solid rgba(212, 168, 85, 0.2);
  padding: 30px;
  border-radius: 16px;
}

.includes-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-align: center;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.include-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.include-check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.include-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-weight: 800;
  font-size: 12px;
}

.epic-cta {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  font-size: 20px;
  padding: 22px 50px;
  box-shadow: 0 10px 40px rgba(212, 168, 85, 0.4);
  animation: badge-oscilar 2s ease-in-out infinite;
}

.epic-cta:hover {
  box-shadow: 0 15px 50px rgba(212, 168, 85, 0.5);
}

.epic-urgency {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.epic-urgency p {
  font-size: 15px;
}

.epic-guarantee {
  margin-top: 15px;
}

.epic-guarantee p {
  font-size: 14px;
  color: var(--gold-light);
  font-weight: 500;
}

@media (max-width: 600px) {
  .includes-grid {
    grid-template-columns: 1fr;
  }
  
  .epic-new-price .value {
    font-size: 70px;
  }
}

/* Offer section - responsivo completo */
@media (max-width: 768px) {
  .epic-offer { padding: 35px 20px; }
  .epic-pricing { padding: 20px 16px; }
  .epic-includes { padding: 22px 16px; }
}

@media (max-width: 480px) {
  .epic-offer { padding: 28px 16px; }
  .epic-offer-title { font-size: 22px; }
  .epic-pricing { padding: 18px 14px; margin-bottom: 24px; }
  .epic-new-price .value { font-size: 60px; }
  .epic-includes { padding: 18px 14px; }
  .includes-title { font-size: 18px; }
  .include-item { font-size: 14px; }
  .epic-cta { padding: 18px 24px; font-size: 16px; }
}

.featured-bonus {
  background: linear-gradient(145deg, rgba(212, 168, 85, 0.12) 0%, rgba(212, 168, 85, 0.04) 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 168, 85, 0.1);
}

.featured-bonus:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 85, 0.2);
}

.featured-bonus .bonus-number {
  color: var(--gold);
}

/* Responsive para seções épicas */
@media (max-width: 768px) {
  .epic-check {
    padding: 22px;
  }
  
  .check-content h4 {
    font-size: 18px;
  }
  
  .live-title-epic {
    font-size: 22px;
  }
  
  .live-value {
    font-size: 28px;
  }
  
  .bonus-title-epic {
    font-size: 18px;
  }
}

/* ========================================
   NOVAS SEÇÕES - Página Validada
======================================== */

/* CTA Imediato */
.cta-imediato-section { padding: 40px 20px; position: relative; z-index: 1; }
.cta-imediato-box {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 2px solid rgba(212, 168, 85, 0.3);
  border-radius: 24px;
  padding: 35px 30px;
  text-align: center;
}
.cta-imediato-badge {
  display: inline-block;
  background: linear-gradient(90deg, #8B0000, #B22222);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cta-imediato-preco { margin-bottom: 25px; }
.cta-preco-de { display: block; color: #666; text-decoration: line-through; font-size: 16px; margin-bottom: 5px; }
.cta-preco-por { display: block; font-family: var(--font-heading); font-size: 48px; color: var(--gold); letter-spacing: 2px; }
.cta-economia { display: block; color: #22c55e; font-size: 14px; font-weight: 600; margin-top: 8px; }
.cta-imediato-btn { width: 100%; justify-content: center; margin-bottom: 20px; }
.cta-imediato-trust { display: flex; justify-content: center; gap: 20px; font-size: 12px; color: #666; }

/* Objeções */
.objecoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.objecao-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 168, 85, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.objecao-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.objecao-icon { font-size: 32px; display: block; margin-bottom: 12px; }
.objecao-card h4 { font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.objecao-card p { font-size: 14px; color: var(--text-secondary); }

/* Ancoragem Suprema */
.ancoragem-box {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 2px solid var(--gold);
  border-radius: 24px;
  padding: 35px 30px;
}
.ancoragem-badge { font-size: 12px; color: var(--gold); font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
.ancoragem-title { font-family: var(--font-heading); font-size: 32px; text-align: center; margin-bottom: 25px; }
.ancoragem-valores { margin-bottom: 20px; }
.ancoragem-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 12px;
  flex-wrap: wrap;
}
.ancoragem-item.destaque { color: var(--gold); }
.ancoragem-valor { font-weight: 700; color: var(--gold); }
.ancoragem-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 18px; font-weight: 700;
}
.ancoragem-total-valor { font-size: 28px; color: #22c55e; }
.ancoragem-cta {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  background: #facc15 !important;
  color: #000 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4) !important;
}
.ancoragem-cta:hover {
  background: #fde047 !important;
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.4) !important;
}

/* Garantia */
.garantia-box {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
}
.garantia-icon { font-size: 48px; display: block; margin-bottom: 15px; }
.garantia-box h3 { font-size: 24px; margin-bottom: 10px; }
.garantia-box p { color: var(--text-secondary); font-size: 16px; }

/* Garantia - Parte final (estilo da imagem) */
.garantia-final { padding: 50px 20px 60px; }
.garantia-box-final {
  background: #1a251e;
  border: 2px solid #32cd32;
  padding: 40px 35px;
}
.garantia-box-final h3 { color: #fff; font-size: 26px; }
.garantia-box-final p { color: #fff; font-size: 16px; opacity: 0.95; }

/* FAQ - Apenas um botão */
.faq-section { padding: 40px 20px; text-align: center; }
.faq-btn-only {
  display: inline-block;
  padding: 20px 48px;
  background: #facc15;
  color: #000;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s ease;
}
.faq-btn-only:hover {
  background: #fde047;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(250, 204, 21, 0.4);
}

/* FAQ Popup Overlay - só aparece ao clicar */
.faq-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease, pointer-events 0.3s;
}
.faq-popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.faq-popup {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 85vh;
  background: #141414;
  border: 2px solid rgba(212, 168, 85, 0.4);
  border-radius: 20px;
  padding: 32px 28px 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.05);
}
.faq-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.faq-popup-close:hover {
  background: rgba(212, 168, 85, 0.3);
  color: var(--gold);
}
.faq-popup-badge {
  display: inline-block;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: #000;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.faq-popup-title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.faq-popup-content {
  overflow-y: auto;
  flex: 1;
  padding-right: 8px;
}
.faq-popup-content::-webkit-scrollbar { width: 6px; }
.faq-popup-content::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; }
.faq-popup-content::-webkit-scrollbar-thumb { background: rgba(212, 168, 85, 0.4); border-radius: 3px; }
.faq-popup-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-popup-item:last-child { border-bottom: none; }
.faq-popup-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-popup-item p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Legacy FAQ (mantido para compatibilidade) */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.faq-item h4 { font-size: 16px; color: var(--gold); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Bonus CTA */
.bonus-cta-wrap { text-align: center; margin-top: 30px; }

/* Grid depoimentos - 1 grid, sem duplicação */
.depoimentos-grid,
.feedback-videos { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; align-items: start; overflow: visible; }

.feedback-videos .testimonial-video { aspect-ratio: 9/16; width: 100%; max-width: 100%; border-radius: 12px; overflow: hidden; background: #000; cursor: pointer; -webkit-tap-highlight-color: transparent; flex-shrink: 0; }
.feedback-videos .testimonial-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.bonus-list-vertical .bonus-grid { grid-template-columns: 1fr; }

@media (max-width: 768px) {
  .cta-imediato-box { padding: 28px 20px; }
  .cta-preco-por { font-size: 40px; }
  .cta-imediato-trust { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .ancoragem-box { padding: 28px 20px; }
  .ancoragem-title { font-size: 26px; }
  .ancoragem-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .ancoragem-total { flex-direction: column; align-items: flex-start; gap: 8px; }
  .ancoragem-total-valor { font-size: 24px; }
  .prints-section .section-desc { font-size: 16px; margin-bottom: 20px; }
  .prints-btn-open { width: 100%; max-width: 320px; padding: 16px 32px; font-size: 16px; }
  .feedback-videos { grid-template-columns: 1fr; gap: 16px; }
  .feedback-videos .testimonial-video { min-height: 280px; }
  .bonus-list-vertical .bonus-card { padding: 22px 18px; }
  .bonus-list-vertical .bonus-title-epic { font-size: 18px; }
  .bonus-list-vertical .bonus-desc-highlight { font-size: 14px; }
  .offer-section { padding: 60px 0; }
  .faq-popup { max-height: 85vh; padding: 28px 20px 32px; }
  .faq-btn-only { width: 100%; max-width: 320px; }
  .garantia-box-final { padding: 30px 20px; }
  .garantia-box-final h3 { font-size: 22px; }
  .garantia-box-final p { font-size: 15px; }
}

/* Tablet: 2 colunas vídeos */
@media (min-width: 769px) and (max-width: 1024px) {
  .feedback-videos { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .bonus-list-vertical .bonus-grid { grid-template-columns: 1fr; }
}

/* Desktop: 3-4 colunas vídeos */
@media (min-width: 1025px) {
  .feedback-videos { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  .cta-imediato-section { padding: 30px 15px; }
  .cta-imediato-box { padding: 24px 16px; max-width: 100%; }
  .cta-preco-por { font-size: 36px; }
  .cta-imediato-btn { padding: 16px 24px; font-size: 15px; }
  .ancoragem-box { padding: 24px 16px; }
  .ancoragem-title { font-size: 22px; }
  .ancoragem-valor { font-size: 14px; }
  .ancoragem-total-valor { font-size: 22px; }
  .prints-section .container { padding: 0 15px; }
  .prints-btn-open { font-size: 15px; padding: 14px 28px; }
  .feedback-videos .testimonial-video { min-height: 240px; }
  .depoimentos-cover-wrap { max-width: 100%; margin: 20px 0 0; }
  .depoimentos-trigger { font-size: 16px; }
  .videos-popup { padding: 45px 12px 20px; max-width: 100%; }
  .videos-arrow { width: 40px; height: 40px; min-width: 40px; font-size: 24px; }
  .offer-section { padding: 50px 0; }
  .faq-popup { padding: 24px 16px 28px; }
  .faq-popup-title { font-size: 24px; }
  .garantia-box-final { padding: 24px 16px; }
}