/* Quiz Próstata. Health-funnel design system */

:root {
  --brand: #16A34A;
  --brand-700: #15803D;
  --brand-50: #F0FDF4;
  --accent: #F59E0B;
  --accent-50: #FEF3C7;
  --text: #1F2937;
  --text-2: #6B7280;
  --text-3: #9CA3AF;
  --success: #10B981;
  --success-50: #F0FDF4;
  --border: #E5E7EB;
  --border-2: #D1D5DB;
  --bg: #F5F7FA;
  --card: #FFFFFF;
  --danger: #DC2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow: 0 4px 6px rgba(15, 23, 42, 0.05), 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
  --shadow-brand: 0 8px 20px rgba(22, 163, 74, 0.18);
}

* { box-sizing: border-box; }
html, body, #root { margin: 0; padding: 0; min-height: 100%; background: var(--bg); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ======= LAYOUT ======= */
.app-root { min-height: 100vh; min-height: 100dvh; }
.screen-wrap {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px 48px;
}
.screen-wrap.intro {
  justify-content: center;
  padding: 12px 16px 16px;
}
.topbar {
  width: 100%;
  max-width: 600px;
  padding: 8px 4px 24px;
  display: flex;
  justify-content: flex-start;
}
.screen-wrap.intro .topbar { padding: 4px 4px 12px; }

/* ======= INTRO ======= */
.intro-card {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
  animation: fadeUp 480ms cubic-bezier(.2,.8,.2,1) both;
}
@media (min-width: 720px) {
  .intro-card { padding: 48px 40px; }
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--brand-50);
  color: var(--brand);
  border: 1px solid color-mix(in oklch, var(--brand) 25%, transparent);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: pretty;
}
@media (min-width: 720px) {
  .hero-title { font-size: 36px; margin: 20px 0 16px; }
}

.hero-sub {
  margin: 0 0 18px;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
@media (min-width: 720px) {
  .hero-sub { font-size: 16px; margin: 0 0 28px; }
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 18px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) {
  .trust-row { gap: 16px 20px; margin: 0 0 28px; padding: 16px 0; }
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
@media (min-width: 720px) {
  .trust-item { font-size: 13.5px; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 56px;
  padding: 0 20px;
  background: var(--brand);
  color: white;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-brand);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn-primary:hover:not(:disabled) {
  background: var(--brand-700);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28);
}
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }
.btn-primary.big { height: 64px; font-size: 16px; }
.btn-primary.full { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background: white;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 160ms ease, transform 160ms ease;
}
.btn-outline:hover { background: var(--brand-50); transform: translateY(-1px); }
.btn-outline.full { width: 100%; }

.micro-note {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
}

.social-proof-row {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars { display: flex; }
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--card);
  display: grid;
  place-items: center;
  color: white;
  font-size: 11px;
  font-weight: 700;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.proof-text { display: flex; flex-direction: column; gap: 2px; font-size: 13px; color: var(--text-2); }
.stars { color: var(--accent); font-size: 13px; letter-spacing: 1px; }

/* ======= QUIZ ======= */
.screen-wrap.quiz { padding-top: 0; }

.progress-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  max-width: 600px;
  background: var(--bg);
  padding: 16px 4px 12px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}
.progress-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-2);
}
.back-btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--text-2);
  border: 1px solid var(--border);
  background: white;
  transition: all 150ms ease;
}
.back-btn:hover { border-color: var(--brand); color: var(--brand); }
.prog-label { flex: 1; }
.prog-label strong { color: var(--text); font-weight: 700; }
.prog-pct { color: var(--brand); font-weight: 700; font-size: 13px; }

.progress-track {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), color-mix(in oklch, var(--brand), var(--success) 30%));
  border-radius: 999px;
  transition: width 500ms cubic-bezier(.2,.8,.2,1);
}

.quiz-card {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  animation: fadeUp 360ms cubic-bezier(.2,.8,.2,1) both;
}
@media (min-width: 720px) {
  .quiz-card { padding: 40px 36px; }
}

.q-title {
  margin: 0 0 24px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  text-wrap: balance;
}
@media (min-width: 720px) {
  .q-title { font-size: 28px; margin-bottom: 28px; }
}

