:root {
  --bg-dark: #000000;
  --bg-gray-dark: #202020;
  --bg-light: #f5f5f5;
  --accent-green: #35d34c;
  --accent-green-dark: #1ea334;
  --accent-blue: #15b0ff;
  --accent-red: #ff3b3b;
  --accent-yellow: #ffb800;
  --accent-yellow2: #DAA520;
  --text-white: #ffffff;
  --text-gray: #acaaaa;
  --max-width: 1120px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.45);
  --transition-fast: 0.18s ease-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  background-color: var(--bg-dark);
}

.section {
  padding: 72px 20px;
}

.section.light {
  background-color: #ffffff;
  color: #222222;
}

.section.dark {
  background-color: var(--bg-dark);
}

.section-pade-img {
  margin: 0;
  padding: 0;
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: solid 2px blue; */
}

.section-pade-img img{
  /* border: solid 2px red ; */
  width: 70%;
  padding: 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-title {
  font-size: 2.2em;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2em;
  max-width: 720px;
  margin: 0 auto;
  color: var(--accent-yellow);
}

.section-subtitle2 {
  text-align: center;
  font-size: 1.2em;
  max-width: 720px;
  margin: 0 auto;
  margin-top: 10px;
  font-weight: bolder;
  color: yellow;
}

/* Header */

header {
  padding: 30px 0px 25px 0px;
  background-color: var(--bg-dark);
}


/* Conteúdo liberado após a VSL */
.locked-content {
  display: none;
}

.locked-content.is-visible {
  display: block;
  animation: fadeInConteudoExtra 0.5s ease-out;
}

@keyframes fadeInConteudoExtra {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Facade dos vídeos do Youtube (capa + botão de play) */
.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-facade::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  transition: background-color var(--transition-fast);
}

.yt-facade:hover::before {
  background-color: rgba(0, 0, 0, 0.3);
}

.yt-play-btn {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background-color: var(--accent-green);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.yt-play-btn:hover {
  background-color: var(--accent-green-dark);
  transform: scale(1.08);
}

.yt-play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent #ffffff;
}



.logo {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 1.5em;
  color: #ff3b3b;
}

/* HERO */

.hero {
  text-align: center;
  padding-bottom: 10px;
}

.hero-badge {
  font-weight: bolder;
  font-size: 18px;
  color: var(--accent-yellow);
  margin-top: 0px;
  margin-bottom: 26px;
}

.hero-title {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-gray);
}

.hero-list {
  margin-top: 30px;
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.hero-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  color: var(--text-gray);
}

.hero-list-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Botões */

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  background-color: var(--accent-green);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  margin-bottom: 18px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
  text-align: center;
}

.cta-primary:hover {
  background-color: var(--accent-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 1px solid var(--accent-green);
  color: var(--accent-green);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.cta-secondary:hover {
  background-color: var(--accent-green);
  color: var(--bg-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-wrapper {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* VSL */

.video-section {
  padding: 0;
  margin:40px;
}

.video-wrapper {
  max-width: 780px;
  padding: 0;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #000;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper-vturb {
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #000;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta-block {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-wide {
  width: 100%;
  max-width: 540px;
}

/* pagamentos e badges abaixo da VSL */

.payments {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-gray);
}

.payments2 {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-gray);
}

.payments img {
  width: 75%;
}

.payments2 img {
  width: 30%;
  margin-top: 10px;
}

.whats2{
  margin-top: 30px;
  margin-bottom: 30px;
}

.payment-pill {
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-badges {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
}

.benefit-badge {
  text-align: center;
  line-height: 1.3;
}

/* linha de benefícios genérica usada em outras seções */

.benefits-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  text-align: center;
  font-size: 12px;
  color: var(--text-gray);
}

.benefit-item strong {
  display: block;
  font-size: 13px;
  color: var(--text-white);
  margin-bottom: 4px;
}

/* Método PADE */

.pade-section {
  text-align: center;
  padding-top: 56px;
}

.pade-highlight {
  margin-top: 24px;
  font-size: 2em;
  font-weight: 800;
  color: var(--accent-red);
}

.pade-sub {
  margin-top: 6px;
  font-size: 1em;
  font-weight: bold;
  color: var(--text-gray);
}

.pade-steps {
  margin-top: 40px;
  display: grid;
  gap: 20px;
}

.pade-card {
  background-color: #191919;
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.pade-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #2b2b2b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.pade-content-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.pade-content-text {
  font-size: 13px;
  color: var(--text-gray);
}

/* Prova social */

.testimonials-section {
  padding-top: 56px;
}

.testimonials-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #111111;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  font-size: 12px;
  color: var(--text-gray);
  min-height: 180px;
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-white);
}

.testimonials-note {
  margin-top: 26px;
  font-size: 14px;
  color: var(--text-gray);
  text-align: center;
}

.testimonials-video {
  margin-top: 40px;
  max-width: 456px;
  margin-left: auto;
  margin-right: auto;
}

/* Esse curso é pra você se */

.fit-section {
  background-color: #ffffff;
  color: #222222;
}

.fit-text-top {
  text-align: center;
  font-size: 16px;
  color: #f27b00;
  margin: 0px 250px 24px 250px;
}

.fit-cards {
  max-width: 880px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  padding: 32px 26px;
  display: grid;
  gap: 18px;
}

.fit-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid #ffe1df;
  background: #fff7f7;
}

