/* Tem em Sinop — web slides */

:root {
  --ink: #1B2A22;
  --paper: #FFFFFF;
  --sage: #EEF3EA;
  --forest: #0F3B2E;
  --forest-text: #CFE6D6;
  --accent: #157A45;
  --accent-dark: #0F5A33;
  --line: #D5DED3;
  --muted: #3A4A41;

  --font-display: "Bricolage Grotesque", "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-text: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(20px, 6vw, 96px);
  --gutter-y: clamp(28px, 7vh, 80px);
  --max: 1180px;

  /* chrome (dots + counter) colour follows the active slide */
  --dot: var(--ink);
}

:root[data-theme="dark"] { --dot: var(--forest-text); }

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, ul, ol, dl { margin: 0; }
strong { font-weight: 700; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Slides ---------- */

.slide {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  align-items: center;
  padding: var(--gutter-y) var(--gutter);
}

.slide__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

.slide--paper  { background: var(--paper);  color: var(--ink); }
.slide--sage   { background: var(--sage);   color: var(--ink); }
.slide--forest { background: var(--forest); color: var(--forest-text); }

.slide--forest .title { color: var(--paper); }
.slide--forest :focus-visible { outline-color: var(--forest-text); }

/* ---------- Type ---------- */

.title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, min(1.1rem + 3vw, 6.4vh), 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  max-width: 22ch;
  text-wrap: balance;
  margin-bottom: clamp(1.4rem, 4vh, 2.6rem);
}

.title--big {
  font-size: clamp(2.2rem, min(1.2rem + 4.2vw, 9vh), 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  max-width: 16ch;
}

.lead {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.45;
  max-width: 54ch;
  color: var(--muted);
  margin-bottom: clamp(1.6rem, 4.5vh, 2.8rem);
}
.slide--forest .lead { color: var(--forest-text); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.8em 1.7em;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn--light {
  background: var(--paper);
  color: var(--forest);
  border-color: var(--paper);
}
.btn--light:hover { background: var(--forest-text); border-color: var(--forest-text); }
.btn--outline {
  background: transparent;
  color: var(--paper);
  border-color: var(--forest-text);
}
.btn--outline:hover { border-color: var(--paper); background: rgba(255, 255, 255, 0.07); }

.actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Photos ---------- */

.figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--forest);
}
.figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* full-height panel bleeding to the right edge of the slide */
.figure--bleed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
}
.has-figure .slide__inner {
  position: relative;
  z-index: 1;
  padding-right: 42%;
}
.has-figure .hero-title {
  font-size: clamp(2.4rem, min(0.8rem + 4.6vw, 12vh), 5.4rem);
  max-width: 14ch;
}
.has-figure .title--big {
  font-size: clamp(2.1rem, min(1rem + 3.4vw, 8.5vh), 4.2rem);
  max-width: 17ch;
}

/* inset card on light slides */
.figure--card {
  border-radius: 28px;
  aspect-ratio: 3 / 4;
  width: 100%;
  max-height: calc(100vh - 2 * var(--gutter-y));
  max-height: calc(100svh - 2 * var(--gutter-y));
}

/* duotone: grayscale image, highlights take one brand colour, shadows the other */
.figure--duotone img { filter: grayscale(1) contrast(1.06); }
.figure--duotone::before,
.figure--duotone::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.figure--duotone::before { mix-blend-mode: multiply; }
.figure--duotone::after  { mix-blend-mode: screen; }
.figure--dark::before  { background: var(--forest-text); }
.figure--dark::after   { background: var(--forest); }
.figure--light::before { background: var(--sage); }
.figure--light::after  { background: var(--forest); }

/* colour variant (no duotone): a light grade only */
.figure--color img { filter: saturate(0.88) contrast(1.02); }

/* ---------- 1. Capa ---------- */

.slide--capa { align-items: stretch; }

.capa {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 2 * var(--gutter-y));
  min-height: calc(100svh - 2 * var(--gutter-y));
}

.brand {
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
  color: var(--forest-text);
}

.capa__hero { padding-bottom: clamp(0rem, 1.5vh, 1.2rem); }

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, min(1rem + 6.2vw, 13vh), 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--paper);
  max-width: 13.5ch;
  text-wrap: balance;
  margin-bottom: clamp(1.2rem, 3.5vh, 2.2rem);
}

.hero-sub {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.35rem);
  line-height: 1.5;
  max-width: 58ch;
  color: var(--forest-text);
  margin-bottom: clamp(1.4rem, 4vh, 2.4rem);
}

/* ---------- 2. Problema ---------- */

