* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #071812;
  --bg2: #0b241a;
  --card: #123426;
  --card2: #174331;
  --green: #15d36b;
  --green2: #39f28a;
  --cream: #f3ead0;
  --cream2: #d8c9a4;
  --text: #fff7df;
  --muted: #b8c7b8;
  --red: #ff1f1f;
  --yellow: #d8b15d;
  --border: rgba(243, 234, 208, 0.12);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.hidden {
  display: none !important;
}

.topbar {
  width: 100%;
  min-height: 66px;
  padding: 0 8%;
  background: #06120e;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
}

.logo-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-btn img {
  max-height: 46px;
  max-width: 170px;
}

.logo-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 38px;
  background: linear-gradient(135deg, var(--cream), var(--yellow));
  color: #06120e;
  font-weight: 900;
  border-radius: 8px;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar nav a {
  color: var(--cream2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.topbar .nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #06120e;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
}

/* =========================================
   BANNER FEITO EM CÓDIGO
========================================= */

.coded-banner {
  padding: 28px 8% 24px;
  background:
    radial-gradient(circle at 70% 20%, rgba(21, 211, 107, 0.16), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(216, 177, 93, 0.12), transparent 30%),
    #06120e;
}

.coded-banner-inner {
  width: 100%;
  max-width: 1120px;
  min-height: 300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(243, 234, 208, 0.16);
  background:
    linear-gradient(90deg, rgba(6, 18, 14, 0.96) 0%, rgba(10, 32, 23, 0.9) 42%, rgba(6, 18, 14, 0.7) 100%),
    repeating-linear-gradient(
      -18deg,
      rgba(243, 234, 208, 0.03) 0,
      rgba(243, 234, 208, 0.03) 1px,
      transparent 1px,
      transparent 12px
    );
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  display: grid;
  grid-template-columns: 1fr 0.85fr 0.85fr;
  align-items: center;
  padding: 34px 42px;
}

.coded-banner-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(21, 211, 107, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 45%);
  pointer-events: none;
}

.banner-left-copy,
.banner-person,
.banner-right-copy {
  position: relative;
  z-index: 2;
}

.side-text {
  position: absolute;
  left: -24px;
  top: 34px;
  transform: rotate(-90deg);
  transform-origin: left top;
  color: rgba(243, 234, 208, 0.7);
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 700;
}

.banner-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banner-title-wrap h1 {
  color: var(--cream);
  font-size: 52px;
  line-height: 0.9;
  letter-spacing: -2px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0,0,0,0.35);
}

.banner-title-wrap h1 span {
  display: block;
}

.play-badge {
  width: 52px;
  height: 38px;
  background: var(--red);
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  box-shadow: 0 10px 26px rgba(255, 31, 31, 0.25);
}

.banner-left-copy p {
  margin-top: 12px;
  color: var(--cream);
  font-size: 18px;
  font-weight: 800;
}

.banner-strip {
  margin-top: 28px;
  width: max-content;
  max-width: 100%;
  background: rgba(21, 211, 107, 0.9);
  color: #06120e;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.banner-person {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 230px;
}

.banner-person img {
  max-height: 285px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.55));
}

