/* Hero Section */
.hero-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px 0;
  background:
    radial-gradient(1100px 520px at 50% -10%, rgba(255, 0, 204, 0.20), rgba(255, 0, 204, 0) 60%),
    radial-gradient(800px 420px at 88% 110%, rgba(0, 191, 255, 0.14), rgba(0, 191, 255, 0) 60%),
    linear-gradient(135deg, #07070a 0%, #10001e 60%, #000000 100%);
}

.logo-wrapper { 
  text-align: center; 
  margin-bottom: 5px; 
  margin-top: 0; 
}

.logo {
  max-width: 150px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 0, 204, 0.5));
}

.hero-title {
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  color: var(--muted);
}

.video-wrapper {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 0, 204, 0.3);
  border: 2px solid transparent;
  background: linear-gradient(45deg, var(--grad-1), var(--grad-2), var(--grad-3));
  background-clip: padding-box;
}

/* Match CTA width to player width */
.hero-container .cta-button {
  width: 100%;
  max-width: 350px; /* same as .video-container on desktop */
}

.video-container iframe {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 18px;
  background: #000;
}

.video-cta {
  text-align: center;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
  font-size: clamp(12px, 2.6vw, 16px);
  white-space: nowrap;
}

/* Results Section */
.results-container {
  padding: 80px 0;
  background: #1a1a1a;
}

/* Transformation Section */
.transformation-container {
  padding: 80px 0;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(0, 220, 255, 0.16), rgba(0, 220, 255, 0) 60%),
    radial-gradient(900px 420px at 90% 100%, rgba(0, 255, 170, 0.10), rgba(0, 255, 170, 0) 60%),
    linear-gradient(180deg, #000000 0%, #00141b 50%, #000000 100%);
}

.feature-image-wrapper {
  text-align: center;
  margin: 40px 0;
  overflow: hidden;
  border-radius: 20px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.feature-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 20px 50px rgba(255, 0, 204, 0.35));
  transform: translateZ(0) scale(1) rotateX(0deg) rotateY(0deg);
  transform-origin: center center;
  transition: transform 800ms cubic-bezier(.22, .61, .36, 1), filter 600ms ease;
  will-change: transform;
  display: block;
  margin: 0 auto;
}

.feature-image:hover {
  transform: translateZ(0) scale(1.04);
  filter: drop-shadow(0 24px 70px rgba(255, 0, 204, 0.45));
}

.feature-image.is-tilting {
  transition: transform 420ms cubic-bezier(.22, .61, .36, 1), filter 500ms ease;
}

.feature-image.is-settling {
  transition: transform 900ms cubic-bezier(.19, 1, .22, 1), filter 600ms ease;
}

