* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

button,
a,
[role="button"],
input,
select,
textarea {
  touch-action: manipulation;
}

input,
select,
textarea {
  font-size: 16px !important;
}

:root {
  --green: #52b788;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --gold: #2d6a4f;
  --gold-light: #52b788;
  --gold-pale: #e8f5ee;
  --blue: #52b788;
  --blue-light: #52b788;
  --blue-pale: #d8f3dc;
  --dark: #1b2e20;
  --body: #1b3a28;
  --muted: #5a7a65;
  --bg: #ffffff;
  --white: #ffffff;
  --border: #c8e0d0;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(45, 106, 79, 0.10);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior: none;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overscroll-behavior-y: none;
}

button,
a {
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

.page {
  display: none;
  animation: fadeIn .45s ease;
  max-width: 1024px;
  margin: 0 auto;
  width: 100%;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── AGE SELECTION ── */
.age-select-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.age-select-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .75rem;
}

.age-select-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2rem;
}

.age-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.age-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  padding: 0;
  transition: transform .2s, box-shadow .2s;
}

.age-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, .25);
}

.age-card img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.age-card-bar {
  background: #2d6a4f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem 1rem;
  font-size: .92rem;
  font-weight: 700;
}

.age-card-arrow {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.age-select-legal {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.7;
}

.age-select-legal a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .age-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ── SOCIAL PROOF PAGE ── */
#page-proof {
  display: none;
  min-height: 100vh;
  flex-direction: column;
  justify-content: space-between;
}

#page-proof.active {
  display: flex;
}

.proof-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 2rem 1.5rem;
}

.proof-content {
  flex: 1;
}

.proof-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: #2d6a4f;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.proof-title span {
  color: #2d6a4f;
}

.proof-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--body);
  line-height: 1.6;
}

.proof-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.proof-img {
  width: 100%;
  max-width: 340px;
  border-radius: 16px;
  display: block;
  height: auto;
}

.proof-footer {
  padding: 1.2rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

.btn-proof-cta {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.btn-proof-cta:hover {
  background: #2d6a4f;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .proof-wrap {
    flex-direction: column-reverse;
    padding: 2rem 1.5rem 1rem;
    gap: 1.5rem;
  }

  .proof-img {
    max-width: 240px;
  }

  .proof-title {
    text-align: center;
  }

  .proof-sub {
    text-align: center;
  }
}

/* ── NAME PAGE ── */
#page-name {
  display: none;
  min-height: 100vh;
  flex-direction: column;
}

#page-name.active {
  display: flex;
}

.name-page-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
  gap: 1rem;
}

.name-page-title {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}

.name-page-hint {
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: .5rem;
}

.btn-name-cta {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: .5rem;
}

.btn-name-cta:hover:not(:disabled) {
  background: #2d6a4f;
  transform: translateY(-2px);
}

.btn-name-cta:disabled {
  opacity: .4;
  cursor: default;
}

/* ── SATISFIED PAGE ── */
#page-satisfied {
  display: none;
  min-height: 100vh;
  flex-direction: column;
}

#page-satisfied.active {
  display: flex;
}

.sq-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.sq-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 2rem;
}

.sq-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sq-opt {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
  width: 100%;
}

.sq-opt:hover {
  border-color: var(--green);
  background: #e8f5ee;
}

.sq-opt--selected {
  border-color: var(--green);
  background: #e8f5ee;
}

.sq-opt-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 8px;
}

.sq-opt-text {
  flex: 1;
  font-size: .97rem;
  color: var(--dark);
  font-weight: 500;
}

.sq-opt-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
  position: relative;
}

.sq-opt--selected .sq-opt-radio {
  border-color: var(--green);
  background: var(--green);
}

.sq-opt--selected .sq-opt-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

/* ── QUESTION PAGE ── */
#page-question {
  display: none;
  min-height: 100vh;
  flex-direction: column;
}

#page-question.active {
  display: flex;
}

.pq-layout {
  display: flex;
  align-items: stretch;
  flex: 1;
}

.pq-main {
  flex: 1;
  padding: 3rem 3rem 3rem;
  min-width: 0;
}

.pq-title {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 2rem;
  max-width: 480px;
}

.pq-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 420px;
}

.pq-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: left;
}

.pq-opt:hover {
  border-color: var(--green);
  background: #e8f5ee;
}

.pq-opt--selected {
  border-color: var(--green);
  background: #e8f5ee;
}

.pq-opt-text {
  font-size: .97rem;
  color: var(--dark);
  font-weight: 500;
}

.pq-opt-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: border-color .15s, background .15s;
  position: relative;
}

.pq-opt--selected .pq-opt-radio {
  border-color: var(--green);
  background: var(--green);
}

