@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=block');

/* ─────────────────────────────────────────────
   DESIGN TOKENS
   ───────────────────────────────────────────── */
:root {
  --blue: #0b77b7;
  --green: #18b96b;
  --yellow: #ffc928;
  --ice: #e4eef7;
  --ice-light: #edf5fb;
  --dark: #1e2b36;
  --red: #ae2028;
  --text: #020202;
  --shadow: 0 4px 10px rgba(36, 50, 61, 0.18);
  --card-shadow: 0 4px 8px rgba(35, 47, 57, 0.18);
  --card-radius: 16px;
  --section-px: 16px;
}

/* ─────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────── */
* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: #ffffff;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.page {
  width: 100%;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────────
   BRAND BAR (Header)
   ───────────────────────────────────────────── */
.brand-bar {
  padding: 16px 0;
  display: grid;
  place-items: center;
  background: #DEE7EF;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.brand-kicker {
  color: var(--dark);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 2px;
  margin: 0 0 5px;
  text-transform: uppercase;
}

.brand-title {
  margin: 0;
  color: var(--dark);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-title span {
  color: var(--blue);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  flex: 0 0 auto;
  padding: 8px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.brand-mark span {
  border-radius: 4px;
  background: var(--blue);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: var(--green);
}

.brand-mark span:nth-child(4) {
  background: var(--yellow);
}

.brand-copy {
  display: block;
}

/* ─────────────────────────────────────────────
   WARNING STRIP
   ───────────────────────────────────────────── */
.warning-strip {
  padding: 10px var(--section-px);
  display: grid;
  place-items: center;
  background: #FFFFFF;
  text-align: center;
}

.warning-strip strong {
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 4.5vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #ad2b2d;
}

/* ─────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────── */
.hero {
  padding: 24px var(--section-px) 42px;
  background: transparent;
  background-image: linear-gradient(180deg, #DEE7EF 0%, #FFFFFF 80%);
  text-align: center;
}

.hero-content {
  width: min(100%, 980px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero h1 {
  max-width: 95%;
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 4.5vw, 34px);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: #000000;
}

.hero h1 br {
  display: none;
}

.hero h1 span {
  color: var(--blue);
  font-weight: 900;
}

.hero-subtitle {
  max-width: 90%;
  margin: 0 auto;
  font-size: clamp(14px, 2.8vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: #3a4a58;
  text-align: center;
}

/* Copy Pill */
.copy-pill {
  min-height: 48px;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 8px;
  border: 1px solid #c2cfda;
  border-radius: 999px;
  background: #d8e7f1;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.76);
  color: #111820;
  max-width: 100%;
}

.copy-text {
  font-size: clamp(14px, 2.5vw, 23px);
  font-weight: 500;
  line-height: 1.2;
  white-space: normal;
}

.copy-circle {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px #d2dce4;
}

.copy-icon {
  width: 22px;
  height: 26px;
  position: relative;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 21px;
  border-radius: 5px;
  background: #0bd887;
}

.copy-icon::before {
  left: 0;
  bottom: 0;
}

.copy-icon::after {
  top: 0;
  right: 0;
  border: 3px solid #ffffff;
}

/* ─────────────────────────────────────────────
   PRICING COMPARISON (Hero Cards)
   ───────────────────────────────────────────── */
.pricing-comparison {
  width: min(100%, 340px);
  margin: 48px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  align-items: end;
}

.price-card {
  min-height: 280px;
  position: relative;
  overflow: visible;
  padding-top: 50px;
  border: 1px solid rgba(196, 207, 217, 0.52);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--card-shadow);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 50px 0 0;
  border-radius: 0 0 11px 11px;
  background:
    linear-gradient(
      to bottom,
      transparent 0 24%,
      rgba(239, 242, 245, 0.9) 24% 25%,
      transparent 25% 49%,
      rgba(239, 242, 245, 0.9) 49% 50%,
      transparent 50% 74%,
      rgba(239, 242, 245, 0.9) 74% 75%,
      rgba(246, 248, 250, 0.92) 75% 100%
    );
}

.price-label {
  width: min(92%, 150px);
  height: 45px;
  position: absolute;
  top: -24px;
  left: 50%;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: var(--card-shadow);
}

.price-label-low {
  background: #bd292d;
}

.price-label-profit {
  background: #06bf68;
}

.price-label-icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: -8px;
  top: -3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, var(--label-dot) 0 61%, #ffffff 62% 100%);
  color: #ffffff;
  font-size: 33px;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--card-shadow);
}

.price-label-icon::before {
  content: "";
  display: none;
}

.price-label-low .price-label-icon {
  --label-dot: #bd292d;
}

.price-label-profit .price-label-icon {
  --label-dot: #06bf68;
}

.price-label strong {
  grid-column: 2;
  padding-right: 6px;
  color: #ffffff;
  font-size: 12px;
  line-height: 0.92;
  text-align: left;
}

.compact-row {
  min-height: 58px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.compact-row small {
  color: #56616d;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.compact-row strong {
  color: #202b35;
  font-size: clamp(18px, 4vw, 29px);
  font-weight: 500;
  line-height: 1;
}

.compact-row span {
  width: 56px;
  height: 9px;
  display: block;
  border-radius: 4px;
}

.price-card-low .compact-row span {
  background: #bd292d;
}

.price-card-profit .compact-row span {
  width: 48px;
  background: #06bf68;
}

/* ─────────────────────────────────────────────
   RESULTS SECTION
   ───────────────────────────────────────────── */
.results-section {
  padding: 36px var(--section-px) 68px;
  background: transparent;
  background-image: radial-gradient(at center center, #FFFFFF 0%, #DEE7EF 80%);
}

.results-content {
  width: min(100%, 1140px);
  margin: 0 auto;
  text-align: center;
}

.results-content h2 {
  max-width: 330px;
  margin: 0 auto;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.1px;
  color: #1C2A33;
}

.results-content h2 span {
  color: #0B74B3;
  font-weight: inherit;
}

.results-grid {
  max-width: 296px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 78px;
  align-items: end;
}

.result-card {
  position: relative;
  min-height: 330px;
  padding: 66px 14px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--card-shadow);
}

.result-card-dark {
  background: #171d1c;
}

.result-badge {
  width: min(85%, 220px);
  min-height: 70px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  padding: 10px 14px;
  border-radius: 11px;
  background: var(--blue);
  color: #ffffff;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.result-badge strong,
.result-badge span {
  display: block;
  line-height: 1.1;
}

.result-badge strong {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
}

.result-badge span {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
}

.metric-list {
  display: grid;
  gap: 10px;
}

.metric {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 12px 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(40, 45, 54, 0.06);
  text-align: left;
}

.result-card-dark .metric {
  background: #242b29;
}

.metric small {
  margin-bottom: 4px;
  color: #7a8290;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.result-card-dark .metric small {
  color: #78817d;
}

.metric strong {
  color: #252a35;
  font-size: clamp(17px, 3vw, 19px);
  font-weight: 800;
  line-height: 1.1;
}

.result-card-dark .metric strong {
  color: #f2f5f4;
}

.metric-profit small,
.metric-profit strong {
  color: #30a849;
}

/* ─────────────────────────────────────────────
   PAIN SECTION
   ───────────────────────────────────────────── */
.pain-section {
  background: #ffffff;
}

.pain-content {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 30px var(--section-px) 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-content h2 {
  max-width: 90%;
  margin: 0 auto;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(21px, 4.2vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #1C2A33;
}

.pain-content h2 strong {
  font-weight: 700;
}

.pain-content h2 span {
  color: var(--red);
}

.pain-subtitle {
  max-width: 90%;
  margin: 0 auto;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 3.5vw, 28px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #1C2A33;
}

.pain-subtitle strong {
  font-weight: 600;
}

/* Pain Visual: Image + Worry Cards */
.pain-visual {
  width: min(100%, 280px);
  height: auto;
  aspect-ratio: auto;
  position: relative;
  margin: 0 auto;
}

.pain-image {
  width: 100%;
  height: auto;
  aspect-ratio: 280 / 370;
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: cover;
  object-position: center center;
}

.worry-stack {
  width: 145px;
  position: absolute;
  left: -48px;
  top: 28px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.worry-card {
  min-height: 64px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 9px;
  background: #b82726;
  color: #ffffff;
  box-shadow: var(--card-shadow);
  font-size: clamp(10px, 2.2vw, 19px);
  font-weight: 800;
  line-height: 1.08;
}

.worry-card:nth-child(odd) {
  color: #ffe324;
}

.pain-note {
  max-width: 90%;
  margin: 10px auto 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(19px, 4vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: #000000;
}

.pain-note strong {
  font-weight: 600;
}

/* Alert Box */
.alert-box {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 22px var(--section-px);
  border-style: solid;
  border-width: 1px;
  border-color: #8D8D8D;
  border-radius: 20px;
  background-color: #a92c27;
  color: #ffffff;
  text-align: center;
}

.alert-icon-img {
  width: 140px;
  max-width: 60%;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.alert-box > div > strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(16px, 3.2vw, 26px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #FDFE45;
}

.alert-box p {
  margin: 0 0 12px;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(13px, 2.4vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
}

.alert-bottom-text {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.6vw, 20px);
  font-weight: 400;
  line-height: 1.4;
  color: #FFFFFF;
}

.alert-bottom-text strong {
  display: inline;
  margin-bottom: 0;
  font-weight: 700;
  color: #FFFFFF;
  font-size: inherit;
  letter-spacing: normal;
}

/* ─────────────────────────────────────────────
   NEXT STRIP (Separator / Second CTA)
   ───────────────────────────────────────────── */
.next-strip {
  padding: 32px var(--section-px);
  background: #FFFFFF;
  text-align: center;
}

.next-strip-kicker {
  display: block;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #ad2b2d;
  margin-bottom: 16px;
}

.next-strip-title {
  margin: 0 auto;
  max-width: 960px;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.8px;
  color: #000000;
}

.next-strip-title span {
  color: #0B74B3;
  font-weight: 700;
}

.next-strip-title br {
  display: none;
}

/* ─────────────────────────────────────────────
   BENEFITS SECTION
   ───────────────────────────────────────────── */
.benefits-section {
  padding: 42px var(--section-px);
  background-color: #FFFFFF;
}

.benefits-grid {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.benefit-card {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 14px 18px;
  border-radius: var(--card-radius);
  background: #dfeaf4;
  box-shadow: inset 0 -4px 0 rgba(11, 119, 183, 0.42);
  text-align: center;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.18);
  flex-shrink: 0;
}

.benefit-card p {
  margin: 0;
  color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.benefit-card strong {
  font-weight: 800;
}

/* Benefit Icons */
.chart-icon::before {
  content: "";
  width: 36px;
  height: 28px;
  border: 3px solid var(--dark);
  border-top-width: 5px;
  background:
    linear-gradient(90deg, #e52d2d 0 16%, transparent 16% 21%, #ffc928 21% 39%, transparent 39% 44%, #18b96b 44% 62%, transparent 62% 67%, var(--blue) 67% 84%, transparent 84%) bottom left / 100% 70% no-repeat;
}

.table-icon::before {
  content: "";
  width: 32px;
  height: 40px;
  border: 3px solid var(--blue);
  border-radius: 3px;
  background:
    linear-gradient(#ffffff 0 14px, transparent 14px),
    repeating-linear-gradient(180deg, #c7ddeb 0 3px, transparent 3px 10px);
}

.coin-icon::before {
  content: "R$";
  width: 38px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 3px solid #1d7d3c;
  border-radius: 4px;
  background: #8ee0a7;
  color: #1d5d31;
  font-size: 14px;
  font-weight: 900;
}

.house-icon::before {
  content: "";
  width: 40px;
  height: 30px;
  background: #ffd33d;
  border: 3px solid #1b2a34;
  clip-path: polygon(50% 0, 100% 38%, 100% 100%, 0 100%, 0 38%);
}

.tools-icon::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 4px solid var(--green);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.stop-loss-icon::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 40%, #ffffff 40% 60%, transparent 60%),
    var(--red);
}

/* ─────────────────────────────────────────────
   DELIVERABLES SECTION
   ───────────────────────────────────────────── */
.deliverables-section {
  padding: 46px var(--section-px) 50px;
  background: transparent;
  background-image: radial-gradient(at center center, #FFFFFF 0%, #DEE7EF 80%);
}

.deliverables-container {
  width: min(100%, 960px);
  margin: 0 auto;
}

.deliverables-header {
  margin: 0 auto 36px;
  text-align: center;
  max-width: 95%;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 4.2vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.8px;
  color: #1C2A33;
}

.deliverables-header span {
  color: #1C2A33;
  font-weight: 600;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Deliverable Card */
.deliverable-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px 18px;
  background-color: #FFFFFF;
  border: none;
  border-radius: 24px;
}

.deliverable-card-reverse {
  grid-template-columns: 1fr;
}

.deliverable-card-reverse .deliverable-graphic-wrapper {
  order: 1;
}

.deliverable-card-reverse .deliverable-info {
  order: 2;
}

.deliverable-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px 4px 4px;
}

.deliverable-title {
  margin: 0 0 12px;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 3.5vw, 30px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
  color: #0B74B3;
  text-align: center;
}

.deliverable-description {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.3vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: #111822;
  text-align: center;
}

.deliverable-graphic-wrapper {
  width: 100%;
}

.deliverable-graphic-bg {
  width: 100%;
  min-height: 220px;
  padding: 16px 12px;
  background-color: #DEE7EF;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* App Graphic Card (inside deliverables) */
.app-graphic-card {
  position: relative;
  width: 100%;
  padding: 18px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(11, 119, 183, 0.12);
  border: 1px solid rgba(11, 119, 183, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.graphic-card-header {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.graphic-module-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 1px;
}

.graphic-card-title {
  margin: 0;
  color: #101b27;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 800;
  line-height: 1.2;
}

.graphic-pill {
  display: inline-block;
  align-self: flex-start;
  margin-top: 2px;
  padding: 3px 8px;
  background: #eaf3fb;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  border-radius: 6px;
}

.graphic-data-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid #edf2f7;
}

.graphic-data-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  background: #f7fafc;
  border-radius: 8px;
  font-size: 11px;
}

.graphic-data-row span {
  color: #4a5568;
  font-weight: 600;
}

.graphic-data-row strong {
  color: #18b96b;
  font-weight: 700;
  font-size: 10px;
}

/* ─────────────────────────────────────────────
   BONUS SECTION
   ───────────────────────────────────────────── */
.bonus-section {
  padding: 0 0 50px 0;
  background: #ffffff;
}

.bonus-header-banner {
  background-color: #0B74B3;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 24px var(--section-px);
  text-align: center;
  margin-bottom: 36px;
}

.bonus-kicker {
  display: block;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(12px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: clamp(0.5px, 0.3vw, -1.1px);
  color: #FFFFFF;
  margin-bottom: 4px;
}

.bonus-banner-title {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 3.5vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #FFFFFF;
}

.bonus-container {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.bonus-card {
  background-color: #DEE7EF;
  border: none;
  border-radius: 24px;
  padding: 22px 18px;
  gap: 18px;
}

.bonus-card .deliverable-graphic-bg {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 16px 12px;
}

/* ─────────────────────────────────────────────
   TARGET AUDIENCE SECTION
   ───────────────────────────────────────────── */
.target-audience-section {
  padding: 50px var(--section-px);
  background: #ffffff;
}

.target-audience-title {
  margin: 0 auto 30px;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #0B74B3;
  max-width: 100%;
}

.target-audience-container {
  width: min(100%, 960px);
  margin: 0 auto;
}

.target-audience-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 24px;
  padding: 24px 20px;
  background-color: #DEE7EF;
  border: none;
  border-radius: 24px;
}

.target-audience-image-wrapper {
  width: 100%;
  border-radius: 16px;
  padding: 0;
  background-color: transparent;
  overflow: hidden;
}

.target-audience-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.target-audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.target-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.4vw, 16px);
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
}

.target-audience-list .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #a92c27;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}

.target-audience-cta-text {
  margin-top: 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.target-audience-cta-text h3 {
  margin: 0 0 12px;
  color: #101b27;
  font-size: clamp(18px, 3.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 720px;
}

.target-audience-cta-text p {
  margin: 0;
  color: var(--blue);
  font-size: clamp(16px, 3vw, 27px);
  font-weight: 700;
  line-height: 1.25;
  max-width: 520px;
}

/* ─────────────────────────────────────────────
   RECAP SECTION
   ───────────────────────────────────────────── */
.recap-section {
  padding: 50px var(--section-px);
  background: transparent;
  background-image: radial-gradient(at center center, #FFFFFF 0%, #DEE7EF 80%);
}

.recap-container {
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: center;
}

.recap-kicker {
  display: none;
}

.recap-title {
  margin: 0 auto 32px;
  text-align: center;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 4.2vw, 36px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #0B74B3;
}

.recap-title span {
  color: #0B74B3;
  font-weight: 600;
}

.recap-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.recap-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.recap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 0;
  border-bottom: 1px dashed #cbd6e2;
}

.recap-item:last-child {
  border-bottom: 1px dashed #cbd6e2;
}

.recap-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.recap-check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0B74B3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.recap-item-name {
  font-family: "Poppins", Sans-serif;
  font-size: clamp(12px, 2.2vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  color: #000000;
}

.recap-item-price {
  flex-shrink: 0;
  white-space: nowrap;
}

.recap-item-price del {
  font-family: "Poppins", Sans-serif;
  font-size: clamp(13px, 2.2vw, 18px);
  font-weight: 700;
  color: #ad2b2d;
  text-decoration: line-through;
  text-decoration-color: #ad2b2d;
}

.recap-total {
  margin-top: 28px;
  padding-top: 20px;
}

.recap-total h3 {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 3.5vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #1C2A33;
}

.recap-total del {
  font-weight: 700;
  color: #ad2b2d;
  text-decoration: line-through;
  text-decoration-color: #ad2b2d;
}

/* ─────────────────────────────────────────────
   PRICING SECTION
   ───────────────────────────────────────────── */
.pricing-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0 0 50px;
  background: #ffffff;
}

.pricing-section-bottom {
  padding: 75px 0 75px;
  background: #ffffff;
}

.pricing-section-bottom .pricing-card {
  margin: 0 auto;
}

.pricing-banner {
  background: #0B74B3;
  width: 100%;
  padding: 22px var(--section-px);
  text-align: center;
  margin-bottom: 32px;
}

.pricing-banner p {
  margin: 0 auto;
  max-width: 900px;
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(16px, 3.2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.pricing-banner strong {
  font-weight: 500;
}

.pricing-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: #EAF1F7;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #d0deea;
  box-shadow: 0 4px 16px rgba(11, 116, 179, 0.08);
}

.pricing-card-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pricing-card-logo .brand-mark {
  width: 44px;
  height: 44px;
  padding: 7px;
  gap: 4px;
  border-radius: 10px;
}

.pricing-card-logo .brand-mark span {
  width: auto;
  height: auto;
  border-radius: 3px;
}

.pricing-card-logo .brand-copy {
  text-align: left;
}

.pricing-card-logo .brand-kicker {
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}

.pricing-card-logo .brand-title {
  font-size: 22px;
  line-height: 1;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  border-top: 2px dashed #cbd6e2;
  margin-bottom: 20px;
}

.pricing-from {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 500;
  color: #1C2A33;
  margin-bottom: 10px;
}

.pricing-from del {
  color: #ae2028;
  text-decoration: line-through;
  text-decoration-color: #ae2028;
  font-weight: 700;
}

.pricing-installment {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pricing-installment-qty {
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  color: #0B74B3;
  line-height: 1;
}

.pricing-installment-value {
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  color: #0B74B3;
  line-height: 1;
}

.pricing-cash {
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 500;
  color: #6b7d8e;
  margin-bottom: 24px;
}

@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 140, 74, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(42, 140, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 140, 74, 0);
  }
}

.pricing-cta-btn {
  display: inline-block;
  width: 100%;
  max-width: 360px;
  background: #2a8c4a;
  color: #ffffff;
  font-size: clamp(14px, 2.4vw, 18px);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  margin-bottom: 24px;
  cursor: pointer;
  animation: ctaPulse 1.8s infinite;
  transition: background 0.25s ease;
}

.pricing-cta-btn:hover {
  background: #238840;
}

.pricing-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-selo-img {
  width: min(80%, 280px);
  height: auto;
  max-height: 32px;
  object-fit: contain;
}

/* ─────────────────────────────────────────────
   DELIVERY PROCESS SECTION
   ───────────────────────────────────────────── */
.delivery-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 60px var(--section-px) 70px;
  background: #EAF1F7;
  text-align: center;
}

.delivery-container {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.delivery-title {
  margin: 0 0 40px 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #1C2A33;
  letter-spacing: -0.5px;
}

.delivery-title span {
  color: #0B74B3;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.delivery-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #d0e0ed;
  border-bottom: 5px solid #0B74B3;
  box-shadow: none;
  transition: none;
}

.delivery-card:hover {
  transform: none;
  box-shadow: none;
}

.delivery-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-card-title {
  margin: 0 0 10px 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 800;
  color: #1C2A33;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  line-height: 1.25;
}

.delivery-card-text {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 400;
  line-height: 1.25;
  color: #1C2A33;
}

@media (min-width: 761px) {
  .delivery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ─────────────────────────────────────────────
   OPTIONS SECTION ("Agora, você tem duas opções")
   ───────────────────────────────────────────── */
.options-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 50px;
  padding: 60px var(--section-px) 90px;
  background: #0B74B3;
  color: #ffffff;
  text-align: center;
}

.options-container {
  width: min(100%, 960px);
  margin: 0 auto;
}

.options-title {
  margin: 0 0 40px 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(22px, 4.2vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 44px;
}

.option-card {
  padding: 32px 24px;
  border-radius: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.option-card-bad {
  background: #FFF5F5;
  border: 2px solid #E53935;
  border-bottom: 5px solid #D32F2F;
}

.option-card-bad .option-card-title {
  color: #C62828;
}

.option-icon-bad {
  background: #E53935;
}

.option-card-good {
  background: #F2FAF4;
  border: 2px solid #2E7D32;
  border-bottom: 5px solid #1B5E20;
}

.option-card-good .option-card-title {
  color: #2E7D32;
}

.option-icon-good {
  background: #2E7D32;
}

.option-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-card-title {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(20px, 3.5vw, 26px);
  font-weight: 800;
  line-height: 1;
}

.option-card-text {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 400;
  line-height: 1.45;
  color: #2C3E50;
}

.options-bottom-text {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.options-subtitle-main {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
}

.options-subtitle-cta {
  margin: 0;
  font-family: "Poppins", Sans-serif;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: #FFD700;
}

@media (min-width: 761px) {
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}


/* ═════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═════════════════════════════════════════════ */

/* ─── SMALL PHONES (≤ 380px) ────────────────── */
@media (max-width: 380px) {
  .worry-stack {
    width: 130px;
    left: -40px;
    top: 20px;
    gap: 8px;
  }

  .worry-card {
    min-height: 56px;
    padding: 6px 8px;
    font-size: 9px;
  }

  .pain-visual {
    width: min(100%, 240px);
  }

  .pricing-comparison {
    width: min(100%, 300px);
  }

  .price-label {
    width: min(96%, 130px);
    height: 40px;
    grid-template-columns: 42px 1fr;
  }

  .price-label-icon {
    width: 44px;
    height: 44px;
    font-size: 28px;
    left: -6px;
  }

  .price-label strong {
    font-size: 10px;
  }
}

/* ─── TABLETS & SMALL LANDSCAPE (≥ 481px) ──── */
@media (min-width: 481px) {
  :root {
    --section-px: 24px;
  }

  .brand-bar {
    padding: 18px 0;
  }

  .brand {
    gap: 14px;
  }

  .brand-kicker {
    font-size: 12px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    gap: 5px;
    padding: 8px;
  }

  .hero {
    padding: 28px var(--section-px) 46px;
  }

  .hero h1 {
    max-width: 85%;
  }

  .copy-circle {
    width: 40px;
    height: 40px;
  }

  .pricing-comparison {
    width: min(100%, 520px);
    margin-top: 58px;
    gap: 8px;
  }

  .price-card {
    min-height: 320px;
    padding-top: 60px;
    border-radius: 14px;
  }

  .price-card::before {
    inset: 60px 0 0;
    border-radius: 0 0 14px 14px;
  }

  .price-label {
    width: min(86%, 200px);
    height: 58px;
    top: -30px;
    grid-template-columns: 62px 1fr;
    border-radius: 9px;
  }

  .price-label-icon {
    width: 66px;
    height: 66px;
    left: -14px;
    top: -5px;
    font-size: 48px;
  }

  .price-label strong {
    font-size: 18px;
    padding-right: 8px;
  }

  .compact-row {
    min-height: 68px;
    gap: 6px;
  }

  .compact-row small {
    font-size: 10px;
  }

  .compact-row span {
    width: 68px;
    height: 11px;
  }

  .price-card-profit .compact-row span {
    width: 58px;
  }

  .results-content h2 {
    max-width: 500px;
    font-weight: 600;
  }

  .results-grid {
    max-width: 420px;
    gap: 72px;
  }

  .result-card {
    min-height: 360px;
    padding: 68px 16px 16px;
    border-radius: var(--card-radius);
  }

  .pain-content {
    padding: 34px var(--section-px) 44px;
  }

  .pain-visual {
    width: min(100%, 420px);
  }

  .worry-stack {
    width: 180px;
    left: -30px;
    top: 40px;
    gap: 12px;
  }

  .worry-card {
    min-height: 76px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .alert-box {
    flex-direction: row;
    text-align: left;
    gap: 22px;
    padding: 24px;
    border-radius: 24px;
  }

  .alert-icon-img {
    width: 180px;
    max-width: 30%;
  }

  .benefits-grid {
    gap: 10px;
  }

  .benefit-card {
    min-height: 200px;
    padding: 24px 18px 20px;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }

  .deliverables-section {
    padding: 50px var(--section-px) 60px;
  }

  .deliverable-card,
  .deliverable-card-reverse {
    padding: 28px 24px;
    gap: 24px;
    border-radius: 28px;
  }

  .deliverable-graphic-bg {
    min-height: 260px;
    padding: 16px;
    border-radius: 20px;
  }

  .bonus-card {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .target-audience-card {
    padding: 28px 24px;
    border-radius: 28px;
    gap: 28px;
  }

  .recap-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .recap-item {
    gap: 16px;
    padding: 15px 0;
  }

  .pricing-card {
    padding: 36px 30px;
  }
}

/* ─── TABLETS LANDSCAPE & SMALL DESKTOP (≥ 761px) ─ */
@media (min-width: 761px) {
  :root {
    --section-px: 32px;
  }

  .brand-bar {
    padding: 20px 0;
  }

  .brand {
    gap: 16px;
  }

  .brand-kicker {
    font-size: 13px;
    letter-spacing: 3px;
    margin-bottom: 7px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    gap: 6px;
    padding: 9px;
  }

  .hero {
    padding: 30px 0 50px 0;
  }

  .hero h1 {
    max-width: 78%;
  }

  .hero h1 br {
    display: inline;
  }

  .copy-pill {
    padding: 7px 24px 7px 10px;
  }

  .copy-circle {
    width: 42px;
    height: 42px;
  }

  .copy-icon {
    width: 25px;
    height: 29px;
  }

  .copy-icon::before,
  .copy-icon::after {
    width: 17px;
    height: 24px;
    border-radius: 6px;
  }

  .copy-text {
    white-space: nowrap;
  }

  .pricing-comparison {
    width: min(100%, 720px);
    margin-top: 74px;
    gap: 10px;
  }

  .price-card {
    min-height: 382px;
    padding-top: 70px;
    border-radius: var(--card-radius);
  }

  .price-card::before {
    inset: 70px 0 0;
    border-radius: 0 0 var(--card-radius) var(--card-radius);
  }

  .price-label {
    width: min(78%, 260px);
    height: 78px;
    top: -39px;
    grid-template-columns: 82px 1fr;
    border-radius: 11px;
  }

  .price-label-icon {
    width: 92px;
    height: 92px;
    left: -22px;
    top: -7px;
    font-size: 70px;
  }

  .price-label strong {
    font-size: 28px;
    padding-right: 10px;
    line-height: 0.9;
  }

  .compact-row {
    min-height: 78px;
    gap: 7px;
  }

  .compact-row small {
    font-size: 11px;
  }

  .compact-row span {
    width: 82px;
    height: 14px;
  }

  .price-card-profit .compact-row span {
    width: 72px;
  }

  /* Results: 3-column grid on desktop */
  .results-section {
    padding: 50px var(--section-px);
  }

  .results-content h2 {
    max-width: 70%;
    font-weight: 600;
  }

  .results-content h2 br {
    display: none;
  }

  .results-grid {
    max-width: 100%;
    margin-top: 65px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .result-card {
    min-height: 380px;
    padding: 70px 18px 18px;
    border-radius: var(--card-radius);
  }

  .result-badge {
    width: min(85%, 260px);
    min-height: 74px;
    top: -38px;
    border-radius: 12px;
  }

  /* Pain section desktop */
  .pain-content {
    padding: 30px 0 50px 0;
    gap: 22px;
  }

  .pain-content h2 {
    max-width: 63%;
  }

  .pain-subtitle {
    max-width: 40%;
  }

  .pain-visual {
    width: min(100%, 700px);
    height: 560px;
    aspect-ratio: unset;
  }

  .pain-image {
    width: 560px;
    height: 560px;
    aspect-ratio: unset;
    margin-left: auto;
  }

  .worry-stack {
    width: 250px;
    left: 0;
    top: 58px;
    gap: 16px;
  }

  .worry-card {
    min-height: 104px;
    padding: 12px 18px;
    font-size: 19px;
  }

  .pain-note {
    max-width: 82%;
  }

  .next-strip-title br {
    display: inline;
  }

  /* Benefits: 3-column grid on desktop */
  .benefits-section {
    padding: 50px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .benefit-card {
    min-height: 226px;
    padding: 28px 22px 24px;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  /* Benefit icons at full size on desktop */
  .chart-icon::before {
    width: 42px;
    height: 32px;
  }

  .table-icon::before {
    width: 38px;
    height: 46px;
  }

  .coin-icon::before {
    width: 44px;
    height: 32px;
    font-size: 17px;
  }

  .house-icon::before {
    width: 46px;
    height: 34px;
  }

  .tools-icon::before {
    width: 42px;
    height: 42px;
  }

  .stop-loss-icon::before {
    width: 42px;
    height: 42px;
  }

  /* Deliverables: 2-column layout on desktop */
  .deliverables-section {
    padding: 50px 0 60px 0;
  }

  .deliverables-header {
    margin-bottom: 54px;
    max-width: 85%;
  }

  .deliverables-list {
    gap: 36px;
  }

  .deliverable-card {
    grid-template-columns: 1fr 1.1fr;
    gap: 32px;
    padding: 32px;
    border-radius: 32px;
  }

  .deliverable-card-reverse {
    grid-template-columns: 1.1fr 1fr;
  }

  .deliverable-card-reverse .deliverable-graphic-wrapper {
    order: 2;
  }

  .deliverable-card-reverse .deliverable-info {
    order: 1;
  }

  .deliverable-info {
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }

  .deliverable-title {
    text-align: left;
    margin-bottom: 16px;
  }

  .deliverable-description {
    text-align: left;
  }

  .deliverable-graphic-bg {
    min-height: 290px;
    padding: 16px;
    border-radius: 24px;
  }

  .app-graphic-card {
    padding: 22px 20px;
    border-radius: 18px;
    gap: 14px;
  }

  .graphic-module-tag {
    font-size: 10px;
  }

  .graphic-pill {
    padding: 3px 10px;
    font-size: 11px;
  }

  .graphic-data-table {
    gap: 8px;
    padding-top: 10px;
  }

  .graphic-data-row {
    padding: 8px 12px;
    font-size: 12px;
  }

  .graphic-data-row strong {
    font-size: 12px;
  }

  /* Bonus desktop */
  .bonus-section {
    padding: 0 0 80px 0;
  }

  .bonus-header-banner {
    padding: 20px 0;
    margin-bottom: 56px;
  }

  .bonus-card {
    padding: 32px;
    border-radius: 32px;
    gap: 32px;
  }

  .bonus-card .deliverable-graphic-bg {
    padding: 16px;
    border-radius: 24px;
  }

  /* Target audience desktop */
  .target-audience-section {
    padding: 50px 0;
  }

  .target-audience-title {
    margin-bottom: 46px;
  }

  .target-audience-card {
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    padding: 32px;
    border-radius: 32px;
  }

  .target-audience-list li {
    font-size: 16px;
    gap: 14px;
  }

  .target-audience-list .check-icon {
    width: 26px;
    height: 26px;
    font-size: 14px;
  }

  .target-audience-cta-text {
    margin-top: 56px;
  }

  .target-audience-cta-text h3 {
    margin-bottom: 20px;
  }

  /* Recap desktop */
  .recap-section {
    padding: 50px 0;
  }

  .recap-title {
    margin-bottom: 46px;
  }

  .recap-card {
    padding: 40px 48px;
    border-radius: 32px;
  }

  .recap-item {
    gap: 20px;
    padding: 16px 0;
  }

  .recap-check-icon {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }

  /* Pricing desktop */
  .pricing-section {
    padding: 0 0 80px;
  }

  .pricing-section-bottom {
    padding: 75px 0 80px;
  }

  .pricing-banner {
    padding: 20px 0;
    margin-bottom: 48px;
  }

  .pricing-container {
    max-width: 480px;
    padding: 0 20px;
  }

  .pricing-card {
    padding: 40px 36px;
    border-radius: 28px;
  }
} /* end @media (min-width: 761px) */

/* ─────────────────────────────────────────────
   SITE FOOTER
   ───────────────────────────────────────────── */
.site-footer {
  width: 100%;
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  text-align: center;
}

.footer-main {
  background: #286493;
  padding: 50px var(--section-px) 40px;
}

.footer-container {
  width: min(100%, 860px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-brand .brand-title {
  color: #ffffff;
}

.footer-brand .brand-kicker {
  color: #d0e4f5;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-contact p {
  margin: 0;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 500;
  color: #ffffff;
}

.footer-contact a {
  color: #ffffff;
  text-decoration: underline;
  font-size: clamp(16px, 3vw, 22px);
  font-weight: 500;
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: clamp(15px, 2.8vw, 17px) !important;
  font-weight: 600 !important;
  border-radius: 999px;
  transition: background 0.2s, transform 0.15s;
}

.footer-whatsapp-btn:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
}


.footer-disclaimer {
  margin: 8px 0;
  font-size: clamp(12px, 2.2vw, 14px);
  font-weight: 400;
  line-height: 1.55;
  color: #d6e8f7;
  max-width: 780px;
}

.footer-copyright {
  margin: 0;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
  color: #ffffff;
}

.footer-subbar {
  background: #184163;
  padding: 10px var(--section-px);
  text-align: center;
}

.footer-subbar p {
  margin: 0;
  font-size: clamp(10px, 1.8vw, 12px);
  font-weight: 400;
  color: #d6e8f7;
  letter-spacing: 0.3px;
}