.transformation-description {
  font-size: clamp(16px, 3.5vw, 20px);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

/* Method Section */
.method-container {
  padding: 80px 0;
  background:
    radial-gradient(900px 420px at 0% 20%, rgba(0, 255, 163, 0.20), rgba(0, 255, 163, 0) 60%),
    radial-gradient(900px 420px at 100% 80%, rgba(0, 255, 204, 0.12), rgba(0, 255, 204, 0) 60%),
    linear-gradient(180deg, #000010 0%, #001a14 50%, #000010 100%);
}

/* New: single method graphic replacing carousel */
.method-graphic-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 10px auto;
  padding: 10px;
  /* Add a subtle mask so zoomed edges feel contained without hard clipping */
  -webkit-mask-image: radial-gradient(150% 150% at 50% 50%, #000 80%, transparent 100%);
          mask-image: radial-gradient(150% 150% at 50% 50%, #000 80%, transparent 100%);
}

.method-graphic-image {
  width: 100%;
  max-width: 680px; /* optimized for 1079x1643 portrait */
  height: auto;
  display: block;
  border-radius: 18px;
  background: transparent; /* image has transparent background */
  filter: drop-shadow(0 18px 48px rgba(170, 0, 255, 0.35));
  transition: filter 0.25s ease;
  will-change: transform, filter;
  transform-origin: 50% 50%;
}

/* Enable desktop affordance only on hover-capable, fine-pointer devices */
@media (hover: hover) and (pointer: fine) {
  /* Keep the default arrow cursor even while the zoom effect is active */
  .method-graphic-image { cursor: default; }
  /* Keep only visual glow change on hover; transform is handled via JS for smooth zoom-at-cursor */
  .method-graphic-image:hover {
    filter: drop-shadow(0 22px 66px rgba(170, 0, 255, 0.5));
  }
}

/* Desktop: show the image at its original size (1079px width) */
@media (min-width: 1024px) {
  .method-graphic-wrapper {
    overflow: visible;
  }
  .method-graphic-image {
    width: auto;        /* use intrinsic image width */
    max-width: none;    /* remove cap so it displays at original size */
  }
}

@media (max-width: 768px) {
  /* Full-bleed wrapper so the mobile image occupies 100% of the device width */
  .method-graphic-wrapper {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0; /* remove inner padding to truly reach edges */
    -webkit-mask-image: none;
            mask-image: none; /* avoid clipping on full-bleed */
  }

  .method-graphic-image {
    width: 100%;
    max-width: none; /* allow full viewport width */
    height: auto;    /* preserve original aspect ratio (no distortion) */
    border-radius: 0; /* seamless edge-to-edge */
    filter: drop-shadow(0 14px 36px rgba(170, 0, 255, 0.0)); /* remove outer glow on full-bleed */
    cursor: default; /* no hover zoom on touch-oriented viewports */
  }
}

@media (max-width: 480px) {
  .method-graphic-wrapper {
    margin-top: 10px;
  }
  .method-graphic-image {
    border-radius: 0;
  }
}

.bonus-title {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin: 60px 0 40px 0;
  letter-spacing: -1px;
}

.bonus-image-wrapper { 
  text-align: center; 
  margin-top: 40px; 
}

.bonus-image {
  max-width: 280px; /* reduced from 400px for a smaller display on desktop */
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 15px 45px rgba(170, 0, 255, 0.4));
}

/* Novo: estilo da chamada de preço do bônus */
.bonus-price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 0;
}

.bonus-price .striked-price {
  font-size: clamp(18px, 3.8vw, 24px);
  color: #bdbdbd;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #ffffff;
  font-weight: 800;
}

.bonus-price .bonus-sep {
  color: #9aa0a6;
  font-weight: 700;
  opacity: 0.8;
}

.bonus-price .bonus-free {
  font-size: clamp(20px, 4.5vw, 28px);
  font-weight: 900;
  letter-spacing: 0.3px;
  text-shadow: 0 6px 20px rgba(0, 191, 255, 0.25);
}

@media (max-width: 768px) {
  .bonus-image {
    max-width: 220px; /* further reduce size on mobile */
  }
}

/* Pricing Section */
.pricing-container {
  padding: 80px 0;
  background:
    radial-gradient(950px 440px at 15% 15%, rgba(0, 145, 255, 0.20), rgba(0, 145, 255, 0) 60%),
    radial-gradient(900px 420px at 85% 85%, rgba(0, 255, 255, 0.12), rgba(0, 255, 255, 0) 60%),
    linear-gradient(180deg, #000010 0%, #00132a 50%, #000000 100%);
}

.pricing-image-wrapper { 
  text-align: center; 
  margin-bottom: 50px; 
}

/* New: headline between image and pricing card */
.pricing-headline {
  text-align: center;
  margin: -20px auto 26px auto; /* pulls it closer to the image, then space before price */
  line-height: 1.1;
}
.pricing-headline .line-top {
  display: block;
  font-weight: 900;
  font-size: clamp(18px, 4.2vw, 28px);
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.pricing-headline .line-bottom {
  display: block;
  font-weight: 900;
  font-size: clamp(22px, 5vw, 36px);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 6px;
  text-shadow: 0 6px 20px rgba(0, 191, 255, 0.18);
}

.pricing-image {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 15px 45px var(--shadow-pink));
}

/* Desktop only: significantly increase the pricing image size */
@media (min-width: 1024px) {
  .pricing-image {
    max-width: 900px;
  }
}

.cta-button-large { 
  margin: 0 auto 50px auto; 
}

/* Guarantee & FAQ Section */
.guarantee-container {
  padding: 80px 0 100px 0;
  background:
    radial-gradient(1000px 460px at 85% 0%, rgba(170, 0, 255, 0.22), rgba(170, 0, 255, 0) 60%),
    radial-gradient(900px 420px at 15% 100%, rgba(255, 0, 204, 0.18), rgba(255, 0, 204, 0) 60%),
    linear-gradient(180deg, #0a0014 0%, #160028 50%, #0a0014 100%);
}

.guarantee-image-wrapper { 
  text-align: center; 
  margin-bottom: 40px; 
}
.guarantee-seal {
  max-width: 300px; 
  width: 100%; 
  height: auto;
  filter: drop-shadow(0 15px 45px rgba(170, 0, 255, 0.35));
}
.guarantee-seals-wrapper { 
  text-align: center; 
}
.guarantee-seals {
  max-width: 240px; 
  width: 100%; 
  height: auto;
  filter: drop-shadow(0 10px 30px var(--shadow-cyan));
}

.guarantee-title {
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.guarantee-description {
  font-size: 18px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--muted);
  line-height: 1.8;
}

.cta-button-final { 
  margin: 0 auto 80px auto; 
  padding: 25px 40px; 
  font-size: clamp(18px, 4vw, 22px); 
}

.faq-container { 
  max-width: 800px; 
  margin: 0 auto; 
}
.faq-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover { 
  background: rgba(255, 0, 204, 0.1); 
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon { 
  transform: rotate(45deg); 
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer.active { 
  padding: 0 20px 20px 20px; 
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

/* Footer */
.footer-container {
  background: #000000;
  padding: 40px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0;
}

.footer-logo-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.6;
  filter: drop-shadow(0 0 15px rgba(255, 0, 204, 0.3));
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-link {
  color: #888;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ccc;
}

.footer-separator {
  color: #555;
  font-size: 14px;
}

.footer-copyright {
  text-align: center;
  margin-bottom: 20px;
}

.footer-copyright p {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

.footer-disclaimer {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-disclaimer p {
  color: #666;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px 0 25px 0;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .footer-separator {
    display: none;
  }
  
  .footer-copyright {
    margin-bottom: 15px;
  }
  
  .footer-copyright p {
    font-size: 13px;
  }
  
  .footer-disclaimer p {
    font-size: 11px;
    padding: 0 10px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .feature-image, .feature-image:hover {
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }
}