.pq-opt--selected .pq-opt-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.pq-img-wrap {
  width: 42%;
  max-width: 480px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

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

@media (max-width: 640px) {
  .pq-layout {
    flex-direction: column-reverse;
  }

  .pq-main {
    padding: 2rem 1.5rem 2rem;
  }

  .pq-img-wrap {
    width: 100%;
    max-width: 100%;
  }

  .pq-img {
    width: 100%;
  }

  .pq-options {
    max-width: 100%;
  }
}

/* ── HERO ── */
.hero {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 25px;
}


/* Eyebrow da marca dentro da faixa verde */
.hero__overlay::before {
  content: '🌿 O Reset do Apetite';
  color: var(--body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Área de conteúdo — fundo branco (60%) */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

/* Badge — acento verde (10%) */
.hero-badge {
  display: inline-block;
  background: #52b788;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: 1.5rem;
  order: 10;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.18;
  max-width: 780px;
  margin-bottom: 1.2rem;
}

.hero h1 span {
  color: #2d6a4f;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.hero-img-desc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  max-width: 480px;
  margin: 0 auto 2.2rem;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #52b788, #2d6a4f);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 2.4rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(45, 106, 79, .45);
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(45, 106, 79, .55);
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.8rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

.trust-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
}

/* ── QUIZ TOAST ── */
.quiz-toast {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .5s ease, opacity .5s ease, margin .5s ease;
  margin-bottom: 0;
}

.quiz-toast.visible {
  max-height: 80px;
  opacity: 1;
  margin-bottom: 1.2rem;
}

.quiz-toast-inner {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-pale);
  border: 1px solid rgba(18, 99, 160, .2);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .9rem;
  color: var(--blue);
  font-weight: 500;
}

/* ── QUIZ TOPBAR ── */
.quiz-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1.25rem;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.quiz-topbar-back {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, background .2s;
  flex-shrink: 0;
}

.quiz-topbar-back:hover {
  border-color: var(--green);
  background: #e8f5ee;
}

.quiz-topbar-back[style*="hidden"] {
  visibility: hidden;
}

.quiz-topbar-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .02em;
}

.quiz-topbar-menu {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  cursor: default;
}

.quiz-topbar-progressbar {
  height: 4px;
  background: var(--border);
  width: 100%;
}

.quiz-topbar-progressfill {
  height: 100%;
  background: #2d6a4f;
  transition: width .5s ease;
  border-radius: 0 2px 2px 0;
}

/* ── QUIZ ── */
.quiz-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  transition: max-width .3s ease;
}

.quiz-wrap--wide {
  max-width: 920px;
}

.quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}


.progress-bar {
  background: var(--border);
  border-radius: 8px;
  height: 8px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #52b788, #2d6a4f);
  border-radius: 8px;
  transition: width .5s ease;
}

.q-step {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: .4rem;
}

.q-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .6rem;
}

.q-hint {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

/* ── WEIGHT PICKER ── */
.weight-picker {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  margin-top: .5rem;
}

.weight-display {
  margin-bottom: 1.5rem;
  line-height: 1;
}

.weight-value {
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--green);
  font-family: 'Playfair Display', serif;
}

.weight-unit {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green);
}

.weight-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-bottom: 1.2rem;
}

.weight-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: background .15s, border-color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weight-btn:hover {
  background: var(--green-pale);
  border-color: var(--green-light);
}

.weight-btn--lg {
  font-size: .95rem;
  background: var(--white);
}

.goal-badge-wrap {
  margin-top: 1rem;
  text-align: center;
}

.goal-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  border: 1.5px solid var(--green-light);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .9rem;
  font-weight: 600;
}

.weight-range {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--muted);
  border-top: 1px dashed var(--border);
  padding-top: .8rem;
  margin-top: .2rem;
}

/* ── GOAL CONFIRM ── */
.goal-confirm {
  text-align: center;
}

.goal-confirm-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.gc-icon {
  font-size: 3rem;
  line-height: 1;
}

.gc-icon--person {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.gc-checks {
  display: flex;
  flex-direction: column;
  font-size: .85rem;
  line-height: 1.5;
}

.gc-arrow {
  font-size: 1.5rem;
  color: var(--muted);
}

.goal-confirm-card {
  background: #e8f5ee;
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
}

.gc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .5rem;
}

.gc-title span {
  color: var(--green);
}

.gc-meta {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .8rem;
  font-weight: 500;
}

.gc-body {
  font-size: .92rem;
  color: var(--body);
  line-height: 1.6;
}

.gc-body strong {
  color: var(--green);
}

/* ── INFO STEP ── */
.info-step {
  text-align: center;
}

.info-body {
  font-size: .97rem;
  color: var(--body);
  line-height: 1.7;
  margin: .5rem 0 1.5rem;
}

.info-product-img {
  font-size: 3.5rem;
  margin: 0 auto 1.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-flow {
  background: #e8f5ee;
  border-radius: var(--radius);
  padding: 1rem 1.2rem 1.2rem;
  margin-bottom: 1.2rem;
}

.info-flow-badge {
  display: inline-block;
  background: var(--green-light);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  border-radius: 20px;
  padding: .2rem .8rem;
  margin-bottom: .9rem;
}

.info-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  color: var(--muted);
}

.flow-step-icon {
  font-size: 1.6rem;
}

.flow-arrow {
  font-size: 1.1rem;
  color: var(--muted);
}

.info-highlight {
  background: #fffbea;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: .85rem 1rem;
  font-size: .9rem;
  color: var(--body);
  text-align: left;
  line-height: 1.6;
}

.name-input-wrap {
  width: 100%;
  margin-top: .5rem;
}

.name-input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}

.name-input:focus {
  border-color: var(--green-light);
}