.options { display: flex; flex-direction: column; gap: 10px; }

.option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 64px;
  padding: 14px 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.option:hover:not(:disabled) {
  border-color: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.option:disabled { cursor: default; }
.option-selected {
  border-color: var(--brand) !important;
  border-width: 2.5px !important;
  background: var(--success-50) !important;
  padding: 12.5px 14.5px;
}
.option-dim { opacity: 0.45; }

.opt-letter {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  flex-shrink: 0;
  transition: background 180ms ease, color 180ms ease;
}
.option-selected .opt-letter { background: var(--brand); color: white; }
.opt-text { flex: 1; line-height: 1.4; }
.opt-check { width: 24px; flex-shrink: 0; display: grid; place-items: center; }

.feedback-bubble {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: var(--success-50);
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  animation: slideDown 320ms cubic-bezier(.2,.8,.2,1) both;
}
.fb-icon { flex-shrink: 0; padding-top: 2px; }
.fb-text { font-size: 14px; line-height: 1.55; color: var(--text); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 320px; }
}

/* ======= CAPTURE ======= */
.capture-card {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
  animation: fadeUp 480ms cubic-bezier(.2,.8,.2,1) both;
}
@media (min-width: 720px) { .capture-card { padding: 48px 40px; } }

.capture-success {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 20px;
}
.success-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--success);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--success) 18%, transparent);
}

.capture-title {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  text-wrap: pretty;
}
@media (min-width: 720px) { .capture-title { font-size: 34px; } }

.capture-sub { margin: 0 0 28px; font-size: 16px; color: var(--text-2); }

.capture-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 13px; font-weight: 600; color: var(--text); }
.input {
  height: 56px;
  padding: 0 16px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--brand) 18%, transparent);
}
.input.err { border-color: var(--danger); }
.err-msg { font-size: 13px; color: var(--danger); }

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  padding: 6px 0;
}
.check-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}
.check-row.err { color: var(--danger); }

.lgpd-note {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-3);
  padding: 12px;
  background: var(--bg);
  border-radius: 10px;
}

/* ======= RESULT ======= */
.result-wrap {
  min-height: 100vh;
  padding: 0 0 48px;
}
.result-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in oklch, var(--bg) 92%, white);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.result-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  background: var(--brand-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.result-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
}
@media (min-width: 720px) { .result-card { padding: 40px 36px; } }

.hero-result { padding-top: 28px; }
.tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.result-meta { font-size: 12px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }

.result-title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
  text-wrap: pretty;
}
@media (min-width: 720px) { .result-title { font-size: 30px; } }

.diagnostic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--bg);
  border-radius: 14px;
}
@media (max-width: 540px) {
  .diagnostic-grid { grid-template-columns: 1fr; }
}
.diag-item { display: flex; flex-direction: column; gap: 4px; }
.diag-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); font-weight: 600; }
.diag-value { font-size: 14px; font-weight: 600; color: var(--text); }
.diag-summary { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-2); }
.diag-summary strong { color: var(--text); }

.disclaimer {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  background: var(--accent-50);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #78350F;
}
.disc-icon { font-size: 18px; flex-shrink: 0; }

.kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.kicker.centered { text-align: center; }

.section-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
  text-wrap: pretty;
}
@media (min-width: 720px) { .section-title { font-size: 26px; } }