.prose p {
  font-size: clamp(1.15rem, 1rem + 0.9vw, 1.7rem);
  line-height: 1.4;
  max-width: 42ch;
}
.prose p + p { margin-top: 1em; }
.prose__close { margin-top: 1.6em !important; }
.prose__close strong { color: var(--accent-dark); }

.problema {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 28vw);
  gap: clamp(32px, 6vw, 110px);
  align-items: center;
}
.problema .title { max-width: 18ch; }
.problema .prose p { max-width: 38ch; }

/* ---------- 3. Por que vence ---------- */

.typelist {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(1.4rem, 4vh, 2.4rem);
}
.typelist li {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, min(1rem + 2.7vw, 6vh), 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  padding: 0.38em 0;
  position: relative;
}
.typelist li::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
}

.close {
  font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);
  line-height: 1.45;
  max-width: 60ch;
  color: var(--muted);
}

/* ---------- 4. Como funciona ---------- */

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3.5vw, 56px);
}

.step {
  border-top: 2px solid var(--accent);
  padding-top: clamp(0.8rem, 2vh, 1.4rem);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, min(1.6rem + 4vw, 11vh), 5.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: clamp(0.6rem, 2vh, 1.1rem);
}

.step__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.15;
  margin-bottom: 0.5em;
}

.step p {
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.5;
}

/* ---------- 5. Demo ---------- */

.demo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(28px, 6vw, 110px);
  align-items: center;
}

.demo__title { margin-bottom: 0; }

.chat {
  background: var(--sage);
  color: var(--ink);
  border-radius: 28px;
  padding: 16px;
}

.chat__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 4px 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
}

.chat__avatar {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
}

.chat__name { font-weight: 600; font-size: 1rem; line-height: 1.25; }
.chat__status { font-size: 0.85rem; color: var(--muted); line-height: 1.3; }

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

.bubble {
  max-width: 90%;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 0.96rem;
  line-height: 1.4;
}
.bubble--me {
  align-self: flex-end;
  background: #CFEBD8;
  border-bottom-right-radius: 6px;
}
.bubble--bot {
  align-self: flex-start;
  background: var(--paper);
  border-bottom-left-radius: 6px;
}

/* entrance sequence, enabled by JS via [data-animate] */
.chat[data-animate] .bubble {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .38s ease, transform .38s ease;
}
.chat[data-animate] .bubble.is-in {
  opacity: 1;
  transform: none;
}

.audio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.audio__play {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dark);
  color: var(--paper);
  display: grid;
  place-items: center;
}
.audio__play svg { margin-left: 2px; }
.audio__bars {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 22px;
}
.audio__bars i {
  display: block;
  flex: 1;
  max-width: 3px;
  border-radius: 2px;
  background: var(--accent-dark);
  height: calc(var(--h) * 1%);
}
.audio__time {
  font-size: 0.85rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.bubble--me .bubble__transcript {
  font-style: italic;
  margin-top: 8px;
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.store {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  text-align: left;
  font: inherit;
  color: inherit;
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
  cursor: pointer;
  transition: border-color .15s ease;
}
.store:hover { border-color: var(--accent); }
.store__info { display: flex; flex-direction: column; min-width: 0; }
.store__name { font-weight: 600; line-height: 1.3; }
.store__meta { font-size: 0.84rem; color: var(--muted); line-height: 1.3; }
.store__buy { flex: none; display: flex; flex-direction: column; align-items: flex-end; }
.store__price { font-weight: 600; font-variant-numeric: tabular-nums; line-height: 1.3; }
.store__cta { font-size: 0.84rem; font-weight: 600; color: var(--accent-dark); line-height: 1.3; }
.bubble--bot .bubble__foot {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 10px;
}

.chat :focus-visible { outline-color: var(--accent-dark); }

.typing {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 14px 16px;
  min-height: 0;
}
.typing.is-in { display: flex; }
.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.5;
  animation: typing 1s ease-in-out infinite;
}
.typing i:nth-child(2) { animation-delay: 0.15s; }
.typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

.audio.is-playing .audio__bars i {
  transform-origin: center;
  animation: eq 0.8s ease-in-out infinite alternate;
}
.audio.is-playing .audio__bars i:nth-child(2n) { animation-delay: -0.25s; }
.audio.is-playing .audio__bars i:nth-child(3n) { animation-delay: -0.5s; }
.audio.is-playing .audio__bars i:nth-child(5n) { animation-delay: -0.65s; }
@keyframes eq {
  from { transform: scaleY(0.45); }
  to   { transform: scaleY(1.15); }
}

.demo__caption {
  font-size: 0.875rem;
  color: var(--forest-text);
  margin-top: 12px;
  padding-left: 6px;
}

/* ---------- 6. Modelo de negócio ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(20px, 2.4vw, 32px);
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 1rem + 0.8vw, 1.6rem);
  line-height: 1.15;
  margin-bottom: 0.6em;
}
.card p {
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  line-height: 1.5;
}

/* ---------- 7. Parceria ACES ---------- */

.rows { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 8px clamp(24px, 4vw, 64px);
  padding: clamp(0.9rem, 2.4vh, 1.4rem) 0;
  position: relative;
}
.row::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--line);
}
.row dt {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.row dd {
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
  line-height: 1.45;
  max-width: 52ch;
}

/* ---------- 9. Contato ---------- */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px clamp(24px, 5vw, 80px);
  align-items: end;
}
.contact__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, min(1.2rem + 5.4vw, 12vh), 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-bottom: 0.35em;
}
.contact__note {
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
}
.contact__who { text-align: right; }
.contact__name {
  font-weight: 700;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 0.35em;
}
.contact__phone {
  color: var(--muted);
  font-size: clamp(1rem, 0.95rem + 0.5vw, 1.3rem);
}
.contact__phone a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  text-decoration-color: var(--line);
  transition: color .15s ease, text-decoration-color .15s ease;
}
.contact__phone a:hover { color: var(--accent-dark); text-decoration-color: var(--accent-dark); }