.name-input::placeholder {
  color: var(--muted);
}

/* ── NOME DESTACADO ── */
.name-highlight {
  color: var(--green);
  font-weight: 700;
}

/* ── ANALISE PROMO STEP ── */
.analise-promo {
  display: flex;
  align-items: center;
  gap: 28px;
}

.analise-promo__text {
  flex: 1 1 0;
  min-width: 0;
}

.analise-promo__greeting {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.analise-promo__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 14px;
}

.analise-promo__p {
  font-size: 0.92rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: 10px;
}

.analise-promo__p--accent {
  color: var(--green);
  font-weight: 500;
}

.analise-promo__img-wrap {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.analise-promo__img {
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  display: block;
}

@media (max-width: 580px) {
  .analise-promo {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .analise-promo__img {
    max-width: 100%;
    width: 100%;
  }
}

/* ── SAÚDE PERFIL ── */
.sp-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 20px;
}

.sp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.sp-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-bar {
  position: relative;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(to right,
      #3b82f6 0%, #3b82f6 14%,
      #22c55e 14%, #22c55e 40%,
      #f59e0b 40%, #f59e0b 60%,
      #ef4444 60%, #ef4444 100%);
}

.sp-bar-marker {
  position: absolute;
  top: -28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sp-bar-marker::after {
  content: '';
  width: 2px;
  height: 20px;
  background: var(--dark);
  margin-top: 2px;
}

.sp-bar-marker-label {
  background: var(--dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.sp-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
}

.sp-bar-cats {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: var(--muted);
}

.sp-risk {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.sp-risk--red {
  background: #fff0f0;
  border: 1px solid #ef4444;
  color: #b91c1c;
}

.sp-risk--orange {
  background: #fff8f0;
  border: 1px solid #f59e0b;
  color: #92400e;
}

.sp-risk--green {
  background: #f0fdf4;
  border: 1px solid #22c55e;
  color: #166534;
}

.sp-risk--blue {
  background: #eff6ff;
  border: 1px solid #3b82f6;
  color: #1b4332;
}

.sp-risk-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.sp-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.sp-info-label {
  font-size: 0.8rem;
  color: var(--muted);
}

.sp-info-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

.sp-info-val--accent {
  color: var(--green);
}

/* ── IMC BOX ── */
.imc-box {
  margin-top: 16px;
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid transparent;
}

.imc-box--orange {
  background: #fff8f0;
  border-color: #f59e0b;
}

.imc-box--red {
  background: #fff0f0;
  border-color: #ef4444;
}

.imc-box--green {
  background: #f0fdf4;
  border-color: #22c55e;
}

.imc-box--blue {
  background: #eff6ff;
  border-color: #3b82f6;
}

.imc-box__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.imc-box__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── PROMO + QUESTION ── */
.promo-q {
  margin-top: 28px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.promo-q__text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.promo-q__opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-q__opt {
  cursor: pointer;
}

.options-grid {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.options-grid--images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 1.3rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: 1rem;
}

.opt:hover {
  border-color: var(--green-light);
  background: var(--green-pale);
}

.opt.selected {
  border-color: var(--green);
  background: var(--green-pale);
}

.opt-icon {
  font-size: 1.3rem;
  min-width: 28px;
  text-align: center;
}

.opt--detailed {
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.1rem;
}

.opt-icon-box {
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opt-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 12px;
}

.opt-title {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
}

.opt-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.opt-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  margin-left: 12px;
  transition: background .15s, border-color .15s;
}

.opt.selected .opt-check {
  background: var(--green-light);
  border-color: var(--green-light);
}

.opt--image {
  flex-direction: column;
  padding: 1.2rem;
  text-align: center;
  gap: 10px;
  min-height: 180px;
}

.opt--grid-icon {
  position: relative;
  justify-content: center;
  min-height: 130px;
}

.opt-cb {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  transition: background .15s, border-color .15s;
}

.opt.selected .opt-cb {
  background: var(--green-light);
  border-color: var(--green-light);
}

.opt-big-icon {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
}

.opt-img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 8px;
}

.opt-text {
  font-weight: 600;
  font-size: .95rem;
  color: var(--dark);
}

.multi-hint {
  font-size: 12px;
  color: var(--muted);
  text-align: right;
  margin-top: .5rem;
  font-style: italic;
}

.quiz-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
}

.btn-back {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: .7rem 1.6rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: .9rem;
  transition: border-color .2s;
}

.btn-back:hover {
  border-color: var(--muted);
}

.btn-next {
  background: linear-gradient(135deg, #52b788, #2d6a4f);
  color: #fff;
  border: none;
  padding: .8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: transform .2s;
  width: 100%;
}

.btn-next:hover {
  transform: translateY(-2px);
}

.btn-next:disabled {
  opacity: .4;
  cursor: default;
  transform: none;
}

/* ── RESULT TOAST ── */
.result-toast {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .4s ease, margin .5s ease;
  margin: 0;
}

.result-toast.visible {
  max-height: 100px;
  opacity: 1;
  margin: 1.2rem auto 0;
  max-width: 680px;
  padding: 0 1.5rem;
}

.result-toast-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: .85rem 1.1rem;
}

.result-toast-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.result-toast-text {
  flex: 1;
}

.result-toast-text strong {
  display: block;
  font-size: .88rem;
  color: #92400e;
  font-weight: 700;
  line-height: 1.3;
}

.result-toast-text span {
  font-size: .78rem;
  color: #b45309;
}

/* ── RESULTADO ── */
.result-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.diag-title {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.diag-title span {
  color: var(--green);
}

.resultado-analise-img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 1rem auto 1.5rem;
  border-radius: 12px;
}

.diag-title strong {
  color: var(--green);
}

/* IMC Card */
.diag-imc-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 1.5rem 1.2rem;
  text-align: center;
  margin-bottom: 1.2rem;
}

.diag-imc-value {
  font-size: 4rem;
  font-weight: 900;
  color: var(--green);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.diag-imc-label {
  font-size: .95rem;
  color: var(--muted);
  margin: .4rem 0 1.2rem;
}

.diag-imc-label strong {
  color: var(--dark);
}

.diag-alerts {
  text-align: left;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.diag-alerts-title {
  font-size: .88rem;
  font-weight: 700;
  color: #c53030;
  margin-bottom: .7rem;
}

.diag-alert-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.diag-alert-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .92rem;
  color: var(--body);
}

.diag-alert-x {
  font-size: 1rem;
  flex-shrink: 0;
}

/* Secret tip */
.diag-secret {
  background: #e8f5ee;
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .9rem;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Benefits */
.diag-benefits {
  margin-bottom: 1.5rem;
}

.diag-benefits h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1rem;
}

.diag-benefits h3 span {
  color: var(--green);
}

.diag-benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.diag-benefit-list li {
  background: #e8f5ee;
  border: 1px solid #b7e4c7;
  border-radius: 10px;
  padding: .75rem 1rem;
  font-size: .92rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .7rem;
}

.diag-benefit-list li::before {
  content: '✅';
  font-size: 1rem;
  flex-shrink: 0;
}

/* Testimonial */
.diag-testimonial {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.diag-quote {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.diag-author {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .4rem;
}

.diag-stars {
  color: #f6ad55;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.btn-result-cta {
  width: 100%;
  font-size: 1rem;
  letter-spacing: .05em;
}

.resultado-analise-img {
  width: 100%;
  border-radius: 12px;
  display: block;
  margin-bottom: 1rem;
}

/* ── PAGE COMMITMENT ── */
.commitment-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem 0;
  max-width: 680px;
  margin: 0 auto;
}

.commitment-back {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--blue);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.commitment-progress {
  flex: 1;
  margin-bottom: 0;
}

.commitment-progress .progress-fill {
  background: linear-gradient(90deg, #52b788, #2d6a4f);
}

.commitment-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.commitment-hero-img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.commitment-label {
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 99px;
  padding: .55rem 1.2rem;
  text-align: center;
}

.commitment-question {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  line-height: 1.45;
}

.commitment-question span {
  color: var(--blue);
}

.commitment-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.commitment-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.commitment-opt:hover {
  border-color: var(--blue);
  background: #e8f5ee;
}

.commitment-opt-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.commitment-opt-text {
  flex: 1;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
}

.commitment-opt-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

/* ── PAGE DREAM-BODY ── */
.dream-body-question {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: .5rem;
}

.dream-body-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dream-body-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 2rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: center;
}

.dream-body-opt:hover {
  border-color: var(--blue);
  background: #e8f5ee;
}

.dream-body-opt-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.dream-body-opt-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── PAGE LOADING ── */
.loading-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
}

.circular-progress {
  position: relative;
  width: 140px;
  height: 140px;
}

.cp-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.cp-track {
  fill: none;
  stroke: #e9e0f5;
  stroke-width: 10;
}

.cp-fill {
  fill: none;
  stroke: var(--blue);
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.05s linear;
}

.cp-pct {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
}

.loading-status {
  font-size: .95rem;
  color: var(--muted);
  text-align: center;
}

.loading-bar-bottom {
  width: 100%;
  margin-bottom: 0;
}

/* ── PAGE GOAL ── */
.goal-toast {
  width: 100%;
  background: linear-gradient(135deg, #e8f5ee, #d8f3dc);
  border: 1.5px solid #b7e4c7;
  border-radius: 14px;
  padding: .9rem 1.1rem;
  font-size: .88rem;
  color: #1b4332;
  line-height: 1.5;
  text-align: center;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}

.goal-toast--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.goal-toast strong {
  color: #1d4ed8;
}

.goal-page-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.goal-page-icon {
  font-size: 3rem;
  line-height: 1;
}

.goal-page-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.45;
}

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

.goal-page-sub {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.5;
}

.btn-goal-cta {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: #2d6a4f;
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s;
}

.btn-goal-cta:hover {
  background: #1b4332;
}

/* ── PAGE TRANSFORM ── */
.transform-toast {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  border-radius: 50px;
  padding: .75rem 1.4rem;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease, top .4s ease;
}

.transform-toast--show {
  opacity: 1;
  top: 1.5rem;
}

.transform-toast--hide {
  opacity: 0;
  top: 1rem;
}

.transform-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.transform-congrats {
  background: linear-gradient(145deg, #0f2117, #1b4332);
  border-radius: 20px;
  padding: 1.8rem 1.4rem 1.4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.transform-congrats::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(82, 183, 136, .3) 0%, transparent 70%);
}

.transform-congrats-emoji {
  font-size: 2.4rem;
  display: block;
  margin-bottom: .5rem;
  animation: pop .5s ease;
}

@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  70% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.transform-congrats-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: .6rem;
  line-height: 1.2;
}

.transform-congrats-title span {
  color: #52b788;
}

.transform-congrats-sub {
  font-size: .95rem;
  color: #b7e4c7;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.transform-congrats-sub strong {
  color: #74c69d;
  font-size: 1.05rem;
}

.transform-congrats-body {
  font-size: .85rem;
  color: #74c69d;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 1.1rem;
  font-style: italic;
}

.transform-congrats-bar {
  background: rgba(255, 255, 255, .15);
  border-radius: 50px;
  height: 8px;
  overflow: hidden;
  margin-bottom: .4rem;
}

.transform-congrats-bar-fill {
  height: 100%;
  width: 5%;
  background: linear-gradient(90deg, #52b788, #74c69d);
  border-radius: 50px;
  animation: fill-bar 1.8s ease forwards 0.4s;
}

@keyframes fill-bar {
  from {
    width: 0%;
  }

  to {
    width: 5%;
  }
}

.transform-congrats-bar-label {
  font-size: .78rem;
  color: #74c69d;
  font-weight: 600;
}

.transform-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
}

.transform-sub {
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
  margin-top: -.5rem;
}

.transform-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.transform-card {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  text-align: center;
  padding-bottom: 1.2rem;
}

.transform-img {
  width: 100%;
  display: block;
}

.transform-quote {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 1rem 1rem .3rem;
}

.transform-author {
  font-size: .85rem;
  color: var(--blue);
  font-weight: 600;
}

.transform-stars {
  color: #f6ad55;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-top: .3rem;
}

.btn-transform-cta {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: #2d6a4f;
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s;
}

.btn-transform-cta:hover {
  background: #1b4332;
}

.result-transition {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .95rem;
  color: var(--green);
  font-weight: 500;
}

.result-cta-section {
  text-align: center;
  margin-top: 2rem;
}

.result-cta-section p {
  font-size: 13px;
  color: var(--muted);
  margin-top: .8rem;
}

/* ── VENDAS ── */
.sales {
  max-width: 720px;
  margin: 0 auto;
}

.dobra {
  padding: 3rem 1.5rem;
  background: var(--bg);
}

.dobra-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: .5rem;
}

.sales-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.sales-h1 span {
  color: var(--green-light);
}

.sales-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.sales-sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1rem 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
}

