/* ============================================================
   DIREÇÃO C · STORYTELLING VERTICAL
   Acompanhamento Online · Diogo Brito
   A página vira uma jornada vertical. Transições marcadas entre
   seções (mudança de fundo, respiros maiores), indicadores
   sutis de progresso. O leitor desce por capítulos.
   Travas: copy literal · paleta #80A422 / #9A2323 / #FAFAF8 ·
   Outfit (títulos) + Plus Jakarta Sans (corpo) · HTML/CSS puro.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
}

/* ============================================================
   INDICADORES DE PROGRESSO
   ============================================================ */
.story-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: rgba(20, 19, 15, 0.06); z-index: 70; pointer-events: none;
}
.story-progress-bar { height: 100%; width: 0; background: var(--brand-green); transition: width 80ms linear; }

/* Chapter rail vive DENTRO da topbar — dots horizontais discretos */
.chapter-rail {
  display: flex; flex-direction: row; align-items: center;
  gap: 9px;
  margin-left: auto;             /* empurra pro lado direito da topbar */
  padding: 6px 4px;
}
.chapter-rail a {
  display: grid; place-items: center;
  width: 18px; height: 22px;     /* alvo de toque maior que o dot pra fácil clique */
  text-decoration: none;
}
.chapter-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--stone-300);
  transition: background var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard), width var(--dur-base) var(--ease-standard);
}
.chapter-rail a:hover .chapter-dot { background: var(--brand-green-400); }
.chapter-rail a.active .chapter-dot {
  background: var(--brand-green);
  width: 18px; border-radius: 4px;
}
@media (max-width: 360px) { .chapter-rail { gap: 7px; } }

/* ---- Reveal — mais pronunciado (jornada) ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-fast { opacity: 0; transform: translateY(22px) scale(0.96); transition: opacity .65s var(--ease-out), transform .65s cubic-bezier(0.16, 1.05, 0.36, 1); }
.reveal-fast.in { opacity: 1; transform: none; }
.reveal-stagger > .reveal-fast:nth-child(1).in { transition-delay: 0ms; }
.reveal-stagger > .reveal-fast:nth-child(2).in { transition-delay: 110ms; }
.reveal-stagger > .reveal-fast:nth-child(3).in { transition-delay: 220ms; }
.reveal-stagger > .reveal-fast:nth-child(4).in { transition-delay: 330ms; }

/* ---- Section head + numeral de capítulo ---- */
.section-head { position: relative; max-width: 860px; margin: 0 auto; padding: 0 28px; text-align: left; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw + 0.6rem, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.04;
  margin-top: 18px; text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--brand-green-700); font-weight: 600; }
.eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand-green-700); }
.eyebrow-line { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow-line::before { content: ""; width: 24px; height: 1.5px; background: var(--brand-green); }

/* ---- Botão primário ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brand-red); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 16px 30px; border-radius: var(--r-pill); border: none;
  cursor: pointer; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard), box-shadow var(--dur-slow) var(--ease-standard);
  box-shadow: 0 8px 24px rgba(154, 35, 35, 0.28);
}
.btn-primary:hover { background: var(--brand-red-700); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(154, 35, 35, 0.42); color: #fff; }
.btn-primary svg { transition: transform var(--dur-base) var(--ease-standard); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary:active { transform: translateY(0); }

/* ============================================================
   01 · ABERTURA — capítulo de entrada
   ============================================================ */
.abertura { background: var(--bg); padding: clamp(104px, 19vw, 196px) 0 clamp(80px, 14vw, 150px); }
.abertura .section-head h2 { font-size: clamp(2.6rem, 9vw + 0.2rem, 4.4rem); letter-spacing: -0.035em; line-height: 1; margin-top: 22px; max-width: 15ch; }
.abertura-lede { font-size: clamp(18px, 2.4vw, 21px); color: var(--fg-muted); line-height: 1.6; margin-top: 26px; max-width: 560px; }

/* ============================================================
   02 · SUPORTE — capítulo em verde profundo (transição marcada)
   ============================================================ */
.support {
  background: linear-gradient(165deg, var(--brand-green-700) 0%, var(--brand-green-800) 100%);
  padding: clamp(92px, 15vw, 168px) 0;
}
.support .section-head h2 { color: #fff; }
.support .eyebrow { color: var(--brand-green-200); }
.support .eyebrow-line::before { background: var(--brand-green-300); }
.support-grid { max-width: 1000px; margin: 48px auto 0; padding: 0 24px; display: grid; gap: 18px; grid-template-columns: 1fr; }
.support-card {
  background: var(--bg-raised); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: var(--r-xl);
  padding: 28px 26px; box-shadow: 0 18px 40px rgba(20, 19, 15, 0.22);
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-slow) var(--ease-standard);
}
.support-card:hover { transform: translateY(-4px); box-shadow: 0 26px 54px rgba(20, 19, 15, 0.30); }
.support-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--brand-green-50); color: var(--brand-green-700); display: grid; place-items: center; margin-bottom: 18px; }
.support-icon svg { width: 24px; height: 24px; }
.support-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.015em; line-height: 1.22; margin-bottom: 10px; text-wrap: balance; }
.support-card p { color: var(--fg-muted); font-size: 15px; line-height: 1.62; }
@media (min-width: 720px) { .support-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }

/* ============================================================
   03 · JORNADA — descida pelo trilho
   ============================================================ */