.banner-person.no-person::before {
  content: "FOTO DO CLIENTE";
  width: 210px;
  height: 230px;
  border-radius: 18px;
  border: 1px dashed rgba(243, 234, 208, 0.28);
  color: rgba(243, 234, 208, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  background: rgba(243, 234, 208, 0.04);
}

.banner-right-copy {
  justify-self: end;
  text-align: right;
}

.banner-right-copy h2 {
  color: var(--cream);
  font-size: 54px;
  line-height: 0.9;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 4px 22px rgba(0,0,0,0.35);
}

.hero {
  padding: 58px 8% 48px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(21, 211, 107, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(216, 177, 93, 0.14), transparent 30%),
    linear-gradient(180deg, #071812 0%, #0b241a 100%);
}

.mini-badge {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid rgba(21, 211, 107, 0.55);
  background: rgba(21, 211, 107, 0.08);
  color: var(--green2);
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 18px;
}

.hero h1 {
  max-width: 880px;
  margin: 0 auto;
  color: var(--cream);
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: -1.4px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero p {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.hero-frame {
  width: 100%;
  max-width: 920px;
  margin: 34px auto 0;
  background: #06120e;
  border: 1px solid rgba(21, 211, 107, 0.28);
  border-radius: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 0.8fr 1.6fr;
  gap: 18px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.42);
}

.hero-left {
  background: linear-gradient(135deg, var(--card), #0a2017);
  border-radius: 14px;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(243, 234, 208, 0.08);
}

.hero-left span {
  color: var(--cream);
  font-weight: 900;
  font-size: 14px;
}

.hero-left ul {
  margin-top: 16px;
  list-style: none;
}

.hero-left li {
  padding: 11px 0;
  color: #e5eadc;
  border-bottom: 1px solid rgba(243, 234, 208, 0.08);
}

.hero-left li::before {
  content: "✓";
  color: var(--green2);
  font-weight: 900;
  margin-right: 8px;
}

.video-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(243, 234, 208, 0.08);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #04110c;
  font-weight: 900;
  font-size: 17px;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(21, 211, 107, 0.2);
  transition: 0.15s ease;
}

.main-cta:hover {
  transform: translateY(-2px);
}

.hero small {
  display: block;
  margin-top: 12px;
  color: var(--cream2);
}

.stats {
  background: #0a2017;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 8%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stats strong {
  display: block;
  color: var(--green2);
  font-size: 26px;
  font-weight: 900;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.testimonials-section {
  padding: 62px 8%;
  background: #071812;
}

.testimonial-grid {
  width: 100%;
  max-width: 940px;
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card {
  width: 100%;
  max-width: 360px;
  background: #06120e;
  border: 1px solid rgba(21, 211, 107, 0.24);
  border-radius: 18px;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.testimonial-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.testimonial-cta {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
}

.section {
  padding: 62px 8%;
  background: var(--bg);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-title span,
.yellow-label {
  color: var(--green2);
  font-size: 13px;
  font-weight: 900;
}

.section-title h2 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.1;
  color: var(--cream);
}

.section-title p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.modules-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.module-card {
  position: relative;
  background: linear-gradient(135deg, var(--card), #0a2017);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: rgba(21, 211, 107, 0.08);
  border-radius: 50%;
}

.module-number {
  width: 42px;
  height: 42px;
  background: rgba(21, 211, 107, 0.12);
  color: var(--green2);
  border: 1px solid rgba(21, 211, 107, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 16px;
}

.module-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--cream);
}

.module-card ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.module-card li {
  color: #dfe8da;
  font-size: 14px;
  line-height: 1.45;
  padding-left: 20px;
  position: relative;
}

.module-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green2);
  font-weight: 900;
}

.featured-module {
  border-color: rgba(21, 211, 107, 0.42);
  box-shadow: 0 20px 70px rgba(21, 211, 107, 0.08);
}

.bonus-box {
  max-width: 1100px;
  margin: 28px auto 0;
  background: #06120e;
  border: 1px solid rgba(21, 211, 107, 0.28);
  border-radius: 20px;
  padding: 30px;
}

.bonus-header {
  text-align: center;
  margin-bottom: 22px;
}

.bonus-header span {
  color: var(--green2);
  font-size: 13px;
  font-weight: 900;
}

.bonus-header h2 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.15;
  color: var(--cream);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bonus-grid div {
  background: rgba(243, 234, 208, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  color: #dfe8da;
  font-size: 14px;
  line-height: 1.4;
}

.proof-section {
  padding: 30px 8% 64px;
  background: var(--bg);
}

.proof-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--card), #0a2017);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.proof-card h2 {
  font-size: 30px;
  line-height: 1.1;
  margin-top: 8px;
  color: var(--cream);
}

.proof-card ul {
  list-style: none;
}

.proof-card li {
  color: #dfe8da;
  padding: 11px 0;
  border-bottom: 1px solid rgba(243, 234, 208, 0.08);
}

.proof-card li::before {
  content: "✓";
  color: var(--green2);
  font-weight: 900;
  margin-right: 8px;
}

.offer-section {
  padding: 58px 8%;
  background: var(--bg2);
}

.offer-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: #06120e;
  border: 1px solid rgba(21, 211, 107, 0.28);
  border-radius: 22px;
  padding: 34px;
}

.offer-box h2 {
  font-size: 32px;
  margin: 8px 0 10px;
  color: var(--cream);
}

.offer-box p {
  color: var(--muted);
  line-height: 1.5;
}

.price {
  margin: 24px 0 4px;
}

.price small {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}

.price strong {
  font-size: 42px;
  color: var(--green2);
  font-weight: 900;
}

.checkout-section {
  padding: 62px 8% 80px;
  background:
    radial-gradient(circle at center, rgba(21, 211, 107, 0.08), transparent 35%),
    var(--bg);
}

.checkout-card {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  background: #06120e;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.32);
}

.checkout-header {
  text-align: center;
  margin-bottom: 24px;
}

.checkout-header span {
  color: var(--green2);
  font-weight: 900;
  font-size: 13px;
}

.checkout-header h2 {
  margin-top: 8px;
  font-size: 27px;
  color: var(--cream);
}

.checkout-header strong {
  display: block;
  margin-top: 10px;
  font-size: 39px;
  color: var(--green2);
}

.checkout-form {
  display: grid;
  gap: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
}

.form-group input {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(243, 234, 208, 0.14);
  border-radius: 12px;
  background: #0a2017;
  color: #fff;
  outline: none;
  padding: 0 15px;
  font-size: 15px;
}

.form-group input:focus {
  border-color: var(--green2);
  box-shadow: 0 0 0 3px rgba(21, 211, 107, 0.12);
}

.form-group input.error {
  border-color: #ff4b4b;
}

.error-text {
  display: block;
  margin-top: 6px;
  color: #ff6b6b;
  font-size: 12px;
}

.pay-btn {
  margin-top: 8px;
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #04110c;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.pay-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.pix-area {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.pix-success-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.pix-success-title span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.pix-helper {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 16px;
}

.qr-frame {
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#qrPlaceholder {
  color: #111;
  font-weight: 900;
}

.pix-label {
  display: block;
  text-align: center;
  color: var(--green2);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 9px;
}

#pixCode {
  width: 100%;
  height: 64px;
  resize: none;
  border: 1px solid rgba(243, 234, 208, 0.14);
  border-radius: 12px;
  background: #0a2017;
  color: #dfe8da;
  outline: none;
  padding: 12px;
  font-size: 11px;
  text-align: center;
}

.copy-btn {
  width: 100%;
  height: 48px;
  margin-top: 12px;
  border: none;
  border-radius: 12px;
  background: var(--green);
  color: #04110c;
  font-weight: 900;
  cursor: pointer;
}

.expire-text {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.timer {
  text-align: center;
  color: var(--green2);
  font-size: 25px;
  font-weight: 900;
  margin-top: 4px;
}

.pix-status {
  margin-top: 14px;
  border: 1px solid rgba(21, 211, 107, 0.28);
  background: rgba(21, 211, 107, 0.08);
  color: var(--green2);
  border-radius: 12px;
  padding: 13px;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
}

.footer {
  background: #06120e;
  border-top: 1px solid var(--border);
  padding: 28px 8%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer strong {
  color: var(--cream);
}

@media (max-width: 980px) {
  .coded-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 34px 22px;
  }

  .side-text,
  .banner-strip,
  .banner-person {
    display: none;
  }

  .banner-title-wrap {
    justify-content: center;
  }

  .banner-title-wrap h1,
  .banner-right-copy h2 {
    font-size: 42px;
  }

  .banner-right-copy {
    justify-self: center;
    text-align: center;
    margin-top: 12px;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-frame,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .modules-grid,
  .grid-cards,
  .stats {
    grid-template-columns: 1fr 1fr;
  }

  .topbar {
    padding: 0 18px;
  }
}

@media (max-width: 760px) {
  .testimonial-grid {
    max-width: 430px;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .modules-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar nav a:first-child {
    display: none;
  }

  .topbar nav a:nth-child(2) {
    display: none;
  }

  .coded-banner {
    padding: 18px 12px;
  }

  .coded-banner-inner {
    min-height: 240px;
  }

  .banner-title-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .banner-title-wrap h1,
  .banner-right-copy h2 {
    font-size: 32px;
  }

  .banner-left-copy p {
    font-size: 15px;
  }

  .hero {
    padding: 42px 16px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 15px;
  }

  .section,
  .testimonials-section,
  .proof-section,
  .offer-section,
  .checkout-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .modules-grid,
  .grid-cards,
  .stats {
    grid-template-columns: 1fr;
  }

  .checkout-card,
  .offer-box,
  .proof-card,
  .bonus-box {
    padding: 22px;
  }

  .bonus-header h2 {
    font-size: 23px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}