/* ============================================
   MANITAS MÁGICAS — Quiz Funnel
   Mobile-first · Espanhol neutro LATAM
   ============================================ */

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

:root {
  --bg: #fff5f7;
  --card: #ffffff;
  --primary: #e91e63;       /* rosa-coral materno */
  --primary-dark: #c2185b;
  --text: #2d2d2d;
  --muted: #6b7280;
  --border: #ffe0e8;
  --success: #16a34a;
  --success-dark: #15803d;
  --warning: #f59e0b;
  --danger: #9ca3af;        /* preço riscado */
  --shadow: 0 4px 20px rgba(233, 30, 99, 0.08);
  --shadow-strong: 0 8px 32px rgba(233, 30, 99, 0.15);
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.app {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--card);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* ============== HEADER ============== */
.app-header {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;
}

.progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #ff6b9d);
  width: 8.33%;
  transition: width 0.4s ease;
  border-radius: 3px;
}

.step-counter {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

/* ============== STEPS ============== */
.quiz {
  padding: 12px 18px 40px;
}

.step {
  display: none;
  animation: fadeIn 0.4s ease;
}

.step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== HOOK (step 1) ============== */
.headline {
  font-size: 26px;
  line-height: 1.25;
  font-weight: 800;
  margin: 20px 0 14px;
  color: var(--text);
}

.subheadline {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 18px;
}

.subheadline strong { color: var(--text); }

.hook-list {
  list-style: none;
  margin: 18px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--text);
}

/* ============== QUESTION TITLES ============== */
.q-title {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin: 14px 0 6px;
}

.q-title em { color: var(--primary); font-style: normal; }

.q-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ============== OPTIONS ============== */
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.opt {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.opt:hover {
  border-color: var(--primary);
  background: #fff5f7;
}

.opt.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ============== SCALE (step 9) ============== */
.scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin: 24px 0;
}

.scale-btn {
  flex: 1;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 4px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  font-family: inherit;
}

.scale-btn:hover {
  border-color: var(--primary);
}

