/* ========================================
   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;
}

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

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

/* ========================================
   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;
}

.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;
}

.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-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;
}

/* Vimeo Embed */
.testimonial-video.vimeo {
  aspect-ratio: 9/16;
  position: relative;
}

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

.testimonial-video.vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

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

.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 20px;
  }
  
  .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: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 800;
  padding: 14px 30px;
  font-size: 15px;
  letter-spacing: 2px;
  box-shadow: 0 5px 20px rgba(212, 168, 85, 0.4);
}

.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: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  font-weight: 800;
  padding: 12px 28px;
  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);
}

.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;
  }
}

.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;
  }
}