.check-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  min-width: 18px;
}

.module-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  margin: .8rem 0;
}

.module-card h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}

.module-card p {
  font-size: .9rem;
  color: var(--muted);
}

.module-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: .6rem;
}

.author-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #52b788, #2d6a4f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  min-width: 72px;
}

.author-info h4 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}

.author-info p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
}

.testimonial {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: .8rem 0;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--body);
  font-style: italic;
  margin-bottom: .8rem;
  line-height: 1.7;
}

.testimonial-author {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: .5rem;
  font-size: 15px;
}

.bonus-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gold-pale);
  border: 1.5px solid rgba(212, 160, 23, .3);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: .7rem 0;
}

.bonus-icon {
  font-size: 1.4rem;
  min-width: 28px;
}

.bonus-card h4 {
  font-weight: 600;
  color: #92400e;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.bonus-card p {
  font-size: .85rem;
  color: #78350f;
}

.price-box {
  background: linear-gradient(135deg, #0f2117, #1b4332);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.price-old {
  text-decoration: line-through;
  color: rgba(255, 255, 255, .4);
  font-size: 1rem;
  margin-bottom: .3rem;
}

.price-current {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin: .5rem 0;
}

.price-desc {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.5rem;
}

.price-box .btn-primary {
  width: 100%;
  max-width: 400px;
  font-size: 1.1rem;
  padding: 1.1rem;
}

.price-guarantee {
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  margin-top: 1rem;
}

.guarantee-box {
  background: linear-gradient(135deg, #e8f5ee, #b7e4c7);
  border: 2px solid #52b788;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

.guarantee-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #1b4332;
  margin-bottom: .8rem;
}

.guarantee-box p {
  color: #1b4332;
  font-size: .95rem;
  line-height: 1.7;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
}

.faq-q {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .5rem;
  cursor: pointer;
}

.faq-a {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

.sales-hero {
  background: var(--bg);
  padding: 4rem 1.5rem;
  text-align: center;
}

.sales-hero .sales-h1 {
  color: var(--dark);
}

.sales-hero .sales-sub {
  color: var(--muted);
}

.urgency-bar {
  background: linear-gradient(90deg, #c53030, #9b2c2c);
  color: #fff;
  text-align: center;
  padding: .7rem 1rem;
  font-size: .9rem;
  font-weight: 500;
}

.highlight {
  background: var(--green-pale);
  border-left: 4px solid var(--green);
  padding: 1rem 1.2rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  font-size: .95rem;
  color: var(--green);
}

.guarantee-block {
  text-align: center;
  padding: 2rem 1.5rem 1rem;
  background: var(--white);
}

.guarantee-title {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.guarantee-img {
  width: 100%;
  max-width: 480px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.footer {
  background: #2d6a4f;
  color: rgba(255, 255, 255, .7);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 12px;
}

.footer a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

/* ── PAGE HEADER BAR ── */
.page-bar {
  background: #2d6a4f;
  padding: 1.2rem 1.5rem;
  border-bottom: none;
  text-align: center;
}

.page-bar span {
  font-size: 14px;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

/* ── BUTTON VARIANTS ── */
.btn-result-cta {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.btn-sales-hero {
  font-size: 1.1rem;
  padding: 1.1rem 2.6rem;
  margin-bottom: 1rem;
}

.btn-final-cta {
  font-size: 1.1rem;
  padding: 1.1rem 2.6rem;
}

/* ── SALES NOTES & MISC ── */
.sales-access-note {
  color: #1b2e20;
  font-size: 12px;
}

.dobra-note {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 1rem;
}

.sales-h2-center {
  text-align: center;
}

/* ── PRICE SECTION LABELS ── */
.price-plan-desc {
  color: rgba(255, 255, 255, .6);
  font-size: .9rem;
}

.price-only-label {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
}

/* ── GUARANTEE ICON ── */
.guarantee-icon {
  font-size: 2.5rem;
}

/* ── FINAL CTA SECTION ── */
.sales-hero--compact {
  padding: 3rem 1.5rem;
}

.sales-h1--mb {
  margin-bottom: .8rem;
}

.sales-hero-sub {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 1.8rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-note {
  color: rgba(255, 255, 255, .35);
  font-size: 12px;
  margin-top: 1rem;
}

/* ── SALES PAGE (SP) ── */
/* ── SALES FLOATING TOAST ── */
.sales-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.2rem;
  z-index: 999;
  max-width: 300px;
  width: calc(100vw - 2.4rem);
  pointer-events: none;
  transform: translateX(-120%);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
  opacity: 0;
}

.sales-toast--show {
  transform: translateX(0);
  opacity: 1;
}

.sales-toast--hide {
  transform: translateX(-120%);
  opacity: 0;
}

.sales-toast-inner {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green-light);
  border-radius: 12px;
  padding: .85rem 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.sales-toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1.3;
}

.sales-toast-body {
  flex: 1;
  min-width: 0;
}

.sales-toast-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.sales-toast-text {
  margin: 0;
  font-size: .82rem;
  color: var(--dark);
  line-height: 1.4;
}

@media (max-width: 480px) {
  .sales-toast {
    max-width: calc(100vw - 2.4rem);
    bottom: 1rem;
    left: 1.2rem;
  }
}

/* ── ORIGIN PROOF ── */
.sp-origin {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
}

.sp-origin-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .8rem;
}

.sp-origin-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

.sp-origin-title span {
  color: var(--green);
}

.sp-origin-body {
  font-size: .98rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.sp-origin-list {
  display: inline-flex;
  flex-direction: column;
  gap: .5rem;
  list-style: none;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.4rem;
  font-size: .92rem;
  color: var(--body);
}

.sp-origin-x {
  color: #dc2626;
  font-weight: 700;
  margin-right: .5rem;
}

.sp-origin-check {
  color: var(--green);
  font-weight: 700;
  margin-right: .5rem;
}

.sp-origin-list li:last-child {
  font-weight: 700;
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: .5rem;
  margin-top: .2rem;
}

.sp-origin-note {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.sp-hero {
  background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
  padding: 1.5rem 1.5rem 1.2rem;
  text-align: center;
}

.sp-hero-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: .75rem;
}

.sp-hero-name span {
  color: #fde68a;
}

.sp-hero-warning {
  background: #fef3c7;
  color: #92400e;
  font-size: .8rem;
  font-weight: 600;
  border-radius: 8px;
  padding: .6rem 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.sp-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sp-section {
  padding-top: 1rem;
}

.sp-plan-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: .5rem;
}

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

.sp-plan-sub {
  font-size: .9rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.sp-plan-sub strong {
  color: var(--dark);
}

/* Timeline */
.sp-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.sp-tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex: 1;
  max-width: 110px;
}

.sp-tl-line {
  flex: 1;
  height: 3px;
  background: #e2d9f3;
  margin-top: 28px;
}

.sp-tl-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  color: #fff;
}

.sp-tl-circle--1 {
  background: #a78bfa;
}

.sp-tl-circle--2 {
  background: #1263a0;
}

.sp-tl-circle--3 {
  background: var(--blue);
}

.sp-tl-label {
  font-size: .72rem;
  color: var(--muted);
  text-align: center;
}

.sp-tl-kg {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
}

.sp-tl-kg--goal {
  color: var(--blue);
}

/* Kit Card */
.sp-kit-card {
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.sp-kit-badge {
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: .35rem 1rem;
  border-radius: 99px;
}

.sp-kit-img {
  font-size: 3.5rem;
  line-height: 1;
}

.sp-kit-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--blue);
}

.sp-kit-sub {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sp-kit-list {
  list-style: none;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .9rem;
  color: var(--dark);
}

.sp-check {
  color: #2d6a4f;
  font-weight: 700;
  margin-right: .4rem;
}

.sp-bonus {
  color: #f59e0b;
  margin-right: .4rem;
}

.sp-kit-price-old {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}

.sp-kit-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: #2d6a4f;
  line-height: 1;
}

.sp-kit-social {
  font-size: .8rem;
  color: var(--muted);
}

/* CTA Button */
.btn-sp-cta {
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: #2d6a4f;
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .05em;
  cursor: pointer;
  transition: background .2s;
}

.btn-sp-cta:hover {
  background: #1b4332;
}

.btn-sp-cta--lg {
  font-size: 1.05rem;
  padding: 1.2rem 1.5rem;
}

/* Timer bar */
.sp-timer-bar {
  background: #e8f5ee;
  color: #1b4332;
  text-align: center;
  padding: .9rem 1rem;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
}

.sp-timer-bar strong {
  font-size: 1.1rem;
  font-weight: 900;
}

/* Guarantee card */
.sp-guarantee-card {
  border: 2px solid #fbbf24;
  border-radius: 16px;
  background: #fffbeb;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  text-align: center;
}

.sp-guarantee-badge {
  width: 52px;
  height: 52px;
  background: #f59e0b;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.sp-guarantee-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--dark);
}

.sp-guarantee-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.sp-guarantee-text {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Author */
.sp-author {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.sp-author-label {
  font-size: .8rem;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sp-author-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: .9rem 1rem;
}

.sp-author-avatar {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.sp-author-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
}

.sp-author-role {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

/* Depoimentos */
.sp-section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: .75rem;
}

/* ── MODULES ── */
.sp-modules-eyebrow {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .4rem;
}

.sp-modules-sub {
  text-align: center;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.sp-modules-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.sp-mod-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  transition: box-shadow .2s;
}

.sp-mod-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.sp-mod-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.sp-mod-icon-wrap--1 {
  background: #e8f5ee;
}

.sp-mod-icon-wrap--2 {
  background: #d8f3dc;
}

.sp-mod-icon-wrap--3 {
  background: #f3e5f5;
}

.sp-mod-icon-wrap--bonus {
  background: #fffbeb;
}

.sp-mod-body {
  flex: 1;
  min-width: 0;
}

.sp-mod-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .3rem;
}

.sp-mod-badge--bonus {
  color: #92400e;
  background: #fef3c7;
  border-radius: 50px;
  padding: 2px 8px;
}

.sp-mod-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: .3rem;
}

.sp-mod-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.sp-mod-card--bonus {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb, #fefce8);
}

.sp-mod-card--bonus .sp-mod-title {
  color: #92400e;
}

.sp-mod-card--bonus .sp-mod-desc {
  color: #b45309;
}

/* ── DEPOIMENTOS SLIDER ── */
.depoimentos-section {
  width: 100%;
}

.depoimentos-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.depoimentos-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.5s ease;
}

.depoimento-card {
  flex: 0 0 auto;
  box-sizing: border-box;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem 1.3rem;
  text-align: left;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
}

.depo-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin: 0 0 .8rem;
}

.depo-text {
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.depo-profile {
  display: flex;
  align-items: center;
  gap: .85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.depo-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #52b788, #2d6a4f);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depo-info {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.depo-name {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.depo-role {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
}

.depoimentos-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}

.depo-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 1.3rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background .2s, border-color .2s, color .2s;
  line-height: 1;
}

.depo-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.depo-dots {
  display: flex;
  gap: .45rem;
}

.depo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.depo-dot--active {
  background: var(--green);
  transform: scale(1.3);
}

.sp-depo-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: .5rem;
}

.sp-depo-text {
  font-size: .88rem;
  color: var(--dark);
  line-height: 1.55;
  font-style: italic;
}

.sp-depo-author {
  font-size: .82rem;
  color: var(--blue);
  font-weight: 700;
  margin-top: .6rem;
}

/* Tabela comparativa */
.sp-compare-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: .4rem;
}

