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

html { overflow-x: hidden; }

:root {
  --green-dark:  #465B3F;
  --green-mid:   #3a4e35;
  --green-lime:  #D7FF66;
  --green-lime2: #c8f050;
  --white:       #ffffff;
  --off-white:   #f7f9f4;
  --text-dark:   #1a1a1a;
  --yellow:      #D7FF66;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #000;
  color: var(--text-dark);
  overflow-x: hidden;
}


.page-wrapper {
  max-width: 430px;
  margin: 0 auto;
  background: var(--white);
  overflow: visible;
  position: relative;
}

h1, h2, h3, h4,
.hero-offer .headline,
.section-title,
.vsl-headline,
.bio-text h2,
.guarantee-text h2,
.footer-cta h2,
.faq-section .section-title {
  font-family: 'ClashDisplay', 'Clash Display', sans-serif;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 56px 32px;
  flex-wrap: wrap;
}

.hero-main-img {
  width: 340px;
  max-width: 90vw;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}


.hero-offer {
  flex: 0 1 420px;
  color: var(--text-dark);
}

.hero-offer .headline {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-offer .headline strong {
  color: var(--green-mid);
}

.hero-offer ul {
  list-style: none;
  margin-bottom: 28px;
}

.hero-offer ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.hero-offer ul li::before {
  content: "✓";
  color: var(--green-mid);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.2;
}

.price-box {
  background: var(--off-white);
  border: 1px solid #d0e8c8;
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
}

.price-old {
  font-size: 14px;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  font-size: 15px;
  color: #555;
  margin-bottom: 2px;
}

.price-big {
  font-size: 56px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1;
}

.price-big span {
  font-size: 28px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-block;
}

.price-or {
  font-size: 13px;
  color: #777;
  margin: 8px 0 4px;
}

.price-full {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
}

.btn-primary {
  display: block;
  background: linear-gradient(135deg, var(--green-lime) 0%, var(--green-lime2) 100%);
  color: var(--green-dark);
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 32px;
  border-radius: 31px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  box-shadow: 0 6px 20px rgba(215,255,102,.35);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ─── MODULES PREVIEW ──────────────────────────────── */
.modules-section {
  background: var(--off-white);
  padding: 72px 32px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--green-lime);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.section-sub {
  font-size: 15px;
  color: #555;
  margin-bottom: 40px;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.module-card {
  background: var(--green-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.15);
  position: relative;
}

.module-card-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #5a7350 0%, #465B3F 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.module-card-thumb .play-icon {
  width: 48px;
  height: 48px;
  background: rgba(215,255,102,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon::after {
  content: "";
  border: 0 solid transparent;
  border-left: 18px solid #465B3F;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}

.module-label {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  text-align: left;
  background: var(--green-dark);
}

.module-number {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--green-lime);
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 3px;
}

/* ─── GUARANTEE ────────────────────────────────────── */
.guarantee-section {
  background: var(--green-dark);
  padding: 56px 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.guarantee-badge {
  flex: 0 0 160px;
  text-align: center;
}

.guarantee-img {
  width: 236px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.badge-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 6px solid var(--yellow);
  background: radial-gradient(circle at 40% 35%, #3a5030, #2a3d22);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(215,255,102,.3), 0 8px 32px rgba(0,0,0,.5);
}

.badge-circle .days {
  font-size: 52px;
  font-weight: 600;
  color: var(--yellow);
  line-height: 1;
}

.badge-circle .dias {
  font-size: 16px;
  font-weight: 800;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-circle .garantia {
  font-size: 10px;
  font-weight: 600;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

.guarantee-text {
  flex: 0 1 300px;
  color: var(--white);
  text-align: center;
}

.guarantee-text h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--green-lime);
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}

.guarantee-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #cde8cd;
}

/* ─── VSL SECTION ──────────────────────────────────── */
.vsl-section {
  background: var(--green-dark);
  padding: 20px 32px 72px;
  text-align: center;
}

.vsl-brand {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--green-lime);
  margin-bottom: 10px;
}

.vsl-headline {
  font-size: 25px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 12px;
}

.vsl-headline em {
  color: var(--green-lime);
  font-style: normal;
}

.vsl-sub {
  font-size: 14px;
  color: #d5ead5;
  max-width: 560px;
  margin: 0 auto 25px;
  line-height: 1.4;
}

.vsl-player {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 36px;
  border-radius: 12px;
  overflow: visible;
  position: relative;
}

.vsl-player-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a3d22 0%, #465B3F 50%, #5a7350 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.vsl-play-btn {
  width: 80px;
  height: 80px;
  background: var(--green-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(215,255,102,.2);
}

.vsl-play-btn::after {
  content: "";
  border: 0 solid transparent;
  border-left: 30px solid #465B3F;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}

.vsl-player-label {
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
}

/* ─── BIO ──────────────────────────────────────────── */
.bio-section {
  background: var(--off-white) url('assets/imagens/BG-FIM.png') top center / 100% auto no-repeat;
  padding-bottom: 48px;
}

.bio-text {
  width: 100%;
  padding: 440px 24px 0;
  animation: slideFromLeft .7s ease both;
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

.bio-text h2 {
  font-size: 38px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.bio-text h2 span {
  color: var(--green-mid);
}

.bio-text p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 12px;
}

.bio-text p strong {
  color: var(--green-mid);
}

.bio-photo-wrap {
  flex: 0 0 300px;
  position: relative;
  text-align: center;
}

.bio-photo-placeholder {
  width: 280px;
  height: 380px;
  background: linear-gradient(160deg, #5a7350 0%, #465B3F 100%);
  border-radius: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}

.bio-watermark {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 130px;
  font-weight: 600;
  color: rgba(70,91,63,.15);
  line-height: 1;
  user-select: none;
  letter-spacing: -8px;
}

/* ─── FAQ ──────────────────────────────────────────── */
.faq-section {
  background: var(--green-dark);
  padding: 72px 32px;
  text-align: center;
}

.faq-section .section-title {
  color: var(--white);
  margin-bottom: 40px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(215,255,102,.2);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}

.faq-q:hover { color: var(--green-lime); }

.faq-icon {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 300;
  color: var(--green-lime);
  transition: transform .3s;
}

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

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 16px 20px;
  font-size: 14px;
  color: #c8dcb8;
  line-height: 1.7;
}

/* ─── FOOTER CTA ───────────────────────────────────── */
.footer-cta {
  background: var(--green-mid);
  padding: 56px 32px;
  text-align: center;
}

.footer-cta h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.footer-cta p {
  color: #cde8cd;
  font-size: 15px;
  margin-bottom: 28px;
}

.footer-cta .btn-primary {
  display: inline-block;
  max-width: 480px;
  width: 100%;
}

/* ─── FOOTER ───────────────────────────────────────── */
footer {
  background: #111;
  padding: 20px 32px;
  text-align: center;
  color: #555;
  font-size: 12px;
}

/* ─── STICKY BAR ─────────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: var(--green-dark);
  border-top: 2px solid var(--green-lime);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
}
.sticky-bar.visible { transform: translateX(-50%) translateY(0); }
.sticky-bar .sticky-text { color: var(--white); font-size: 13px; font-weight: 600; white-space: nowrap; }
.sticky-bar .sticky-text span { color: var(--green-lime); font-weight: 800; }
.sticky-bar .btn-primary { padding: 11px 24px; font-size: 13px; white-space: nowrap; }

/* ─── TRUST STRIP ─────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #e4ede4;
  padding: 14px 0;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  overflow: hidden;
}
.trust-track { display: flex; gap: 28px; padding: 0 14px; animation: marquee 14s linear infinite; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #555; white-space: nowrap; flex-shrink: 0; }
.trust-icon { width: 30px; height: 30px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 15px; height: 15px; fill: var(--green-lime); }

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { background: var(--off-white); padding: 72px 32px; text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 20px rgba(70,91,63,.08);
  border-left: 4px solid var(--green-lime);
}
.testimonial-stars { color: #f5a623; font-size: 15px; margin-bottom: 8px; }
.testimonial-text { font-size: 13px; line-height: 1.7; color: #444; margin-bottom: 14px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-lime); font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.author-info .name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.author-info .result { font-size: 11px; color: var(--green-mid); font-weight: 600; }
.social-proof-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap; padding: 24px 0 0;
  border-top: 1px solid #e4ede4; max-width: 700px; margin: 0 auto;
}
.proof-item { text-align: center; }
.proof-number {
  font-family: 'ClashDisplay', 'Clash Display', sans-serif;
  font-size: 38px; font-weight: 600; color: var(--green-dark); line-height: 1;
}
.proof-label { font-size: 12px; color: #777; font-weight: 600; margin-top: 4px; }

/* ─── COUNTDOWN ─────────────────────────────────────── */
.countdown-section {
  background: #1e2c1a;
  padding: 36px 32px;
  text-align: center;
}
.countdown-label {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--green-lime); margin-bottom: 8px;
}
.countdown-title { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 20px; }
.countdown-timer {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 8px; margin-bottom: 24px;
}
.cd-block { display: flex; flex-direction: column; align-items: center; }
.cd-num {
  background: var(--green-lime); color: var(--green-dark);
  font-family: 'ClashDisplay', 'Clash Display', sans-serif;
  font-size: 42px; font-weight: 600;
  width: 76px; height: 76px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.cd-label { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #777; margin-top: 6px; }
.cd-sep { font-size: 32px; font-weight: 600; color: var(--green-lime); line-height: 76px; }

/* ─── EXIT POPUP ─────────────────────────────────────── */
.exit-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.75);
  align-items: center; justify-content: center; padding: 20px;
}
.exit-overlay.active { display: flex; }
.exit-popup {
  background: var(--white); border-radius: 20px;
  max-width: 460px; width: 100%; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5); position: relative;
}
.exit-popup-header { background: var(--green-dark); padding: 28px 24px 22px; text-align: center; }
.exit-popup-header h3 {
  font-family: 'ClashDisplay', 'Clash Display', sans-serif;
  font-size: 24px; font-weight: 600; color: var(--green-lime);
  line-height: 1.25; margin-bottom: 8px;
}
.exit-popup-header p { font-size: 14px; color: #c8dcc8; line-height: 1.5; }
.exit-popup-body { padding: 24px 24px 20px; text-align: center; }
.exit-coupon {
  background: var(--off-white); border: 2px dashed var(--green-dark);
  border-radius: 12px; padding: 16px; margin-bottom: 18px;
}
.exit-coupon .label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 6px; }
.exit-coupon .code {
  font-family: 'ClashDisplay', 'Clash Display', sans-serif;
  font-size: 26px; font-weight: 600; color: var(--green-dark); letter-spacing: 4px;
}
.exit-coupon .discount { font-size: 13px; color: var(--green-mid); font-weight: 600; margin-top: 4px; }
.exit-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: none; color: rgba(255,255,255,.55);
  font-size: 22px; cursor: pointer; line-height: 1; padding: 4px;
}
.exit-close:hover { color: var(--white); }
.exit-skip {
  font-size: 11px; color: #bbb; cursor: pointer;
  background: none; border: none; text-decoration: underline;
  margin-top: 10px; display: block; width: 100%; text-align: center;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 18px; z-index: 999;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.5); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 26px rgba(37,211,102,.6); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── PRE-PITCH (oculto até o botão do vturb aparecer) ── */
.pre-pitch {
  display: none !important;
}
.pre-pitch.revealed {
  display: revert !important;
  animation: fadeInUp .6s ease both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 640px) {

  /* Hero */
  .hero { gap: 24px; padding: 32px 20px; flex-direction: column; align-items: center; }
  .hero-main-img { width: 100%; max-width: 293px; }
  .hero-offer { width: 100%; }
  .hero-offer .headline { text-align: center; }

  /* Títulos */
  .vsl-headline { font-size: 24px; text-align: center; }
  .bio-text h2 { font-size: 28px; }
  .bio-watermark { display: none; }
  .section-title { font-size: 22px; text-align: center; }
  .guarantee-text h2 { text-align: center; }
  .footer-cta h2 { text-align: center; }

  /* Preço */
  .price-box { padding: 14px 16px; }
  .price-big { font-size: 36px; }
  .price-big span { font-size: 18px; margin-top: 6px; }

  /* Botões CTA */
  .btn-primary { font-size: 15px; padding: 14px 20px; }

  /* Seções — padding */
  .modules-section,
  .vsl-section,
  .bio-section,
  .testimonials-section,
  .faq-section { padding: 44px 20px; }
  .guarantee-section,
  .footer-cta { padding: 36px 20px; }
  .countdown-section { padding: 28px 16px; }

  /* Grids — 1 coluna */
  .modules-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Trust strip */
  .trust-icon { width: 24px; height: 24px; }

  /* Bio */
  .bio-text h2 { font-size: 28px; }

  /* Sticky bar */
  .sticky-bar { padding: 8px 16px; gap: 10px; }
  .sticky-bar .sticky-text { font-size: 11px; }
  .sticky-bar .btn-primary { font-size: 12px; padding: 10px 16px; }

  /* WhatsApp float */
  .whatsapp-float { width: 44px; height: 44px; bottom: 80px; }
  .whatsapp-float svg { width: 22px; height: 22px; }

  /* Exit popup */
  .exit-popup { max-height: 90vh; overflow-y: auto; }
  .exit-popup-header { padding: 20px 16px 16px; }
  .exit-popup-header h3 { font-size: 18px; }
  .exit-popup-body { padding: 16px; }
  .exit-coupon .code { font-size: 18px; }

  /* Countdown */
  .cd-num { width: 60px; height: 60px; font-size: 32px; }
  .cd-sep { line-height: 60px; font-size: 24px; }

  /* Social proof */
  .proof-number { font-size: 28px; }
  .social-proof-bar { gap: 24px; }
}