.fit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #ffe1df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.fit-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.fit-text {
  font-size: 13px;
  color: #555555;
}

.fit-bottom-note {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #f27b00;
}

.fit-bottom-note strong {
  display: block;
}

/* Tudo o que você recebe */

.bundle-section {
  background-color: var(--bg-dark);
}

.bundle-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.bundle-sub {
  text-align: center;
  font-size: 14px;
  color: var(--text-gray);
  max-width: 720px;
  margin: 0 auto;
}

.bundle-list-title {
  text-align: center;
  margin-top: 28px;
  font-weight: 600;
  font-size: 15px;
}

.bundle-cards {
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 18px;
}

.bundle-card {
  background-color: #0c1a24;
  border-radius: 20px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  color: #e8f6ff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.bundle-price {
  font-weight: 700;
  font-size: 22px;
  white-space: nowrap;
  text-decoration: line-through; /* Aplica o efeito de tachado */
  text-decoration-color: red;  /* Define a cor da linha como vermelha */
  text-decoration-thickness: 3px;  /* Define a espessura do tachado */
}

.bundle-info-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.bundle-info-list {
  list-style: none;
  font-size: 12px;
  color: #cde8ff;
}

.bundle-info-list li + li {
  margin-top: 2px;
}

.bundle-icon {
  font-size: 16px;
  font-weight: 700;
}

/* Oferta */

.offer-section {
  background-color: var(--bg-dark);
  text-align: center;
  padding-top: 56px;
}

.offer-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 26px;
}

.offer-original {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 14px;
}

.offer-original span {
  color: var(--accent-red);
  text-decoration: line-through;
  font-weight: 800;
  margin: 0 6px;
}

.offer-parcel {
  font-size: 58px;
  font-weight: 900;
  color: var(--accent-green);
  margin-bottom: 12px;
  line-height: 1.05;
}

.offer-parcel small {
  font-size: 28px;
  font-weight: 700;
  vertical-align: top;
  margin-right: 4px;
  color: var(--text-white);
}

.offer-vista {
  font-size: 24px;
  color: var(--text-white);
}

.offer-vista span {
  color: var(--accent-blue);
  font-weight: 800;
  margin-left: 6px;
}

.offer-cta-area {
  margin-top: 30px;
}

/* Garantia detalhada */