/* ---------- Chrome: dots + counter ---------- */

.dots {
  position: fixed;
  right: clamp(10px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}
.dots button {
  width: 26px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: height .2s ease;
}
.dots button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1.5px solid var(--dot);
  background: transparent;
  transition: height .2s ease, background-color .2s ease, border-color .2s ease;
}
.dots button:hover::before { background: var(--dot); }
.dots button[aria-current="true"] { height: 38px; }
.dots button[aria-current="true"]::before { height: 26px; background: var(--dot); }
.dots button:focus-visible { outline-color: var(--dot); }
:root[data-theme="dark"] .dots {
  padding: 8px 2px;
  border-radius: 999px;
  background: rgba(15, 59, 46, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.counter__n { display: inline-block; }
.counter {
  position: fixed;
  left: clamp(14px, 2.2vw, 30px);
  bottom: clamp(12px, 2.4vh, 26px);
  z-index: 10;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dot);
  font-variant-numeric: tabular-nums;
  transition: color .2s ease;
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .slide {
    padding-right: calc(var(--gutter) + 22px);
    padding-bottom: calc(var(--gutter-y) + 16px); /* room for the fixed counter */
  }
  .capa {
    min-height: calc(100vh - 2 * var(--gutter-y) - 16px);
    min-height: calc(100svh - 2 * var(--gutter-y) - 16px);
  }
  .title { margin-bottom: clamp(1.1rem, 3vh, 1.8rem); }
  .lead { margin-bottom: clamp(1.2rem, 3vh, 1.8rem); font-size: 1.1rem; }
  .card { padding: 16px 18px; border-radius: 14px; }
  .card h3 { font-size: 1.2rem; }
  .card p { font-size: 0.98rem; }
  .cards { gap: 10px; }

  .chat { padding: 12px; border-radius: 24px; }
  .chat__head { padding-bottom: 12px; margin-bottom: 12px; }
  .bubble { padding: 10px 12px; font-size: 0.92rem; }
  .store { padding: 8px 10px; }
  .demo__caption { margin-top: 8px; }

  .steps { grid-template-columns: 1fr; gap: 18px; }
  .step {
    display: grid;
    grid-template-columns: 2.4em 1fr;
    column-gap: 12px;
    align-items: start;
    padding-top: 0.7rem;
  }
  .step__num {
    grid-row: 1 / 3;
    font-size: clamp(2.4rem, 1.4rem + 3vw, 3rem);
    margin-bottom: 0;
  }
  .step__title { grid-column: 2; margin-bottom: 0.3em; }
  .step p { grid-column: 2; }

  .has-figure .slide__inner { padding-right: 0; }
  .has-figure { grid-template-rows: auto 1fr; align-items: start; }
  .figure--bleed {
    position: relative;
    width: auto;
    height: 26vh;
    margin: calc(-1 * var(--gutter-y)) calc(-1 * var(--gutter) - 22px) 20px calc(-1 * var(--gutter));
  }
  .capa { min-height: 0; }
  .capa .brand { margin-bottom: clamp(1rem, 3vh, 2rem); }

  .problema { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .problema .figure--card {
    order: -1;
    aspect-ratio: 16 / 9;
    max-height: 24vh;
    border-radius: 20px;
  }

  .demo { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .demo__mock { max-width: 430px; }

  .cards { grid-template-columns: 1fr; }

  .row { grid-template-columns: 1fr; gap: 6px; }

  .contact { grid-template-columns: 1fr; align-items: start; }
  .contact__who { text-align: left; }
}

@media (max-width: 420px) {
  .bubble { max-width: 96%; }
  .audio { min-width: 0; }
  .btn { width: 100%; }
}

/* ---------- Motion ---------- */

/* Entrance system: elements marked .reveal fade and rise when their slide
   becomes active. Only applied when JS is running (html.js). */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .7s cubic-bezier(.2, .7, .2, 1),
    transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 90ms);
}
.js .slide.is-active .reveal {
  opacity: 1;
  transform: none;
}

/* thin lines draw from the left after their row appears */
.js .typelist li::after,
.js .row::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 90ms + 200ms);
}
.js .slide.is-active .typelist li::after,
.js .slide.is-active .row::after { transform: scaleX(1); }

