:root {
  --paper: #fbfaf4;
  --paper-soft: #f3efe4;
  --ink: #18231f;
  --muted: #61706a;
  --line: #ded7c6;
  --line-strong: #b9ab8e;
  --green: #177a4d;
  --green-dark: #0d5735;
  --green-soft: #e5f2e8;
  --blue: #244f9f;
  --gold: #c38b24;
  --white: #fffdf7;
  --shadow: 0 22px 60px rgb(54 45 24 / .16);
  --radius: 22px;
  --wrap: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgb(24 35 31 / .045) 1px, transparent 1px),
    linear-gradient(0deg, rgb(24 35 31 / .035) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.bonus-modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgb(36 79 159 / .34);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  font-weight: 900;
  transition: transform .2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(var(--wrap), calc(100% - 38px));
  margin: 0 auto;
}

.top-strip {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.strip-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
}

.strip-inner strong {
  font-size: 13px;
  letter-spacing: .08em;
}

.strip-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.strip-pills span,
.mini-features span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  padding: 8px 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  min-height: calc(100svh - 66px);
  display: grid;
  align-items: center;
  padding: clamp(46px, 6vw, 86px) 0 clamp(62px, 8vw, 104px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .82fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
}

.pill,
.section-kicker,
.form-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pill::before,
.section-kicker::before {
  width: 34px;
  height: 2px;
  background: var(--gold);
  content: "";
}

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

h1,
h2 {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: .91;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 4.65rem);
  line-height: .95;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  margin-bottom: 20px;
  color: #31413b;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.66;
}

.hero-copy > p:not(.pill):not(.lead) {
  max-width: 680px;
  color: var(--muted);
}

.price-card,
.offer-box {
  width: min(470px, 100%);
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow);
}

.price-card {
  display: grid;
  gap: 10px;
}

.price-kicker {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.price-kicker s {
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

[data-current-price],
.price-card strong,
.offer-box > strong {
  display: block;
  color: var(--green);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(3.3rem, 6vw, 5.3rem);
  font-weight: 900;
  line-height: .86;
}

.price-card small,
.offer-box small,
.price-card p,
.offer-box p {
  color: var(--muted);
  font-size: 13px;
}

.buy-btn,
.copy-btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 22px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 14px 30px rgb(23 122 77 / .2);
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}

.buy-btn:hover,
.copy-btn:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 18px 38px rgb(23 122 77 / .24);
}

.buy-btn:active,
.copy-btn:active {
  transform: translateY(0) scale(.98);
}

.pulse {
  animation: pulseCta 2.8s ease-in-out infinite;
}

@keyframes pulseCta {
  0%,
  100% {
    box-shadow: 0 14px 30px rgb(23 122 77 / .2);
  }
  50% {
    box-shadow: 0 18px 44px rgb(23 122 77 / .34);
  }
}

.hero-media {
  position: relative;
}

.mockup-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.mockup-stage::before {
  position: absolute;
  width: min(520px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #e8f1db 0 35%, transparent 36% 100%);
  content: "";
}

.ads-hero-mockup {
  position: relative;
  z-index: 2;
  width: min(360px, 78vw);
  border-radius: 24px;
  box-shadow: 34px 42px 80px rgb(42 34 18 / .24);
  transform: rotate(-3deg);
}

.section {
  padding: clamp(70px, 9vw, 122px) 0;
  position: relative;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.pain-panel {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
}

.pain-panel p,
.section-copy,
.route-note,
.checkout-summary p,
.proof-copy li,
.compare li,
.deliveries-grid p,
.faq-inner p,
.legal-grid p,
.footer p {
  color: var(--muted);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.promise-grid article {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: var(--white);
  padding: 26px;
}

.promise-grid strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
}

.check-grid,
.proof-copy ul,
.compare ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.check-grid li,
.proof-copy li,
.compare li {
  position: relative;
  padding-left: 28px;
}

.check-grid li::before,
.proof-copy li::before,
.compare li::before {
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgb(23 122 77 / .1);
  content: "";
}

.content-band,
.compare,
.checkout-section {
  border-block: 1px solid var(--line);
  background: var(--paper-soft);
}

.content-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.content-list span {
  min-height: 128px;
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 22px;
  color: #2c3a35;
  font-weight: 800;
}

.centered {
  width: max-content;
  max-width: 100%;
  margin: 28px auto 0;
}

.headline-table {
  margin: 0 auto 22px;
  border-collapse: collapse;
  color: var(--ink);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: .95;
  text-align: center;
  letter-spacing: 0;
}

.headline-table td {
  padding: 0;
}

.visual-material .section-copy {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.course-proof {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(24px, 5vw, 44px);
  box-shadow: var(--shadow);
}

.course-proof img {
  width: min(330px, 100%);
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 22px 28px 58px rgb(42 34 18 / .18);
}

.proof-copy strong {
  color: var(--ink);
}

.mini-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.route-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}

.route-list li {
  min-height: 250px;
  display: grid;
  align-content: start;
  background: var(--white);
  padding: 28px;
}

.route-list span,
.deliveries-grid span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
}

.route-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.route-list p,
.route-note {
  margin-bottom: 0;
}

.route-note {
  max-width: 780px;
  margin: 26px auto 0;
  text-align: center;
}

.slim {
  margin-top: 18px;
}

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

.photo-mosaic div {
  min-height: 190px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgb(23 122 77 / .1), transparent 46%),
    var(--white);
  padding: 22px;
  box-shadow: 0 14px 34px rgb(54 45 24 / .08);
}

