/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: #0a0a0a;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ============ LAYOUT ============ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.center-narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.two-col.reverse .col-img { order: 2; }
.col-img img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.col-img.center { display: flex; justify-content: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url('images/bg-1.jpg') center/cover no-repeat;
  padding: 70px 0 80px;
}
.hero-inner { text-align: center; }
.hero-title {
  color: #ff1f3d;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 880px;
  margin: 0 auto 22px;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.highlight-green {
  color: #1fd84a;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(31, 216, 74, 0.45);
}

.hero-sub {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  max-width: 700px;
  margin: 0 auto 34px;
  text-transform: uppercase;
}

/* ============ VIDEO ============ */
.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px auto 36px;
  width: 100%;
}
.video-wrapper > div {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.6);
}

/* ============ BUTTONS ============ */
.btn-cta {
  display: inline-block;
  background: #11a32a;
  color: #fff;
  padding: 16px 38px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  box-shadow: 0 4px 0 #0c7a1f, 0 6px 16px rgba(17,163,42,.35);
  cursor: pointer;
  border: 0;
}
.btn-cta:hover {
  background: #14b830;
  transform: translateY(-2px);
}
.btn-cta:active { transform: translateY(1px); box-shadow: 0 2px 0 #0c7a1f; }
.btn-cta.small { padding: 14px 28px; font-size: 14px; }
.btn-cta.full { display: block; width: 100%; padding: 18px; }

/* ============ BLOCKS ============ */
.block-dark { background: #0a0a0a; padding: 70px 0; color: #fff; }
.block-light { background: #f4f4f4; padding: 70px 0; color: #1a1a1a; }
.block-light p, .block-light h2 { color: #1a1a1a; }
.block-light .center-narrow p { color: #333; margin-bottom: 12px; }

/* Section com background image full */
.block-bg-image {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  color: #fff;
}
.block-bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.2) 100%);
}
.block-bg-image .container { position: relative; z-index: 2; }
.block-bg-image.for-whom::before {
  background: linear-gradient(90deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.6) 50%, rgba(0,0,0,.85) 100%);
}

.text-left-half { max-width: 50%; }
.text-right-half {
  max-width: 50%;
  margin-left: auto;
}

.title-red {
  color: #ff1f3d;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.title-red.center { text-align: center; }
.title-black {
  color: #1a1a1a;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.block-dark p, .block-bg-image p {
  color: #d8d8d8;
  font-size: 15px;
  margin-bottom: 14px;
}
.block-dark p strong, .block-bg-image p strong { color: #fff; }
.block-light p { font-size: 15px; margin-bottom: 14px; }

.white-underline {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ============ DIAGONAL BANNER ============ */
.diagonal-banner {
  background: #0a0a0a;
  line-height: 0;
  overflow: hidden;
}
.diagonal-banner img {
  width: 100%;
  display: block;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  position: relative;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  color: #fff;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}
.testimonials .container { position: relative; z-index: 2; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 36px auto 0;
  max-width: 540px;
}
.testimonial-video {
  position: relative;
  background: #000;
  aspect-ratio: 9 / 12;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}
.testimonial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ CHECK LIST ============ */
.check-list {
  list-style: none;
  margin-top: 18px;
}
.check-list li {
  background: rgba(255,255,255,.06);
  border-left: 3px solid #11a32a;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 4px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: #f0f0f0;
}
.check-list .check {
  color: #11a32a;
  font-weight: 900;
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.3;
}

/* ============ OFFER ============ */
.offer { padding: 70px 0 90px; }
.offer p { margin-bottom: 22px; }
.price-card {
  margin: 30px auto 0;
  max-width: 360px;
  background: #ff1f3d;
  border-radius: 10px;
  padding: 26px 22px 22px;
  box-shadow: 0 14px 40px rgba(255,31,61,.35);
  text-align: center;
  border: 4px solid #1a1a1a;
}
.price-card-logo {
  max-width: 200px;
  margin: 0 auto 6px;
  filter: brightness(0) invert(1);
}
.price-value {
  color: #fff;
  margin: 14px 0 18px;
  text-align: center;
}
.price-value .price-old {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  opacity: .85;
  margin-bottom: 4px;
}
.price-value .price-old s {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.price-value .price-installments {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.price-value .price-installments strong {
  font-size: 30px;
  font-weight: 900;
  display: inline-block;
  margin: 0 2px;
}
.price-value .price-cash {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  opacity: .95;
}

/* ============ GUARANTEE ============ */
.guarantee .col-img img { max-width: 360px; }
.guarantee { padding-bottom: 80px; }

/* ============ VSL PITCH REVEAL ============ */
.pitch-hidden { display: none !important; }
.pitch-revealed { animation: pitchFadeIn .8s ease-out; }
@keyframes pitchFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============ FOOTER ============ */
.site-footer {
  background: #000;
  color: #888;
  text-align: center;
  padding: 30px 0;
  font-size: 13px;
}
.site-footer .legal {
  margin-top: 8px;
  font-size: 11px;
  opacity: .7;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .two-col.reverse .col-img { order: 0; }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .text-left-half,
  .text-right-half {
    max-width: 100%;
    margin-left: 0;
  }
  .block-bg-image::before {
    background: rgba(0,0,0,.7);
  }
  .block-bg-image.for-whom::before {
    background: rgba(0,0,0,.7);
  }
  .hero { padding: 40px 0; }
  .hero-title { font-size: 22px; }
  .block-dark, .block-light { padding: 50px 0; }
  .block-bg-image { padding: 60px 0; }
}