/* capa: title arrives word by word */
.js .hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity .55s cubic-bezier(.2, .7, .2, 1),
    transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--w, 0) * 55ms + 80ms);
}
.js .slide.is-active .hero-title .word {
  opacity: 1;
  transform: none;
}
.js .slide--capa .hero-sub { --i: 5; }
.js .slide--capa .btn { --i: 7; }

/* step numbers land slightly after their column */
.js .step__num {
  display: block;
  opacity: 0;
  transform: translateY(0.25em);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
  transition-delay: calc(var(--i, 0) * 90ms + 180ms);
}
.js .slide.is-active .step__num { opacity: 1; transform: none; }

/* store rows pop in after their bubble */
.chat[data-animate] .store {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease, border-color .15s ease;
  transition-delay: calc(var(--i, 0) * 90ms + 150ms);
}
.chat[data-animate] .bubble.is-in .store { opacity: 1; transform: none; }

/* counter tick */
.counter__n.tick { animation: tick .32s cubic-bezier(.2, .7, .2, 1); }
@keyframes tick {
  from { transform: translateY(0.5em); opacity: 0; }
  to   { transform: none; opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .hero-title .word,
  .js .step__num,
  .chat[data-animate] .bubble,
  .chat[data-animate] .store {
    opacity: 1; transform: none; transition: none;
  }
  .js .typelist li::after,
  .js .row::after { transform: none; transition: none; }
  .typing i, .audio.is-playing .audio__bars i, .counter__n.tick { animation: none; }
  .dots button, .dots button::before, .counter, .btn, .store { transition: none; }
}

/* ---------- Print ---------- */

@page { size: A4 landscape; margin: 0; }

@media print {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  body { background: var(--paper); }

  .dots, .counter { display: none !important; }

  .slide {
    min-height: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    padding: 16mm 20mm;
    break-after: page;
    page-break-after: always;
    break-inside: avoid;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .slide:last-child { break-after: auto; page-break-after: auto; }

  .capa { min-height: calc(100vh - 32mm); }

  /* Chrome lays the A4 page out at about 842px wide, so pin the desktop layouts here. */
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
  .step { display: block; padding-top: 0.8rem; }
  .step__num { font-size: 3.6rem; margin-bottom: 0.5rem; }
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .card { padding: 20px 22px; }
  .demo { grid-template-columns: minmax(0, 1fr) 380px; gap: 40px; align-items: center; }
  .chat { padding: 14px; }
  .row { grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 8px 32px; }
  .contact { grid-template-columns: minmax(0, 1fr) auto; align-items: end; }
  .contact__who { text-align: right; }
  .btn { width: auto; }
  .has-figure .slide__inner { padding-right: 42%; }
  .has-figure { grid-template-rows: none; align-items: center; }
  .figure--bleed { position: absolute; width: 40%; height: auto; margin: 0; }
  .problema { grid-template-columns: minmax(0, 1fr) 300px; gap: 40px; align-items: center; }
  .problema .figure--card { order: 0; aspect-ratio: 3 / 4; max-height: none; border-radius: 28px; }
  .figure--duotone::before, .figure--duotone::after { display: block; }

  .chat[data-animate] .bubble,
  .chat[data-animate] .store,
  .js .reveal,
  .js .hero-title .word,
  .js .step__num { opacity: 1; transform: none; transition: none; }
  .js .typelist li::after,
  .js .row::after { transform: none; }
  .typing { display: none !important; }
}
