* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #2d6a4f;
  --green-light: #52b788;
  --green-pale: #d8f3dc;
  --gold: #d4a017;
  --gold-light: #f4d03f;
  --gold-pale: #fef9e7;
  --dark: #1a1a2e;
  --body: #2c2c3e;
  --muted: #6b7280;
  --bg: #fafaf8;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
}

.page {
  display: none;
  animation: fadeIn .45s ease;
}

.page.active {
  display: block;
}

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

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

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #1a1a2e 0%, #16213e 60%, #0f3460 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 80%, rgba(82, 183, 136, .18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(82, 183, 136, .2);
  color: #74d7a4;
  border: 1px solid rgba(82, 183, 136, .35);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  max-width: 780px;
  margin-bottom: 1.2rem;
}

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

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .72);
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-img-desc {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  max-width: 480px;
  margin: 0 auto 2.2rem;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  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: rgba(255, 255, 255, .55);
  font-size: 13px;
}

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

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

.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: #f3eeff;
  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: #f3eeff;
  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 {
  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);
}

.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: space-between;
  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;
}

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

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

/* ── 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);
}

.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: #f0fdf4;
  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: #f0fdf4;
  border: 1px solid #bbf7d0;
  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;
}

.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, #1a1a2e, #16213e);
  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, #f0fff4, #c6f6d5);
  border: 2px solid #48bb78;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
}

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

.guarantee-box p {
  color: #2f855a;
  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);
}

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

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

/* ── PAGE HEADER BAR ── */
.page-bar {
  background: var(--white);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-bar span {
  font-size: 14px;
  color: var(--muted);
}

/* ── 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: #1a1a2e;
  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;
}

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

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

/* Tablet (768px e abaixo) */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1.5rem;
  }

  .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 {
    padding: 2rem 1rem;
  }

  .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;
  }

  .quiz-nav {
    flex-direction: column;
    gap: .8rem;
  }

  .btn-back,
  .btn-next {
    width: 100%;
  }

  .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;
  }
}