.body-text {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.body-text:last-child { margin-bottom: 0; }
.body-text strong { font-weight: 600; }
.body-text em { color: var(--text-2); }

.story-card { background: linear-gradient(180deg, white, color-mix(in oklch, white 96%, var(--brand))); }

/* Ingredients */
.ingredients { display: flex; flex-direction: column; gap: 8px; }
.ingredient {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: border-color 160ms ease;
}
.ingredient.open { border-color: var(--brand); }
.ing-head {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.ing-head:hover { background: var(--bg); }
.ing-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ing-name { flex: 1; }
.ing-body {
  padding: 0 16px 16px 60px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

/* Offer */
.offer-section { padding: 12px 0; }
.offer-head { text-align: center; margin-bottom: 28px; }
.offer-title {
  margin: 8px 0 6px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
@media (min-width: 720px) { .offer-title { font-size: 32px; } }
.offer-sub { margin: 0; font-size: 14px; color: var(--text-2); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px) {
  .offer-grid { grid-template-columns: repeat(3, 1fr); align-items: center; }
}

.price-card {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.price-card.highlight {
  border: 2.5px solid var(--brand);
  box-shadow: 0 16px 40px rgba(22, 163, 74, 0.18), 0 4px 12px rgba(15, 23, 42, 0.06);
}
@media (min-width: 880px) {
  .price-card.highlight { transform: scale(1.04); }
  .price-card.highlight:hover { transform: scale(1.04) translateY(-3px); }
}

.hot-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.price-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-2);
}
.price-row { display: flex; align-items: baseline; gap: 4px; }
.price-currency { font-size: 18px; font-weight: 600; color: var(--text-2); }
.price-value {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}
.price-sub { font-size: 13px; color: var(--text-2); margin-top: -8px; }

.price-features { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
}
.price-features li svg { flex-shrink: 0; margin-top: 3px; }

/* Guarantee */
.guarantee {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: var(--shadow);
}
.guarantee-icon { display: inline-flex; padding: 14px; background: var(--brand-50); border-radius: 16px; margin-bottom: 12px; }
.guarantee h3 { margin: 0 0 8px; font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.guarantee p { margin: 0; font-size: 14px; color: var(--text-2); max-width: 460px; margin: 0 auto; line-height: 1.6; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: border-color 160ms ease;
}
.faq-item.open { border-color: var(--brand); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
.faq-q:hover { background: var(--bg); }
.faq-a { padding: 0 18px 18px; font-size: 14px; line-height: 1.6; color: var(--text-2); }

/* Final CTA */
.final-cta {
  text-align: center;
  background: linear-gradient(180deg, var(--brand-50), white);
  border: 1px solid color-mix(in oklch, var(--brand) 25%, transparent);
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: var(--shadow);
}
.final-cta h2 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
@media (min-width: 720px) { .final-cta h2 { font-size: 36px; } }
.final-cta p { margin: 0 0 24px; font-size: 16px; color: var(--text-2); }
.final-cta .btn-primary { max-width: 480px; margin: 0 auto; }
.final-trust {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  font-size: 13px;
  color: var(--text-2);
}
.final-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Footer */
.result-footer {
  text-align: center;
  padding: 24px 16px 0;
  color: var(--text-3);
  font-size: 12px;
  line-height: 1.6;
}
.foot-line { margin: 0 0 8px; font-style: italic; }
.foot-links { display: flex; justify-content: center; gap: 8px; margin-bottom: 8px; }
.foot-links a { color: var(--text-2); }
.foot-lgpd { margin: 0; max-width: 420px; margin: 0 auto; }

/* ======= V2 IMAGES ======= */

/* Hero portrait — intro screen, circular, kept compact for 100dvh fit */
.hero-portrait {
  width: 72px;
  height: 72px;
  margin: 0 auto 6px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--brand);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.25);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Story image — Antonio emotional, Section 3 */
.story-image {
  margin: 0 -22px 24px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: 360px;
  background: var(--bg);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 720px) {
  .story-image { margin: 0 -36px 28px; max-height: 420px; }
}

/* Ingredients still life image */
.ingredients-image {
  margin: 0 0 20px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg);
}
.ingredients-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Offer mockup — centered above the 3 cards */
.offer-image {
  max-width: 320px;
  margin: 0 auto 16px;
  border-radius: 14px;
  overflow: hidden;
}
.offer-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Guarantee shield — replaces SVG icon */
.guarantee-badge {
  width: 110px;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(22, 163, 74, 0.25));
}
.guarantee-badge img {
  width: 100%;
  height: auto;
  display: block;
}

/* Final CTA peaceful image */
.final-image {
  margin: 0 0 22px;
  border-radius: 14px;
  overflow: hidden;
  max-height: 280px;
  aspect-ratio: 16 / 9;
}
.final-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ======= Intro tightening for 100dvh fit with hero portrait ======= */

.screen-wrap.intro .intro-card {
  padding: 18px 20px 20px;
}
@media (min-width: 720px) {
  .screen-wrap.intro .intro-card { padding: 32px 36px; }
}
.screen-wrap.intro .hero-title {
  margin: 10px 0 8px;
  font-size: 21px;
}
@media (min-width: 720px) {
  .screen-wrap.intro .hero-title { font-size: 32px; margin: 14px 0 12px; }
}
.screen-wrap.intro .hero-sub {
  margin: 0 0 14px;
  font-size: 14.5px;
}
@media (min-width: 720px) {
  .screen-wrap.intro .hero-sub { font-size: 16px; margin: 0 0 24px; }
}
.screen-wrap.intro .trust-row {
  margin: 0 0 14px;
  padding: 10px 0;
}
@media (min-width: 720px) {
  .screen-wrap.intro .trust-row { padding: 16px 0; margin: 0 0 24px; }
}


/* ════════════════════════════════════════════════════════════════ */
/* GELATINA · 21 DIAS — Estilos novos (Thiago Finch refactor)        */
/* ════════════════════════════════════════════════════════════════ */

/* BLOCO BENEFÍCIOS — lista marcadora visual */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(21, 128, 61, 0.06);
  border-left: 3px solid var(--brand);
  border-radius: 8px;
  font-size: 15px;
  color: #1f2937;
  line-height: 1.5;
}
.benefit-check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(21, 128, 61, 0.12);
  border-radius: 50%;
  margin-top: 1px;
}