.journey { background: var(--bg); padding: clamp(92px, 15vw, 172px) 0; }
.journey-hint { color: var(--fg-muted); font-size: 15px; margin-top: 14px; font-style: italic; }
.journey-wrap { position: relative; max-width: 720px; margin: 48px auto 0; padding: 0 24px; }
.journey-wrap::before {
  content: ""; position: absolute; left: 48px; top: 34px; bottom: 34px;
  width: 3px; border-radius: 3px;
  background: linear-gradient(var(--brand-green-200), var(--brand-green));
  z-index: 1;
}
.jstep { position: relative; }
.jstep + .jstep { border-top: 1px solid var(--border); }
.jstep-heading { margin: 0; font: inherit; letter-spacing: normal; }
.jstep-trigger {
  display: flex; align-items: center; gap: 18px; width: 100%; padding: 18px 4px;
  background: none; border: none; text-align: left; cursor: pointer; color: var(--fg);
  font-family: var(--font-body); -webkit-tap-highlight-color: transparent;
}
.jstep-num {
  position: relative; z-index: 2; flex-shrink: 0; width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--brand-green); background: var(--bg); color: var(--brand-green-700);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 14px; font-weight: 700;
  font-feature-settings: "tnum";
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard), box-shadow var(--dur-slow) var(--ease-standard);
}
.jstep-trigger:hover .jstep-num { background: var(--brand-green-50); }
.jstep.open .jstep-num { background: var(--brand-green); color: #fff; box-shadow: 0 0 0 5px rgba(128, 164, 34, 0.16); }
.jstep-final .jstep-num { border-color: var(--brand-red); color: var(--brand-red); }
.jstep-final.open .jstep-num { background: var(--brand-red); color: #fff; box-shadow: 0 0 0 5px rgba(154, 35, 35, 0.16); }
.jstep-title { flex: 1; min-width: 0; font-family: var(--font-display); font-size: 18px; font-weight: 600; letter-spacing: -0.012em; line-height: 1.25; color: var(--fg); text-wrap: balance; transition: color var(--dur-base) var(--ease-standard); }
.jstep-trigger:hover .jstep-title { color: var(--brand-green-700); }
.jstep-icon { flex-shrink: 0; width: 24px; height: 24px; display: grid; place-items: center; color: var(--stone-400); transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1), color var(--dur-base) var(--ease-standard); }
.jstep-icon svg { width: 18px; height: 18px; display: block; }
.jstep.open .jstep-icon { transform: rotate(180deg); color: var(--brand-green); }
.jstep-panel { max-height: 0; overflow: hidden; transition: max-height 420ms cubic-bezier(0.22, 1.05, 0.36, 1); }
.jstep-panel-inner { padding: 0 8px 22px 64px; opacity: 0; transform: translateY(6px); transition: opacity var(--dur-base) var(--ease-standard), transform var(--dur-base) var(--ease-standard); }
.jstep.open .jstep-panel-inner { opacity: 1; transform: none; transition-delay: 90ms; }
.jstep-panel-inner p { margin: 0; font-size: 16px; line-height: 1.64; color: var(--fg-muted); }
@media (min-width: 640px) {
  .journey-wrap::before { left: 52px; }
  .jstep-trigger { padding: 20px 8px; }
  .jstep-title { font-size: 19.5px; }
  .jstep-panel-inner { padding-left: 68px; font-size: 16.5px; }
}

/* ============================================================
   04 · QUIZ — capítulo interativo, fundo creme tingido
   ============================================================ */
.quiz-section { background: var(--brand-green-50); padding: clamp(92px, 15vw, 168px) 0; }
.quiz-subhead { color: var(--fg-muted); font-size: 16px; margin-top: 14px; }
.quiz-card { max-width: 640px; margin: 44px auto 0; background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-2xl); box-shadow: var(--shadow-lg); padding: 28px 24px; position: relative; overflow: hidden; }
.quiz-progress { height: 5px; background: var(--stone-100); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 26px; }
.quiz-progress-bar { height: 100%; width: 0; background: var(--brand-green); border-radius: var(--r-pill); transition: width var(--dur-slow) var(--ease-out); }
.quiz-screen { display: none; }
.quiz-screen.active { display: block; animation: quiz-fade .45s var(--ease-out); }
@keyframes quiz-fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quiz-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 18px; }
.quiz-badges li { font-size: 12px; font-weight: 600; color: var(--brand-green-700); background: var(--brand-green-50); border: 1px solid var(--brand-green-200); border-radius: var(--r-pill); padding: 6px 13px; }
.quiz-intro-text { color: var(--fg-muted); font-size: 16.5px; line-height: 1.6; margin: 0 0 24px; }
.quiz-step-label { font-family: var(--font-display); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-green-700); font-weight: 700; }
.quiz-question { font-family: var(--font-display); font-size: clamp(21px, 3.2vw, 26px); font-weight: 700; letter-spacing: -0.02em; margin: 10px 0 6px; line-height: 1.16; }
.quiz-question-sub { color: var(--fg-muted); font-size: 15px; margin: 0 0 22px; }
.quiz-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.quiz-option { display: flex; align-items: flex-start; gap: 14px; padding: 16px 16px; border: 1.5px solid var(--border); border-radius: var(--r-lg); cursor: pointer; background: var(--bg-raised); transition: border-color var(--dur-base) var(--ease-standard), background var(--dur-base) var(--ease-standard); }
.quiz-option:hover { border-color: var(--brand-green-300); background: var(--brand-green-50); }
.quiz-option.selected { border-color: var(--brand-green); background: var(--brand-green-50); }
.quiz-option-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border-strong); flex-shrink: 0; margin-top: 2px; position: relative; transition: border-color var(--dur-base) var(--ease-standard); }
.quiz-option.selected .quiz-option-radio { border-color: var(--brand-green); }
.quiz-option.selected .quiz-option-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--brand-green); }
.quiz-option-label { font-weight: 600; font-size: 15.5px; color: var(--fg); line-height: 1.3; }
.quiz-option-desc { font-size: 13px; color: var(--fg-muted); margin-top: 3px; line-height: 1.45; }
.quiz-nav { display: flex; align-items: center; gap: 12px; }
.quiz-nav .btn-primary { margin-left: auto; }
.quiz-back, .quiz-restart { background: none; border: none; color: var(--fg-muted); font-family: var(--font-body); font-size: 14.5px; font-weight: 600; cursor: pointer; padding: 8px 4px; transition: color var(--dur-base) var(--ease-standard); }
.quiz-back:hover, .quiz-restart:hover { color: var(--brand-green-700); }
.quiz-next:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; transform: none; }
.quiz-next:disabled:hover { background: var(--brand-red); transform: none; box-shadow: none; }
.quiz-result-eyebrow { display: inline-block; margin-bottom: 14px; }
.quiz-result-label { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--brand-green-700); margin-bottom: 10px; line-height: 1.35; }
.quiz-result-label.consistencia { color: var(--brand-red); }
.quiz-result-title { font-family: var(--font-display); font-size: clamp(22px, 3.6vw, 28px); font-weight: 800; letter-spacing: -0.025em; margin: 0 0 14px; line-height: 1.1; }
.quiz-result-title em { font-style: italic; color: var(--brand-green-700); }
.quiz-result-why { color: var(--fg-muted); font-size: 16px; line-height: 1.64; margin: 0 0 26px; }
.quiz-result-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
@media (min-width: 600px) { .quiz-card { padding: 36px 34px; } }

