:root {
  --green: #16a34a;
  --green-dark: #12813c;
  --red: #dc2626;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fdfdfd;
}

button {
  font: inherit;
}

.topbar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

section {
  padding: 88px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 118px;
}

.dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle at 10px 10px, #000 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pill,
.offer-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 860px;
  margin: 28px auto 24px;
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.9;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.lead {
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  font-weight: 600;
}

.video-frame {
  width: min(400px, 100%);
  aspect-ratio: 9 / 16;
  margin: 0 auto 28px;
  background: #000;
  border: 5px solid var(--white);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.2);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.cta {
  border: 0;
  border-radius: 20px;
  background: var(--green);
  color: var(--white);
  padding: 18px 34px;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  font-style: italic;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 14px 36px rgba(22, 163, 74, 0.24);
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  background: var(--green-dark);
}

.wide {
  width: min(100%, 620px);
}

.microcopy,
.security {
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-card {
  width: min(720px, 100%);
  margin: 54px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14);
}

.preview-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.preview-card span {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-title span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.section-title p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

.cards {
  display: grid;
  gap: 22px;
}

.three {
  grid-template-columns: repeat(3, 1fr);
}

.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.card:hover {
  border-color: #cbd5e1;
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: var(--soft);
  font-size: 28px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 34px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 20px 18px 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft);
  font-size: 17px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.center-heading {
  margin-bottom: 44px;
  text-align: center;
}

.compact {
  text-align: center;
}

.emoji {
  margin-bottom: 18px;
  font-size: 44px;
}

.offer {
  text-align: center;
}

.offer h2 {
  margin: 22px auto 36px;
}

.price-box {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto 30px;
  padding: 34px 24px;
  border: 4px solid var(--line);
  border-radius: 34px;
  background: var(--soft);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.badge {
  position: absolute;
  top: -14px;
  right: -10px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.old-price {
  color: #94a3b8;
  font-size: 20px;
  font-weight: 800;
  text-decoration: line-through;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  color: var(--ink);
  font-size: clamp(84px, 15vw, 128px);
  line-height: 0.9;
  font-weight: 900;
  font-style: italic;
}

.price small {
  font-size: 30px;
}

.price-note {
  margin-top: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.faq {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 600;
}

footer {
  padding: 90px 0;
  text-align: center;
}

footer h2 {
  margin-bottom: 32px;
}

.footer-copy {
  margin-top: 46px;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

@media (max-width: 860px) {
  .three,
  .four {
    grid-template-columns: 1fr;
  }

  section {
    padding: 68px 0;
  }

  .hero {
    padding-top: 58px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .cta {
    width: 100%;
    padding-inline: 18px;
    font-size: 16px;
  }

  .card,
  .preview-card {
    border-radius: 22px;
  }

  .topbar {
    font-size: 10px;
  }
}

.checkout-form {
  width: min(100%, 620px);
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  display: block;
  margin-bottom: 14px;
  text-align: left;
}

.form-group span {
  display: block;
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
.error-text {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 1rem;
  text-align: center;
}

.cta:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

/* Download Page Styles */
.download-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.download-card .icon {
  margin-bottom: 0;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.download-info {
  flex-grow: 1;
}
.download-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.download-info p {
  font-size: 14px;
}
.download-card .cta {
  width: auto;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .download-card {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .download-card .icon {
    margin: 0 auto;
  }
}

/* Pix QR Code Panel */
#pix-panel {
  margin-top: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.pix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.pix-logo {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -0.01em;
}
.pix-timer {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--soft);
  padding: 4px 12px;
  border-radius: 999px;
}
.pix-instructions {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
#qrcode-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
#qrcode {
  padding: 14px;
  border: 2px solid var(--line);
  border-radius: 16px;
  display: inline-block;
  background: white;
}
#qrcode img, #qrcode canvas {
  display: block;
  border-radius: 8px;
}
.pix-or {
  color: #cbd5e1;
  font-size: 0.85rem;
  margin: 1rem 0;
}
.cta-outline {
  display: block;
  border: 2px solid var(--green);
  border-radius: 20px;
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
  width: min(100%, 620px);
  margin: 0 auto;
}
.cta-outline:hover {
  background: var(--green);
  color: white;
}
.pix-footer {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.pix-footer p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.pix-paid-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  padding: 8px 20px;
  border: 2px solid var(--green);
  border-radius: 12px;
  transition: background 160ms, color 160ms;
}
.pix-paid-link:hover {
  background: var(--green);
  color: white;
}