.sp-compare-subtitle {
  font-size: .88rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 1rem;
}

.sp-compare-table {
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  margin-bottom: 1rem;
}

.sp-compare-header {
  display: flex;
  justify-content: space-between;
  padding: .6rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #f1f5f9;
  border-bottom: 1.5px solid var(--border);
}

.sp-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .8rem 1rem;
  font-size: .88rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
  gap: .5rem;
}

.sp-compare-row:last-child {
  border-bottom: none;
}

.sp-compare-price-bad {
  color: #dc2626;
  font-weight: 700;
  white-space: nowrap;
}

.sp-compare-row--total {
  background: #fff7ed;
  font-weight: 700;
  color: #9a3412;
  border-top: 2px solid #fed7aa;
}

.sp-compare-row--highlight {
  background: #e8f5ee;
  border-top: 2px solid #b7e4c7;
  padding: 1rem;
}

.sp-compare-our {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.sp-compare-our-badge {
  font-weight: 800;
  color: #1b4332;
  font-size: .95rem;
}

.sp-compare-our small {
  font-size: .75rem;
  color: #1b4332;
  opacity: .8;
}

.sp-compare-our-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}

.sp-compare-price-good {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1b4332;
  white-space: nowrap;
}

.sp-compare-our-price small {
  font-size: .72rem;
  color: #1b4332;
  opacity: .8;
}