.guarantee-section {
  background-color: var(--bg-dark);
  padding-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.guarantee-content {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.guarantee-badge {
  order: -1;
  margin-bottom: 8px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  color: #3a2704;
  text-transform: uppercase;
}

.guarantee-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.guarantee-text {
  font-size: 16px;
  color: var(--text-white);
  line-height: 1.7;
  max-width: 560px;
}

.guarantee-steps {
  margin-top: 22px;
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.7;
  list-style: none;
  padding-left: 0;
  text-align: center;
}

.guarantee-steps li + li {
  margin-top: 6px;
}

.guarantee-highlight {
  margin-top: 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-white);
  max-width: 580px;
}

.guarantee-badge .badge-top {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.guarantee-badge .badge-middle {
  font-size: 26px;
  font-weight: 800;
  margin: 4px 0;
}

.guarantee-badge .badge-bottom {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.risk-text {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--text-white);
  line-height: 1.7;
}

.risk-text strong {
  display: block;
  margin-bottom: 6px;
}

/* Quem está por trás */

.about-section {
  background-color: #ffffff;
  color: #222222;
}

.about-grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1152dd;
}

.about-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.about-text {
  font-size: 14px;
  color: #555555;
}

.about-text p + p {
  margin-top: 10px;
}

.about-highlight {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1152dd;
  text-align: center;
}

.about-photo-card {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  background-color: #000;
  position: relative;
}

.about-photo-card img.main-photo {
  width: 100%;
  height: auto;
  display: block;
}

.about-ig-card {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 12px;
  background-color: #000000;
  border-radius: 22px;
  padding: 10px 14px;
  opacity: 0.96;
  color: var(--text-white);
  font-size: 11px;
}

.about-ig-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.about-ig-bio {
  font-size: 11px;
  color: var(--text-gray);
}

/* FAQ */

.faq-section {
  background-color: var(--bg-gray-dark);
  color: var(--text-white);
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.faq-item {
  border-radius: 10px;
  background-color: #f5f5f5;
  color: #222222;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
}

.faq-question-text {
  color: #222222;
}

.faq-toggle {
  font-weight: 700;
  color: #1c78ff;
  font-size: 20px;
  line-height: 1;
  margin-left: 10px;
  flex-shrink: 0;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease-out, padding-top 0.22s ease-out, padding-bottom 0.22s ease-out;
  font-size: 14px;
  color: #e53935;
}

.faq-answer-inner {
  padding-bottom: 14px;
}

.faq-item.open .faq-answer {
  max-height: 160px;
  padding-top: 4px;
  padding-bottom: 10px;
}

.faq-item.open .faq-question-text {
  color: #1c78ff;
  font-weight: 600;
}

.faq-item.open .faq-toggle {
  color: #1c78ff;
}

.faq-item.open .faq-toggle::before {
  content: "x";
}

.faq-item:not(.open) .faq-toggle::before {
  content: "+";
}

.faq-item .faq-toggle::before {
  display: inline-block;
}

/* Dúvida final */

.contact-section {
  background-color: var(--bg-gray-dark);
  color: var(--text-white);
  text-align: center;
  padding-top: 16px;
}

.contact-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-sub {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-cta-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* Rodapé */

footer {
  background-color: var(--bg-gray-dark);
  border-top: 1px solid #333333;
  padding: 18px 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-gray);
}

footer .brand {
  color: #ff3b3b;
  font-weight: 600;
  margin-right: 4px;
}

/* Responsivo */

@media (max-width: 960px) {

  .fit-text-top {
    margin: 0px 25px 24px 25px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-photo-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .bundle-price {
    font-size: 20px;
  }

  .bundle-icon {
    display: none;
  }
}

@media (max-width: 720px) {

  .fit-text-top {
    margin: 0px 25px 24px 25px;
  }

  .section {
    padding: 56px 18px;
  }

  .hero-title {
    font-size: 24px;
  }

  .bundle-title,
  .offer-title,
  .faq-title,
  .about-title {
    font-size: 30px;
  }

  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .fit-cards {
    padding: 22px 18px;
  }

  .fit-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-title {
    font-size: 22px;
  }

  .contact-sub {
    font-size: 20px;
  }

  .offer-title {
    font-size: 30px;
  }

  .offer-original {
    font-size: 18px;
  }

  .offer-parcel {
    font-size: 40px;
  }

  .offer-parcel small {
    font-size: 22px;
  }

  .offer-vista {
    font-size: 20px;
  }
  
  .section-pade-img img{
    /* border: solid 2px red ; */
    width: 100%;
    margin: 0;
    padding: 0;
  }

}



/* =========================================================
 * MODAL DE LEAD (nome, e-mail, whatsapp) — antes de ir pra Kiwify
 * ========================================================= */

.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-modal-overlay.is-visible {
  display: flex;
}

.lead-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background-color: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px 28px;
  text-align: center;
}

.lead-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-gray);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition-fast);
}

.lead-modal-close:hover {
  color: var(--text-white);
}

.lead-modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.lead-modal-sub {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 22px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #1a1a1a;
  color: var(--text-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition-fast);
}

.lead-form input::placeholder {
  color: var(--text-gray);
}

.lead-form input:focus {
  border-color: var(--accent-green);
}

.lead-form-submit {
  margin-top: 6px;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