/* ============================================================
   05 · PLANOS — o desfecho do percurso
   ============================================================ */
.plans-section { background: var(--bg); padding: clamp(92px, 15vw, 172px) 0; }
.plans-grid { max-width: 940px; margin: 52px auto 0; padding: 0 24px; display: grid; gap: 24px; grid-template-columns: 1fr; align-items: start; }
.plan { background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 34px 28px; box-shadow: var(--shadow-md); position: relative; display: flex; flex-direction: column; }
.plan--essencial { border: 2px solid var(--brand-green); }
.plan-featured { border: 2px solid var(--brand-red); box-shadow: var(--shadow-lg); }
.plan-badge { position: absolute; top: -13px; left: 28px; background: var(--brand-red); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; padding: 6px 15px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.plan-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.plan-duration { font-family: var(--font-display); font-size: 12.5px; color: var(--brand-green-700); letter-spacing: 0.03em; text-transform: uppercase; margin-top: 6px; font-weight: 600; }
.plan--consistencia .plan-duration { color: var(--brand-red); }
.plan-desc { color: var(--fg-muted); font-size: 15px; line-height: 1.55; margin-top: 12px; }
.plan-features-lead { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; margin: 24px 0 2px; color: var(--fg); }
.plan-features { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.plan-featured .plan-features { margin-top: 12px; }
.plan-features li { position: relative; padding-left: 30px; font-size: 14.5px; line-height: 1.45; color: var(--fg); }
.plan-features li::before {
  content: ""; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand-green-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235E7A16' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px 12px; background-repeat: no-repeat; background-position: center;
}
.plan--consistencia .plan-features li::before {
  background-color: var(--brand-red-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237E1B1B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.plan-cta { margin-top: 30px; width: 100%; justify-content: center; }
.plan-cta.pulse-once { animation: plan-cta-pulse 0.65s cubic-bezier(0.34, 1.56, 0.64, 1) 1; }
@keyframes plan-cta-pulse {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.045); }
  100% { transform: scale(1); }
}
.plan--essencial .plan-cta { background: var(--brand-green); box-shadow: 0 8px 24px rgba(128, 164, 34, 0.28); }
.plan--essencial .plan-cta:hover { background: var(--brand-green-700); box-shadow: 0 14px 32px rgba(128, 164, 34, 0.42); }
.plan-note { font-size: 12.5px; color: var(--fg-subtle); margin-top: 14px; text-align: center; line-height: 1.5; }
.plans-help { text-align: center; margin: 44px auto 0; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.plans-help span { color: var(--fg-muted); font-size: 15px; }
.plans-help a { font-weight: 600; color: var(--brand-green-700); text-decoration: none; }
.plans-help a:hover { text-decoration: underline; text-underline-offset: 3px; }
#plan-essencial, #plan-consistencia, #quiz { scroll-margin-top: 24px; }
@media (min-width: 840px) { .plans-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   06 · FAQ — último capítulo
   ============================================================ */
.faq-section { background: var(--bg-inset); padding: clamp(92px, 15vw, 168px) 0 clamp(100px, 16vw, 180px); }
.faq-list { max-width: 820px; margin: 52px auto 0; padding: 0 28px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; padding: 28px 4px; cursor: pointer;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--fg); gap: 18px;
  transition: color var(--dur-base) var(--ease-standard); user-select: none; letter-spacing: -0.02em;
  background: none; border: none; width: 100%; text-align: left; line-height: 1.25;
}
.faq-q:hover { color: var(--brand-green-700); }
.faq-toggle { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-green-50); color: var(--brand-green-700); display: grid; place-items: center; flex-shrink: 0; transition: transform 380ms cubic-bezier(0.34, 1.56, 0.64, 1), background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard); }
.faq-toggle svg { width: 18px; height: 18px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--brand-green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 420ms cubic-bezier(0.22, 1.05, 0.36, 1); }
.faq-a-inner { padding: 4px 4px 28px; color: var(--fg-muted); font-size: 16px; line-height: 1.68; max-width: 680px; }
.faq-a-inner p { margin: 0 0 12px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner a { color: var(--brand-green-700); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 640px) { .faq-q { font-size: 21px; padding: 30px 4px; gap: 20px; } }

/* ============================================================
   07 · WHATSAPP flutuante
   ============================================================ */
.wa-float {
  position: fixed; bottom: 18px; right: 18px; width: 54px; height: 54px;
  border: none; border-radius: 50%; background: var(--brand-green); color: #fff; cursor: pointer;
  z-index: 60; display: grid; place-items: center; padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24), 0 2px 6px rgba(0, 0, 0, 0.15);
  opacity: 0; transform: translateY(16px) scale(0.9); pointer-events: none;
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1), transform 320ms cubic-bezier(0.22, 1, 0.36, 1), background 200ms ease, box-shadow 200ms ease;
}
.wa-float.is-visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-float:hover { background: var(--brand-green-700); color: #fff; }
.wa-float:active { transform: translateY(0) scale(0.94); }
.wa-float svg { width: 27px; height: 27px; display: block; }

/* ============================================================
   00 · TOPBAR
   ============================================================ */
.topbar {
  position: fixed; top: 3px; left: 0; right: 0; z-index: 50;
  background: rgba(250, 250, 248, 0.70);
  -webkit-backdrop-filter: saturate(180%) blur(22px); backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(20, 19, 15, 0.06);
  transform: translateY(-110%); transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) { .topbar { background: rgba(250, 250, 248, 0.95); } }
.topbar.is-visible { transform: translateY(0); }
.topbar-inner { max-width: 860px; margin: 0 auto; padding: 10px 16px; display: flex; align-items: center; gap: 11px; }
.topbar-photo { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; overflow: hidden; background: var(--stone-100); display: block; }
.topbar-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.topbar-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; flex-shrink: 1; }
.topbar-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--brand-green-700); white-space: nowrap; }
.topbar-role { font-family: var(--font-body); font-size: 12px; color: var(--fg-muted); margin-top: 1px; white-space: nowrap; }
@media (max-width: 380px) {
  .topbar-name { font-size: 14px; }
  .topbar-role { display: none; }   /* em telas muito estreitas, só o nome */
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-fast { opacity: 1; transform: none; transition: none; }
  .quiz-screen.active { animation: none; }
  .wa-float { transition: opacity 200ms ease; transform: none !important; }
  .wa-float.is-visible { transform: none !important; }
  .topbar { transition: none; }
  .chapter-dot { transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