/* BLOCO BÔNUS — destacado, separado dos benefícios */
.bonus-card {
  background: linear-gradient(135deg, #FFF7ED 0%, #FEF3C7 100%);
  border: 2px solid var(--accent);
  border-left-width: 4px;
}
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.bonus-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #FFFFFF;
  border-radius: 10px;
  border: 1px solid rgba(234, 88, 12, 0.15);
}
.bonus-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
}
.bonus-text { flex: 1; }
.bonus-title {
  font-weight: 700;
  font-size: 14px;
  color: #B45309;
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.bonus-desc {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.5;
}

/* BLOCO CHECKOUT — destaque visual máximo */
.checkout-block { padding: 8px 0; }
.checkout-card {
  background: white;
  border: 3px solid var(--brand);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(21, 128, 61, 0.15);
}
.checkout-card .offer-title {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin: 8px 0 10px;
  letter-spacing: -0.02em;
}
.checkout-card .offer-sub {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Preço com âncora visual (de R$197 → R$24,90) */
.price-row-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 14px 0 4px;
}
.price-old {
  font-size: 18px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}
.price-arrow {
  color: var(--accent);
  font-size: 22px;
  font-weight: 700;
}
.price-now {
  display: inline-flex;
  align-items: baseline;
  color: var(--brand);
}
.price-now .price-currency {
  font-size: 20px;
  font-weight: 700;
  margin-right: 2px;
}
.price-now .price-value {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-now .price-cents {
  font-size: 24px;
  font-weight: 700;
}
.price-note {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 22px;
}

.checkout-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 12px;
  color: #4B5563;
}
.checkout-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Botão big-full ajuste pro CTA principal */
.btn-primary.big.full {
  width: 100%;
  font-size: 17px;
  padding: 18px 20px;
  margin-top: 6px;
}

/* ════════════════════════════════════════════════════════════════ */
/* v3 — multi-select + microcopy (Thiago Finch refactor)             */
/* ════════════════════════════════════════════════════════════════ */

/* Subtitulo abaixo do titulo da pergunta — microcopy de tranquilizacao/contexto */
.q-subtitle {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
  margin: 6px 0 18px;
  padding: 0 4px;
  font-weight: 400;
}

/* Multi-select footer (helper + botao Continuar) */
.multi-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 1px dashed #E5E7EB;
  padding-top: 16px;
}
.multi-helper {
  font-size: 13px;
  color: #15803D;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.multi-footer .btn-primary {
  margin-top: 4px;
}

/* Microcopy abaixo do CTA principal (intro, checkout) */
.cta-microcopy,
.checkout-microcopy {
  font-size: 12px;
  color: #6B7280;
  text-align: center;
  margin: 10px 0 4px;
  letter-spacing: 0.2px;
}