.sp-compare-saving {
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: .9rem;
  text-align: center;
  line-height: 1.5;
  margin-top: .5rem;
}

.sp-compare-saving strong {
  font-size: 1.05rem;
}

.sp-compare-note {
  font-size: .82rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

/* CTA Final */
.sp-final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
}

.sp-final-label {
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sp-final-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: #2d6a4f;
  line-height: 1;
  margin-bottom: .5rem;
}

/* Garantia Final Banner */
.sp-guarantee-banner {
  background: var(--white);
  border: 2px solid #52b788;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}

.sp-guarantee-banner h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.sp-guarantee-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
}

.sp-guarantee-footer {
  font-size: .82rem;
  color: var(--muted);
}

/* ── FOOTER ── */
.footer__links {
  margin-top: .5rem;
}

.footer__disclaimer {
  margin-top: .8rem;
}

/* Tablet (768px e abaixo) */
@media (max-width: 768px) {
  .hero__overlay {
    min-height: 160px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .quiz-wrap,
  .result-wrap,
  .sales {
    padding: 2rem 1.2rem;
  }

  .dobra {
    padding: 2.5rem 1.2rem;
  }

  .sales-h1 {
    font-size: 2rem;
  }

  .sales-h2 {
    font-size: 1.5rem;
  }

  .price-current {
    font-size: 3rem;
  }

  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary {
    font-size: 1rem;
    padding: .95rem 2rem;
  }
}

/* Mobile (480px e abaixo) */
@media (max-width: 480px) {
  .hero__overlay {
    min-height: 130px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-sub {
    font-size: .95rem;
  }

  .quiz-wrap,
  .result-wrap {
    padding: 1.5rem 1rem;
  }

  .dobra {
    padding: 2rem 1rem;
  }

  .sales-hero {
    padding: 2.5rem 1rem;
  }

  .options-grid--images {
    grid-template-columns: repeat(2, 1fr);
    gap: .7rem;
  }

  .opt--image {
    min-height: 140px;
    padding: .8rem;
  }

  .opt-img {
    max-width: 90px;
  }

  .opt-text {
    font-size: .85rem;
  }

  .sales-h1 {
    font-size: 1.6rem;
  }

  .sales-h2 {
    font-size: 1.3rem;
  }

  .price-current {
    font-size: 2.5rem;
  }

  .price-box {
    padding: 2rem 1.5rem;
  }

  .module-card,
  .author-card,
  .testimonial,
  .diagnosis-box,
  .consequence-box,
  .guarantee-box {
    padding: 1rem 1.2rem;
  }

  .faq-item {
    padding: 1rem 0;
  }

  .urgency-bar {
    font-size: .85rem;
    padding: .6rem .8rem;
  }
}

/* FORCE FIX SLIDER */
.depoimentos-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.depoimentos-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100%;
  will-change: transform;
}

.depoimento-card {
  min-width: 100% !important;
  flex: 0 0 100% !important;
}

/* ── NOVOS CARDS: Mecanismo, Monjaro, Natural ── */
.diag-mechanism-card {
  background: #e8f5ee;
  border: 1.5px solid #b7e4c7;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.2rem;
}

.diag-mechanism-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .8rem;
  line-height: 1.4;
}