.scale-btn.selected {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

.scale-btn .num {
  font-size: 20px;
  font-weight: 800;
}

.scale-btn .lbl {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  min-height: 12px;
}

.scale-btn.selected .lbl {
  color: #ffd6e3;
}

/* ============== BUTTONS ============== */
.btn-primary {
  display: block;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 24px;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(233, 30, 99, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-confirm {
  background: var(--success);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.legal-mini {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}

.legal-mini.centered { text-align: center; }

/* ============== IMG / VIDEO SLOTS (real assets + graceful fallback) ============== */
.img-slot, .video-slot {
  position: relative;
  margin: 0 0 20px;
  border-radius: 14px;
  overflow: hidden;
  background: #fef3f7;
}

.img-slot img,
.video-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* aspect ratios */
.ratio-1-1  { aspect-ratio: 1 / 1; }
.ratio-4-5  { aspect-ratio: 4 / 5; }
.ratio-16-9 { aspect-ratio: 16 / 9; }
.ratio-3-4  { aspect-ratio: 3 / 4; }
.nudo-img { max-width: 230px; margin-left: auto; margin-right: auto; }
.ratio-9-16 { aspect-ratio: 9 / 16; max-width: 320px; margin-left: auto; margin-right: auto; }

/* hero duo (step 1): bebé llorando + video del toque, lado a lado */
.hero-duo { display: flex; gap: 10px; margin-bottom: 18px; }
.hero-duo > .img-slot, .hero-duo > .video-slot { flex: 1; margin: 0; }

/* infográfico Nudo Invisible (step 10) */
.nudo-info { background: linear-gradient(135deg, #fff5f7, #ffe0e8); border: 1px solid var(--border); border-radius: 14px; padding: 16px 12px; margin-bottom: 18px; }
.nudo-tag { display: block; text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); margin-bottom: 12px; }
.nudo-row { display: flex; align-items: center; justify-content: center; gap: 6px; }
.nudo-step { flex: 1; text-align: center; }
.nudo-step .ni-ico { font-size: 30px; display: block; margin-bottom: 4px; }
.nudo-step p { font-size: 12px; line-height: 1.3; margin: 0; color: var(--text); }
.nudo-step.knot { color: var(--primary-dark); }
.ni-op { font-size: 20px; font-weight: 800; color: var(--primary); flex: 0 0 auto; }

/* sello (selo de garantia menor) */
.img-slot.sello { max-width: 140px; margin: 0 auto 14px; aspect-ratio: 1/1; }

/* texto sobreposto em imagens (Higgsfield nao renderiza texto bem) */
.img-overlay-text {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  font-family: Georgia, "Times New Roman", serif;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* mockup phone: titulo "Manitas Magicas" no centro da tela do iPhone */
.img-slot.mockup .img-overlay-text.brand-on-phone {
  top: 50%;
  left: 18%;
  transform: translateY(-50%);
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  font-size: 13px;
  color: #c2185b;
  text-shadow: none;
  width: 22%;
  text-align: center;
  line-height: 1.2;
}

/* selo: texto "GARANTIA 7 DIAS" sobre o sello em arco */
.img-slot.sello .img-overlay-text.garantia-text {
  bottom: 8%;
  left: 0;
  right: 0;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* fallback (placeholder visual quando arquivo nao existe) */
.img-fallback,
.video-fallback {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, #fef3f7, #fef3f7 10px, #fde7ef 10px, #fde7ef 20px);
  border: 2px dashed var(--primary);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  gap: 6px;
  color: var(--primary-dark);
  font-size: 12px;
  line-height: 1.45;
  z-index: 1;
}

.img-fallback strong,
.video-fallback strong {
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--primary);
}

.img-fallback p,
.video-fallback p {
  font-size: 12px;
  max-width: 260px;
}

.img-fallback em,
.video-fallback em {
  font-size: 10px;
  font-style: normal;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  background: rgba(233, 30, 99, 0.08);
  padding: 4px 8px;
  border-radius: 4px;
  margin-top: 4px;
  color: var(--primary-dark);
}

/* quando a imagem/video carrega, esconde o fallback */
.img-slot img:not(.img-error)        { position: relative; z-index: 2; }
.video-slot video:not(.video-error)  { position: relative; z-index: 2; }

.img-slot img.img-error,
.video-slot video.video-error { display: none; }

/* sello fallback texto menor */
.img-slot.sello .img-fallback { font-size: 9px; padding: 8px; }
.img-slot.sello .img-fallback strong { font-size: 10px; }
.img-slot.sello .img-fallback p { display: none; }
.img-slot.sello .img-fallback em { font-size: 8px; }

/* ============== REVEAL STEPS ============== */
.reveal-step {
  text-align: left;
}

.reveal-title {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 800;
  margin: 4px 0 14px;
  color: var(--text);
}

.reveal-title em { color: var(--primary); font-style: italic; }

.reveal-body p {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--text);
}

.reveal-body p.bigidea {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin: 22px 0;
}

.highlight {
  background: linear-gradient(180deg, transparent 60%, #ffd6e3 60%);
  padding: 0 4px;
  font-weight: 800;
  color: var(--primary-dark);
}

/* ============== CALMA GRID ============== */
.calma-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.calma-card {
  background: linear-gradient(135deg, #fff5f7, #ffe0e8);
  border-left: 4px solid var(--primary);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.calma-card strong {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
  font-size: 13px;
}

/* ============== DIAGNÓSTICO (step 11) ============== */
.loading-block {
  text-align: center;
  padding: 60px 20px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.diagnostico-card {
  background: linear-gradient(135deg, #fff5f7, #ffe0e8);
  border-radius: 14px;
  padding: 20px;
  margin: 18px 0;
  font-size: 15px;
  line-height: 1.6;
}

.diagnostico-card .diag-label {
  font-size: 12px;
  color: var(--primary-dark);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.diagnostico-card .diag-condition {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 14px;
}

.diagnostico-card ul {
  list-style: none;
  margin: 10px 0;
}

.diagnostico-card li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(233,30,99,0.1);
  font-size: 14px;
}

.diagnostico-card li:last-child { border-bottom: none; }

.diag-cta-text {
  text-align: center;
  font-size: 16px;
  margin: 18px 0;
}

/* ============== OFFER (step 12) ============== */
.offer-step {
  padding-bottom: 20px;
}

.offer-hero {
  text-align: center;
  margin-bottom: 26px;
}

.offer-headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin: 14px 0 10px;
}

.brand-name {
  color: var(--primary);
  display: block;
  font-size: 30px;
  margin-top: 4px;
}

.offer-sub {
  font-size: 15px;
  color: var(--muted);
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 26px 0 14px;
  color: var(--text);
  text-align: center;
}

/* ----- testimonials ----- */
.testimonials { margin-bottom: 28px; }

.testimonial {
  background: #fafafa;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
}

.testimonial p {
  font-style: italic;
  font-size: 14px;
  margin: 10px 0 6px;
  color: var(--text);
}

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

/* ----- deliverables ----- */
.deliverables {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.deliv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliv-list li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 4px;
}

/* ----- bonus ----- */
.bonus-box {
  background: linear-gradient(135deg, #fff8dc, #fff3c4);
  border: 2px dashed #f59e0b;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.bonus-item {
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.5;
}

/* ----- price box ----- */
.price-box {
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 20px;
  text-align: center;
}

.price-intro {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.price-anchor {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 14px 0;
}

.anchor-line {
  font-size: 20px;
  color: var(--danger);
  text-decoration: line-through;
  font-weight: 600;
}

.price-final {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.price-value {
  font-size: 56px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}

.price-note {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- countdown ----- */
.countdown-box {
  background: #fff8e1;
  border: 1px solid var(--warning);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
  text-align: center;
}

.countdown-label {
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 6px;
}

.countdown {
  font-size: 32px;
  font-weight: 900;
  color: #b45309;
  font-variant-numeric: tabular-nums;
}

/* ----- guarantee ----- */
.guarantee {
  background: #f0fdf4;
  border: 1px solid var(--success);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: center;
}

.guarantee h3 {
  color: var(--success-dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.guarantee p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ----- CTA principal ----- */
.btn-cta {
  display: block;
  background: var(--success);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 18px 16px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  margin: 22px 0 8px;
  box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
  letter-spacing: 0.3px;
}

/* ----- two paths ----- */
.two-paths { margin-top: 30px; }

.path-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.path-yes {
  background: #f0fdf4;
  border-color: var(--success);
}

.path-no {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: var(--muted);
}

.centered-final {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
  color: var(--primary);
}

/* ============== AUTHORITY (Camila Herrera) ============== */
.authority {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 26px;
}

.authority .author-photo {
  flex: 0 0 92px;
  width: 92px;
  margin: 0;
  border-radius: 50%;
}

.authority .author-photo img,
.authority .author-photo .img-fallback { border-radius: 50%; }
.authority .author-photo .img-fallback { font-size: 8px; padding: 6px; }
.authority .author-photo .img-fallback p,
.authority .author-photo .img-fallback em { display: none; }

.author-bio { flex: 1; }

.author-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-weight: 700;
}

.author-name { font-size: 18px; font-weight: 800; margin: 2px 0 6px; }
.author-bio p { font-size: 13px; line-height: 1.5; color: var(--text); }

/* ============== VALUE STACK ============== */
.value-stack {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 24px;
}

.vs-list { list-style: none; display: flex; flex-direction: column; }

.vs-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.45;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
}

.vs-list li:last-child { border-bottom: none; }
.vs-name { flex: 1; }

.vs-val {
  flex: 0 0 auto;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  white-space: nowrap;
}

.vs-bonus .vs-name { color: var(--primary-dark); font-weight: 600; }

.vs-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid var(--primary);
}

.vs-total-label { font-size: 15px; font-weight: 700; }

.vs-total-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--muted);
  text-decoration: line-through;
}

/* ============== BONUS CARDS (con imagen) ============== */
.bonus-card {
  background: #fff;
  border: 1px solid #f5d77a;
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}

.bonus-card:last-child { margin-bottom: 0; }

.bonus-tag {
  display: inline-block;
  background: var(--warning);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.bonus-title { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.bonus-img { margin: 0 auto 12px; max-width: 260px; }
.bonus-desc { font-size: 14px; line-height: 1.55; color: var(--text); }
.bonus-value { color: var(--primary-dark); font-weight: 700; white-space: nowrap; }

/* ============== FAQ ============== */
.faq { margin: 28px 0 8px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 14px 40px 14px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 12px;
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 16px 14px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

/* ============== PROVA SOCIAL — Instagram DM carousel ============== */
.ig-social { margin-bottom: 28px; }

.ig-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: -6px 0 16px;
}

.ig-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}

.ig-carousel::-webkit-scrollbar { display: none; }

.ig-card {
  flex: 0 0 87%;
  scroll-snap-align: center;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ig-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-bottom: 1px solid #f1f1f1;
}

.ig-avatar {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(45deg, var(--c1, #feda75), var(--c2, #d62976));
}

.ig-meta { display: flex; flex-direction: column; flex: 1; line-height: 1.25; }
.ig-user { font-size: 13px; font-weight: 700; color: #262626; }
.ig-status { font-size: 11px; color: var(--muted); }
.ig-dots { color: #b0b0b0; font-size: 18px; letter-spacing: 1px; }

.ig-thread {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  background: #fff;
}

.ig-bubble {
  background: #efefef;
  color: #1a1a1a;
  font-size: 13.5px;
  line-height: 1.45;
  padding: 9px 13px;
  border-radius: 18px 18px 18px 5px;
  max-width: 92%;
}

.ig-photo {
  margin: 4px 0;
  max-width: 190px;
  border-radius: 16px;
  align-self: flex-start;
}

.ig-react {
  font-size: 13px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 2px 7px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.ig-swipe {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============== RESPONSIVE (desktop) ============== */
@media (min-width: 520px) {
  .app {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    min-height: auto;
  }
}

/* ============== OFERTA v2 — motion, premiación, bônus compactos ============== */
/* valores riscados COM motion (tira o line-through estático) */
.vs-val, .vs-total-val { text-decoration: none !important; position: relative; }
.vs-val::after, .vs-total-val::after {
  content: ''; position: absolute; left: 0; right: 0; top: 52%; height: 3px; border-radius: 2px;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform .5s ease;
}
.price-was { display: block; font-size: 15px; color: var(--muted); margin-bottom: 2px; }
.price-was s { color: var(--muted); }
.value-stack.struck .vs-val::after,
.value-stack.struck .vs-total-val::after { transform: scaleX(1); }
.value-stack.struck .vs-list li:nth-child(1) .vs-val::after { transition-delay: .10s; }
.value-stack.struck .vs-list li:nth-child(2) .vs-val::after { transition-delay: .22s; }
.value-stack.struck .vs-list li:nth-child(3) .vs-val::after { transition-delay: .34s; }
.value-stack.struck .vs-list li:nth-child(4) .vs-val::after { transition-delay: .46s; }
.value-stack.struck .vs-list li:nth-child(5) .vs-val::after { transition-delay: .58s; }
.value-stack.struck .vs-list li:nth-child(6) .vs-val::after { transition-delay: .70s; }
.value-stack.struck .vs-list li:nth-child(7) .vs-val::after { transition-delay: .82s; }
.value-stack.struck .vs-list li:nth-child(8) .vs-val::after { transition-delay: .94s; }
.value-stack.struck .vs-total-val::after { transition-delay: 1.15s; }

/* preço: soma 197 → CORTA no meio → 27 EXPLODE */
.price-reveal { position: relative; }
.price-total {
  display: block; font-size: 38px; font-weight: 800; color: var(--muted);
  position: relative; margin-bottom: 6px;
}
.price-total::after {
  content: ''; position: absolute; left: 6%; right: 6%; top: 50%; height: 5px; border-radius: 3px;
  background: var(--primary); transform: scaleX(0); transform-origin: center;
  transition: transform .55s cubic-bezier(.5,0,.5,1);
}
.price-total.cut::after { transform: scaleX(1); }
.price-value {
  display: block; font-size: 64px; font-weight: 900; color: var(--primary); line-height: 1;
  opacity: 0; transform: scale(.3); position: relative;
}
.price-value.boom { animation: priceBoom .85s cubic-bezier(.2,.9,.3,1.5) forwards; }
@keyframes priceBoom {
  0%   { opacity: 0; transform: scale(.3); }
  60%  { opacity: 1; transform: scale(1.28); text-shadow: 0 0 34px rgba(233,30,99,.7); }
  100% { opacity: 1; transform: scale(1); text-shadow: 0 6px 24px rgba(233,30,99,.4); }
}
.price-value.boom::before {
  content: ''; position: absolute; left: 50%; top: 50%; width: 260px; height: 260px;
  transform: translate(-50%,-50%); border-radius: 50%; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(255,209,102,.6), rgba(255,92,138,.2) 45%, transparent 70%);
  animation: prizeGlow 2.2s ease-in-out .85s infinite;
}
@keyframes prizeGlow {
  0%,100% { opacity:.45; transform: translate(-50%,-50%) scale(.9); }
  50%     { opacity:1;   transform: translate(-50%,-50%) scale(1.12); }
}
.price-note { opacity: 0; transition: opacity .45s ease .2s; }
.price-reveal.revealed .price-note { opacity: 1; }

/* bônus COMPACTOS (horizontal, cabem na tela) */
.bonus-box.compact .bonus-card { display: flex; gap: 12px; align-items: center; padding: 10px 12px; }
.bonus-box.compact .bonus-img { flex: 0 0 84px; max-width: 84px; margin: 0; }
.bonus-box.compact .bonus-txt { flex: 1; min-width: 0; }
.bonus-box.compact .bonus-tag { margin-bottom: 4px; padding: 2px 8px; font-size: 10px; }
.bonus-box.compact .bonus-title { font-size: 15px; margin-bottom: 3px; }
.bonus-box.compact .bonus-desc { font-size: 12px; line-height: 1.4; }

/* chat sem cabeçalho */
.ig-card .ig-thread { padding-top: 16px; }

/* sello de garantia gerado */
.guarantee .sello { max-width: 150px; }

/* ============== VTURB gate (libera a oferta em 1:54) ============== */
.vsl-wrap { margin: 4px 0 14px; }
.gate-waiting {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: 16px 16px; margin: 0 0 10px;
  border: 1px dashed var(--primary); border-radius: 14px;
  background: #fff5f8; color: var(--text);
}
.gate-waiting p { font-size: 14px; line-height: 1.35; }
.gate-waiting.unlocked { border-style: solid; border-color: #1b7a3d; background: #f0fdf4; }
.gate-spinner {
  width: 20px; height: 20px; flex: 0 0 20px; border-radius: 50%;
  border: 3px solid rgba(233,30,99,.25); border-top-color: var(--primary);
  animation: gateSpin .8s linear infinite;
}
@keyframes gateSpin { to { transform: rotate(360deg); } }
#offerGate { animation: gateReveal .6s ease both; }
@keyframes gateReveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