.photo-mosaic div:nth-child(2) {
  margin-top: 28px;
  background:
    linear-gradient(150deg, rgb(36 79 159 / .1), transparent 46%),
    var(--white);
}

.photo-mosaic div:nth-child(3) {
  background:
    linear-gradient(150deg, rgb(195 139 36 / .12), transparent 46%),
    var(--white);
}

.photo-mosaic strong {
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.photo-mosaic span {
  color: var(--muted);
  font-weight: 800;
}

.deliveries-grid,
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.deliveries-grid article,
.compare-grid article {
  min-height: 210px;
  background: var(--white);
  padding: 24px;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-grid .highlight {
  background: var(--green-soft);
}

.final-offer {
  text-align: center;
}

.offer-box {
  display: grid;
  justify-items: center;
  margin-inline: auto;
}

.centered-pills {
  justify-content: center;
}

.faq-wrap {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 18px 0;
  text-align: left;
  font-weight: 950;
}

.accordion-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green);
  transition: transform .18s var(--ease);
}

.faq-question[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .22s var(--ease);
}

.faq-question[aria-expanded="true"] + .faq-panel {
  grid-template-rows: 1fr;
}

.faq-inner {
  overflow: hidden;
}

.faq-inner p {
  padding-bottom: 22px;
}

.checkout-layout,
.legal-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(20px, 4vw, 28px);
  box-shadow: var(--shadow);
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.checkout-form input,
.checkout-form textarea,
.bonus-lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
}

.checkout-form textarea {
  min-height: 108px;
  resize: vertical;
}

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

.phone-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.phone-prefix {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 0 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 950;
}

.checkout-form .phone-field input,
.bonus-lead-form .phone-field input {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.coupon-applied,
.summary-box {
  display: grid;
  gap: 5px;
  border: 1px solid rgb(23 122 77 / .22);
  border-radius: 16px;
  background: var(--green-soft);
  padding: 14px;
}

.coupon-applied span,
.coupon-applied small,
.summary-box span,
.summary-box small,
.cpf-note,
.privacy-note,
.form-message {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.coupon-applied strong,
.summary-box b {
  color: var(--green);
  font-size: 1.45rem;
}

.pix-result {
  display: grid;
  gap: 14px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pix-result[hidden],
.coupon-applied[hidden] {
  display: none;
}

.pix-result img {
  width: min(260px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
}

.form-message.is-error {
  color: #b53d2d;
}

.form-message.is-success {
  color: var(--green);
}

.legal-section,
.footer {
  padding: 32px 0;
  background: var(--white);
}

.legal-section {
  border-top: 1px solid var(--line);
}

.footer {
  border-top: 1px solid var(--line);
}

.legal-grid {
  gap: 22px;
}

.legal-grid article h2 {
  margin-bottom: 8px;
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.legal-grid article p {
  font-size: 12px;
  line-height: 1.45;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--green);
  font-weight: 900;
}

.footer-brand {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: "IBM Plex Serif", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.risk-note {
  max-width: 850px;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.sticky-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: block;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: rgb(255 253 247 / .9);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta .buy-btn {
  width: 100%;
}

.bonus-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s var(--ease);
}

.bonus-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.bonus-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(24 35 31 / .5);
  backdrop-filter: blur(8px);
}

.bonus-modal-panel {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.bonus-modal-panel h2 {
  margin: 12px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.bonus-modal-panel p {
  color: var(--muted);
}

.bonus-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.bonus-modal-actions,
.bonus-lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.bonus-modal-actions .btn,
.bonus-lead-form .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 0 18px;
  font-weight: 950;
}

.bonus-skip {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 800;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .strip-inner,
  .hero-grid,
  .two-col,
  .course-proof,
  .checkout-layout,
  .legal-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .strip-inner {
    display: grid;
    justify-items: start;
    padding: 14px 0;
  }

  .strip-pills {
    justify-content: flex-start;
  }

  .hero {
    min-height: 0;
  }

  .mockup-stage {
    min-height: 500px;
  }

  .content-list,
  .route-list,
  .deliveries-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 30px, var(--wrap));
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
  }

  h2,
  .headline-table {
    font-size: clamp(2.1rem, 10vw, 3.05rem);
  }

  .content-list,
  .route-list,
  .deliveries-grid,
  .promise-grid,
  .compare-grid,
  .form-row,
  .photo-mosaic {
    grid-template-columns: 1fr;
  }

  .content-list span,
  .route-list li,
  .deliveries-grid article,
  .compare-grid article {
    min-height: 0;
  }

  .price-card,
  .offer-box {
    padding: 20px;
  }

  [data-current-price],
  .price-card strong,
  .offer-box > strong {
    font-size: clamp(3.2rem, 18vw, 4.4rem);
  }

  .mockup-stage {
    min-height: 420px;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .sticky-mobile-cta {
    display: block;
  }

  .bonus-modal {
    align-items: end;
    padding: 12px;
  }

  .bonus-modal-panel {
    max-height: calc(100dvh - 24px);
    overflow: auto;
    padding: 46px 16px 18px;
  }
}

@media (max-width: 420px) {
  .buy-btn,
  .copy-btn {
    width: 100%;
    padding-inline: 16px;
    font-size: 14px;
  }

  .strip-pills span,
  .mini-features span {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