.diag-mechanism-card p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: .7rem;
}

.diag-mechanism-card p:last-child {
  margin-bottom: 0;
}

.diag-monjaro-card {
  background: #fff8f0;
  border: 1.5px solid #f7d9a3;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.2rem;
}

.diag-monjaro-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .8rem;
  line-height: 1.4;
}

.diag-monjaro-card p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: .7rem;
}

.diag-monjaro-card p:last-child {
  margin-bottom: 0;
}

.sp-natural-block {
  background: #f0faf4;
  border: 1.5px solid #a8ddb5;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.5rem;
}

.sp-natural-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .8rem;
  line-height: 1.4;
}

.sp-natural-block p {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
  margin-bottom: .7rem;
}

.sp-natural-block p:last-child {
  margin-bottom: 0;
}

/* Side Effects Step */
.side-effects-step {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.se-name-call {
  font-size: .95rem;
  font-weight: 700;
  color: var(--body);
  text-align: center;
  margin-bottom: -.2rem;
}

.se-name-call .name-highlight {
  font-size: 1rem;
}

.se-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.35;
  text-align: center;
}

.se-title::before {
  content: '⚠️ ATENÇÃO';
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 20px;
  padding: .2rem .8rem;
  width: fit-content;
  margin: 0 auto .6rem;
}

.se-subtitle {
  font-size: .95rem;
  color: var(--body);
  line-height: 1.65;
  text-align: center;
}

.se-news {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.se-news-img {
  flex: 1 1 calc(50% - .6rem);
  max-width: calc(50% - .6rem);
  min-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  display: block;
}

.se-news-img:last-child:nth-child(odd) {
  flex: 0 1 calc(50% - .6rem);
  max-width: calc(50% - .6rem);
  margin: 0 auto;
}

.se-warning {
  background: #fff8e1;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  font-size: .97rem;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.6;
  margin-top: .4rem;
}