/* Loading microcopy entre perguntas (single-select) */
.loading-microcopy {
  font-size: 13px;
  color: var(--brand);
  text-align: center;
  margin-top: 14px;
  font-weight: 500;
  animation: pulse-fade 1s ease-in-out infinite alternate;
}
@keyframes pulse-fade {
  from { opacity: 0.6; }
  to   { opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════ */
/* Selo Hotmart de seguranca (CTA reinforcement)                     */
/* ════════════════════════════════════════════════════════════════ */
.hotmart-badge {
  margin-top: 16px;
  background: linear-gradient(95deg, #F76B1C 0%, #FF8C42 50%, #F76B1C 100%);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(247, 107, 28, 0.25);
}
.hotmart-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.hotmart-icon-wrap {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotmart-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}
.hotmart-text strong {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1px;
  line-height: 1.25;
  color: #fff;
}
.hotmart-text span {
  font-size: 11px;
  opacity: 0.92;
  margin-top: 3px;
  line-height: 1.3;
}
.hotmart-seal {
  flex-shrink: 0;
  background: #fff;
  color: #B45309;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255,255,255,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transform: rotate(-6deg);
  font-family: 'Inter', sans-serif;
  line-height: 1.1;
}
.hotmart-seal .seal-line-1 {
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #92400E;
}
.hotmart-seal .seal-line-2 {
  font-size: 16px;
  font-weight: 800;
  color: #B45309;
  margin: 1px 0;
}
.hotmart-seal .seal-line-3 {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #92400E;
}

/* Mobile estreito — empilha selo embaixo */
@media (max-width: 380px) {
  .hotmart-badge {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .hotmart-badge-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .hotmart-text { align-items: center; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════ */
/* RESULT V4 — Thiago Finch arquitetura limpa                         */
/* ════════════════════════════════════════════════════════════════ */

.result-v4-wrap {
  background: var(--bg);
  min-height: 100vh;
  padding-bottom: 40px;
}
.result-v4-topbar {
  background: white;
  padding: 14px 16px;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}
.result-v4-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ─── HERO ─────────────────────────────────────────────────────── */
.hero-v4 {
  background: white;
  border-radius: 14px;
  padding: 22px 18px;
  border: 1px solid #E5E7EB;
}
.hero-tier-row { margin-bottom: 14px; }
.tier-pill-v4 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.hero-perfil {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16A34A 0%, #4ADE80 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-perfil-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6B7280;
  font-weight: 600;
}
.hero-perfil-name {
  font-size: 16px;
  color: #111827;
  font-weight: 700;
  margin-top: 2px;
}
.hero-promessa {
  font-size: 22px;
  line-height: 1.35;
  color: #111827;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero-promessa strong { color: var(--brand); font-weight: 800; }

/* ─── BENEFITS V4 ─────────────────────────────────────────────── */
.benefits-v4 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-v4-item {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}
.benefit-v4-item:hover { border-color: var(--brand); }
.benefit-v4-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.benefit-v4-text {
  font-size: 15px;
  color: #1F2937;
  line-height: 1.4;
  flex: 1;
}
.benefit-v4-text strong { color: #111827; font-weight: 700; }

/* ─── CHECKOUT V4 (CARD ÚNICO DE GRAVIDADE) ───────────────────── */
.checkout-v4 { padding: 0; }
.checkout-v4-card {
  background: white;
  border: 3px solid var(--brand);
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 4px 24px rgba(21, 128, 61, 0.12);
}
.checkout-v4-product {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.checkout-v4-list-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #6B7280;
  font-weight: 600;
  margin-bottom: 10px;
}
.checkout-v4-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-v4-li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #1F2937;
  line-height: 1.4;
}
.checkout-v4-li.is-bonus { color: #1F2937; }
.li-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(21, 128, 61, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.li-text { flex: 1; }
.li-bonus-tag {
  flex-shrink: 0;
  background: #FEF3C7;
  color: #B45309;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 3px 7px;
  border-radius: 10px;
  border: 1px solid #FCD34D;
}

/* PREÇO V4 */
.checkout-v4-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 12px 0 4px;
}
.price-old-v4 {
  font-size: 18px;
  color: #9CA3AF;
  text-decoration: line-through;
  font-weight: 500;
}
.price-arrow-v4 {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
}
.price-now-v4 {
  display: inline-flex;
  align-items: baseline;
  color: var(--brand);
}
.price-now-v4 .price-cur {
  font-size: 22px;
  font-weight: 700;
  margin-right: 3px;
}
.price-now-v4 .price-val {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.price-note-v4 {
  text-align: center;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 18px;
}

/* BOTÃO CTA V4 */
.btn-cta-v4 {
  width: 100%;
  background: var(--brand);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 16px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 0 #14532D;
}
.btn-cta-v4:hover { transform: translateY(-1px); }
.btn-cta-v4:active { transform: translateY(2px); box-shadow: 0 2px 0 #14532D; }

/* RIBBON HOTMART (compacto, abaixo do botão) */
.hotmart-ribbon {
  margin-top: 12px;
  background: linear-gradient(95deg, #F76B1C 0%, #FF8C42 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.2px;
}
.checkout-v4-note {
  margin-top: 14px;
  font-size: 12px;
  color: #6B7280;
  text-align: center;
}

/* ─── GARANTIA EM 1 LINHA ─────────────────────────────────────── */
.guarantee-line {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.g-icon { font-size: 28px; flex-shrink: 0; }
.g-text { display: flex; flex-direction: column; gap: 3px; }
.g-text strong { color: #14532D; font-size: 14px; font-weight: 700; }
.g-text span { color: #4B5563; font-size: 13px; line-height: 1.4; }

/* ─── FAQ V4 ──────────────────────────────────────────────────── */
.faq-v4 {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px;
}
.faq-v4-title {
  font-size: 14px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 12px 0;
}
.faq-v4-list { display: flex; flex-direction: column; gap: 4px; }
.faq-v4-item {
  border-bottom: 1px solid #F3F4F6;
}
.faq-v4-item:last-child { border-bottom: none; }
.faq-v4-q {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 4px;
  text-align: left;
  font-size: 14.5px;
  font-weight: 600;
  color: #111827;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.faq-v4-a {
  padding: 0 4px 14px 4px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.55;
}

/* ─── FOOTER V4 ───────────────────────────────────────────────── */
.footer-v4 {
  text-align: center;
  font-size: 11px;
  color: #9CA3AF;
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid #E5E7EB;
}
.footer-v4 p { margin: 4px 0; }
.footer-v4-lgpd { color: #D1D5DB; font-size: 10px; }

/* ════════════════════════════════════════════════════════════════ */
/* IMAGENS V4 — hero avatar, before-after, checkout product photo    */
/* ════════════════════════════════════════════════════════════════ */

/* Hero avatar com foto da modelo (substitui emoji) */
.hero-avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--brand);
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.18);
  background: #F0FDF4;
}
.hero-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top center;
}

/* Bloco ANTES / DEPOIS — prova social visual */
.before-after {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 20px 18px;
  text-align: center;
}
.ba-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #6B7280;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ba-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ba-card {
  margin: 0;
  background: #FAFAF8;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  position: relative;
}
.ba-label {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 8px;
  border-radius: 6px;
  color: white;
}
.ba-label-before { background: #B91C1C; }
.ba-label-after  { background: var(--brand); }
.ba-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  background: #fff;
}
.ba-caption {
  font-size: 11px;
  color: #4B5563;
  padding: 8px 10px 10px;
  line-height: 1.35;
  background: #fff;
}
.ba-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: #9CA3AF;
  font-style: italic;
}

/* Foto do produto no topo do card de checkout */
.checkout-hero-img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #F9FAFB;
  aspect-ratio: 16/10;
}
.checkout-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ════════════════════════════════════════════════════════════════ */
/* MECHANISM BLOCK — autoridade cientifica GLP-1                     */
/* ════════════════════════════════════════════════════════════════ */
.hero-meta-info {
  font-size: 13px;
  color: #4B5563;
  margin: 12px 0 0 0;
  padding: 10px 14px;
  background: rgba(21, 128, 61, 0.06);
  border-left: 3px solid var(--brand);
  border-radius: 6px;
  line-height: 1.5;
}
.hero-meta-info strong { color: var(--brand); font-weight: 700; }

.mechanism-block {
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 100%);
  border: 1px solid #FCD34D;
  border-radius: 14px;
  padding: 22px 18px;
}
.mech-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #B45309;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mech-title {
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.mech-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #FDE68A;
}
.mech-row:last-of-type { border-bottom: none; }
.mech-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}
.mech-row strong {
  color: #111827;
  font-size: 14.5px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}
.mech-row p {
  font-size: 13.5px;
  color: #4B5563;
  margin: 0;
  line-height: 1.5;
}
.mech-disclaimer {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 8px;
  font-size: 11.5px;
  color: #6B7280;
  line-height: 1.55;
  font-style: italic;
}

/* Link discreto para o estudo no bloco mecanismo */
.mech-study-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #B45309;
  text-decoration: none;
  transition: background 0.15s;
}
.mech-study-link:hover {
  background: rgba(255,255,255,1);
  color: #92400E;
}

/* Logo Hotmart no ribbon (versao branca pra fundo laranja) */
.hotmart-logo-img {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* forca branco se logo for colorida */
  margin: 0 2px;
}
.hotmart-fallback {
  font-weight: 800;
  letter-spacing: 0.3px;
  color: white;
  margin: 0 2px;
}

/* Ajuste do ribbon pra acomodar imagem inline */
.hotmart-ribbon {
  flex-wrap: wrap;
  row-gap: 4px;
}
.hotmart-ribbon span,
.hotmart-ribbon strong { white-space: nowrap; }

/* Logo Hotmart inline SVG (substitui o PNG) */
.hotmart-logo-svg {
  height: 14px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* Nota tecnica discreta no final do bloco mecanismo */
.mech-tech-note {
  margin-top: 6px !important;
  font-size: 11px !important;
  color: #92400E !important;
  font-style: italic;
  opacity: 0.75;
}

/* Progress shell limpo (so botao voltar + barra) */
.progress-meta-clean {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
.progress-meta-clean .back-btn {
  flex-shrink: 0;
}
.progress-meta-clean .progress-track {
  flex: 1;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════ */
/* TESTIMONIALS BLOCK — depoimentos compactos voz literal YouTube     */
/* ════════════════════════════════════════════════════════════════ */
.testimonials-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  position: relative;
}
.testimonial-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.testimonial-text {
  font-size: 14px;
  color: #1F2937;
  line-height: 1.5;
  margin: 0 0 10px 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #6B7280;
}
.testimonial-name { font-weight: 600; color: #374151; }
.testimonial-likes {
  background: #F3F4F6;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: #4B5563;
}

/* ════════════════════════════════════════════════════════════════ */
/* TESTIMONIALS — DESIGN ESTILO TWITTER (com like interativo)        */
/* ════════════════════════════════════════════════════════════════ */
.testimonials-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonials-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #6B7280;
  text-transform: uppercase;
  margin-bottom: 4px;
  padding: 0 4px;
}

.tweet-card {
  background: white;
  border: 1px solid #E1E8ED;
  border-radius: 14px;
  padding: 14px 16px;
  transition: background 0.15s;
}
.tweet-card:hover { background: #FAFBFC; }

.tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.tweet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #E1E8ED;
}
.tweet-id {
  flex: 1;
  min-width: 0;
}
.tweet-name-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tweet-name {
  font-weight: 700;
  font-size: 15px;
  color: #14171A;
  line-height: 1.2;
}
.tweet-verified {
  flex-shrink: 0;
}
.tweet-handle {
  font-size: 13px;
  color: #5B7083;
  line-height: 1.3;
  margin-top: 1px;
}

.tweet-text {
  font-size: 15px;
  color: #14171A;
  line-height: 1.45;
  margin: 0 0 12px 0;
  white-space: pre-wrap;
}

.tweet-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}
.tweet-like {
  background: none;
  border: none;
  padding: 6px 8px;
  margin-left: -8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #5B7083;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.tweet-like:hover {
  background: rgba(224, 36, 94, 0.1);
  color: #E0245E;
}
.tweet-like:hover svg { stroke: #E0245E; }
.tweet-like.is-liked {
  color: #E0245E;
}
.tweet-like.is-liked svg {
  animation: heartPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tweet-like-count {
  font-variant-numeric: tabular-nums;
}

@keyframes heartPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.4); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
