* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.4;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { font-family: inherit; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.row {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media (max-width: 860px) {
  .row { flex-direction: column; gap: 28px; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  background: #4cdf00;
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .2px;
  padding: 17px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 14px rgba(76,223,0,.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(76,223,0,.5); }
.btn:active { transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #000;
  overflow: hidden;
  min-height: 900px;
}
.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 56px;
}
.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
}
.hero-img-desktop {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% top;
  display: block;
}
.hero-img-mobile { display: none; }
.hero-logo-overlay { display: none; }
.hero-text {
  max-width: 620px;
  padding-bottom: 70px;
}

.logo { width: 230px; height: auto; margin-bottom: 28px; display: block; }

h1.headline {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 22px;
}
h1.headline .accent { color: #f29400; }
h1.headline .white { color: #fff; }

.date-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 14px;
}
.date-badge svg { flex: 0 0 auto; }

.hero-lead {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  max-width: 430px;
  margin-bottom: 26px;
  opacity: .92;
}

.hero-badge-mobile-wrap { display: none; }
.hero-btn-mobile { display: none; }

@media (max-width: 860px) {
  .hero { padding-top: 0; min-height: 0; }

  /* badge fica antes da foto, só no mobile */
  .hero-badge-mobile-wrap { display: block; padding-top: 20px; }
  .hero-badge-desktop { display: none; }

  .hero-media {
    position: relative;
    width: 100%;
    height: auto;
  }
  .hero-img-desktop { display: none; }
  .hero-img-mobile {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 760/690;
    object-fit: cover;
    object-position: center top;
  }
  .hero-logo-overlay {
    display: block;
    position: absolute;
    left: 50%;
    bottom: 1%;
    transform: translateX(-50%);
    width: 92px;
    height: auto;
    z-index: 1;
  }
  .hero-logo-inline { display: none; }

  .hero .wrap { padding-top: 0; }
  .hero-text { max-width: 100%; text-align: left; padding: 16px 0 40px; }
  .hero-lead { margin-left: 0; margin-right: 0; }
  h1.headline { font-size: 26px; }

  .hero-btn-desktop { display: none; }
  .hero-btn-mobile { display: inline-block; width: 100%; max-width: 360px; }
}

/* ---------- Seção genérica ---------- */
section { padding: 60px 0; }

.statement {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.statement .green { color: #15c043; }
.red-list { list-style: none; margin: 14px 0 22px; }
.red-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f91600;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 6px;
}
.red-list svg { flex: 0 0 auto; }

@media (max-width: 860px) {
  .statement, .red-list li { font-size: 22px; text-align: left; }
}

.col-slider { flex: 0 0 46%; max-width: 46%; }
.col-text { flex: 1; min-width: 0; }
@media (max-width: 860px) {
  .col-slider, .col-text { flex: none; max-width: 100%; width: 100%; }
}

/* slider de resultados */
.slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 420 / 623;
  background: #000;
}
.slider img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease;
}
.slider img.active { opacity: 1; }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 42px;
  background: #4cdf00;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}
.slider-arrow.prev { left: 0; border-radius: 0 6px 6px 0; }
.slider-arrow.next { right: 0; border-radius: 6px 0 0 6px; }

.scroll-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.scroll-more span {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: #15c043;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* ---------- Resultados / vídeos ---------- */
.eyebrow {
  font-size: 22px;
  font-weight: 700;
  color: #f8f8f8;
  text-align: center;
  margin-bottom: 6px;
}
h2.big {
  font-size: 44px;
  font-weight: 800;
  text-align: center;
  color: #f8f8f8;
  line-height: 1.2;
  margin-bottom: 34px;
}
h2.big .green { color: #15c043; }
@media (max-width: 860px) {
  h2.big { font-size: 30px; }
  .eyebrow { font-size: 18px; }
}

.videos {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.video-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #329300;
}
.video-frame::after { content: ''; display: block; padding-top: 62.5%; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-frame { background: #0d0d0d; cursor: pointer; }
.video-play {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at center, rgba(50,147,0,.35), rgba(0,0,0,.55));
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.video-play span {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #4cdf00;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  padding-left: 4px;
  box-shadow: 0 4px 18px rgba(76,223,0,.5);
  transition: transform .15s ease;
}
.video-play:hover span { transform: scale(1.08); }

/* ---------- Preço ---------- */
h2.price-heading {
  font-size: 40px;
  font-weight: 800;
  color: #15c043;
  text-align: center;
  margin-bottom: 18px;
}
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: #329300;
  border-radius: 18px;
  padding: 34px 32px;
  text-align: center;
}
.price-card p.explain { color: #fff; font-size: 16px; font-weight: 500; margin-bottom: 22px; }
.price-card hr { border: none; border-top: 1px solid rgba(255,255,255,.25); margin-bottom: 18px; }
.price-old { color: #ff3700; text-decoration: line-through; font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.price-label { color: #fff; font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.price-new {
  color: #fff;
  font-weight: 800;
  font-size: 68px;
  line-height: 1;
  margin-bottom: 26px;
}
.price-new .currency { font-size: 24px; font-weight: 700; vertical-align: top; margin-right: 4px; }
.price-new .cents { font-size: 24px; font-weight: 700; }
.price-card .btn { width: 100%; max-width: 300px; background: #4cdf00; }

/* ---------- Bio ---------- */
.bio-photo { flex: 0 0 293px; max-width: 293px; border-radius: 10px; overflow: hidden; }
.bio-text h3 { font-size: 40px; font-weight: 800; margin-bottom: 6px; }
.bio-text .role { color: #15c043; font-weight: 500; font-size: 13px; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 16px; }
.bio-text p { color: #d4d4d4; font-size: 16px; font-weight: 500; margin-bottom: 14px; }
@media (max-width: 860px) {
  .bio-text { text-align: center; }
  .bio-photo { flex: none; max-width: 260px; width: 100%; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: #53b700;
  border: 0;
  color: #000;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 22px; font-weight: 700;
  transition: transform .2s ease;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: #f2f2f2; }
.faq-a p { padding: 18px 20px; color: #40545f; font-size: 15px; font-weight: 500; }
.faq-item.open .faq-a { max-height: 400px; }

/* ---------- CTA final ---------- */
.final-cta { text-align: center; }
.final-badge {
  display: inline-block;
  background: #329300;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  padding: 14px 32px;
  border-radius: 8px;
  margin-bottom: 18px;
}
.final-cta .price-old { display: block; margin-bottom: 22px; }

/* ---------- Footer ---------- */
footer {
  padding: 28px 0;
  border-top: 1px solid #1c1c1c;
  color: #91999d;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .links a { color: #a3bac6; margin-left: 16px; text-decoration: underline; }
footer .links a:first-child { margin-left: 0; }
footer .links a:hover { color: #fff; }
@media (max-width: 640px) {
  footer { justify-content: center; text-align: center; }
}
