/* Camelog — landing page (/). Paleta única (papelão), sem gradiente. */

:root {
  --c1: #9E8E80;
  --c2: #8E7F71;
  --c3: #7F7063;
  --c4: #5f5145;
  --c5: #5F5145;
  --ink: #362d24;
  --ink-2: #2a2119;
  --bg: #F7F5F2;
  --paper: #fffdfa;
  --line: #e6ddd2;
  --wa: #25D366;
  --font: "Manrope", "Segoe UI", sans-serif;
  --display: "Montserrat", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --shadow: 0 18px 40px rgba(54, 45, 36, 0.10);
  --shadow-sm: 0 8px 20px rgba(54, 45, 36, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.lp-wrap {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* —— Botões —— */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lp-btn-primary { background: var(--c5); color: #fff; box-shadow: var(--shadow-sm); }
.lp-btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.lp-btn-ghost { background: transparent; color: var(--c5); border: 1px solid var(--line); }
.lp-btn-ghost:hover { border-color: var(--c3); }
.lp-btn-text { background: none; color: var(--c5); padding: 14px 4px; }
.lp-btn-arrow { width: 16px; height: 16px; flex-shrink: 0; }
.lp-btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.lp-btn-lg { padding: 16px 28px; font-size: 1rem; }
.lp-btn-block { width: 100%; }

/* —— Header —— */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 1px solid transparent;
  padding-top: env(safe-area-inset-top, 0px);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.lp-header.is-solid {
  background: #5F5145;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.lp-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 16px;
}
.lp-brand { display: flex; align-items: center; }
.lp-brand-logo { height: 56px; width: auto; }
.lp-brand-logo-on { display: none; }
.lp-brand-logo-over { display: block; }
.lp-header.is-solid .lp-brand-logo-over { display: block; }
.lp-nav {
  display: none;
  align-items: center;
  gap: 22px;
}
.lp-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.lp-nav a:hover { color: var(--c1); }
.lp-header.is-solid .lp-nav a { color: #fff; }
.lp-header.is-solid .lp-nav a:hover { color: var(--c1); }
.lp-nav-item { position: relative; }
.lp-nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  font-family: inherit;
  cursor: pointer;
}
.lp-nav-drop-btn:hover { color: var(--c1); }
.lp-header.is-solid .lp-nav-drop-btn { color: #fff; }
.lp-header.is-solid .lp-nav-drop-btn:hover { color: var(--c1); }
.lp-nav-drop-btn svg { width: 14px; height: 14px; }
.lp-nav-item.open .lp-nav-drop-btn svg { transform: rotate(180deg); }
.lp-drop {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 196px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 50;
}
.lp-drop a {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--c4);
}
.lp-drop a:hover { background: var(--bg); color: var(--ink); }
.lp-nav-item.open .lp-drop { display: flex; }
.lp-header-actions { display: flex; align-items: center; gap: 10px; }
.lp-nav-toggle {
  background: none;
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.45));
}
.lp-nav-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
}
.lp-header.is-solid .lp-nav-toggle {
  color: #fff;
  filter: none;
}
.lp-header:not(.is-solid) .lp-brand-logo-over {
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.4));
}
.lp-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 4px 24px 16px;
  gap: 4px;
}
.lp-nav-mobile a {
  padding: 10px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.lp-header.is-solid .lp-nav-mobile a {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.lp-nav-mobile.open { display: flex; }
.lp-nav-mobile .lp-nav-item { width: 100%; }
.lp-nav-mobile .lp-nav-drop-btn {
  width: 100%;
  justify-content: space-between;
  padding: 10px 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.lp-header.is-solid .lp-nav-mobile .lp-nav-drop-btn { border-top-color: rgba(255, 255, 255, 0.18); color: #fff; }
.lp-nav-mobile .lp-drop {
  position: static;
  box-shadow: none;
  border: none;
  border-radius: 0;
  padding: 0 0 6px 12px;
  background: transparent;
  min-width: 0;
}
.lp-nav-mobile .lp-drop a {
  border-top: none;
  padding: 8px 4px;
  font-weight: 600;
}

/* —— Hero —— */
.lp-hero { padding: 32px 0 40px; }
.lp-hero-film {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 96px 0 56px;
  overflow: hidden;
  background-color: var(--ink-2);
  background-image: url("img/hero-porteiro.jpg?v=3");
  background-size: cover;
  background-position: center 40%;
}
.lp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 1;
  filter: none;
  z-index: 0;
}
.lp-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(26, 20, 15, 0.22);
  pointer-events: none;
}
.lp-hero-film .lp-wrap { position: relative; z-index: 2; }
.lp-hero-film .lp-kicker { color: var(--c1); }
.lp-hero-film .lp-hero-title { color: #fff; }
.lp-hero-film .lp-hero-lead { color: rgba(255, 253, 250, 0.84); }
.lp-hero-film .lp-btn-primary {
  background: #fff;
  color: var(--c5);
}
.lp-hero-film .lp-btn-primary:hover { background: var(--bg); color: var(--ink); }
.lp-hero-film .lp-btn-text { color: #fff; }
.lp-hero-film .lp-sit-card {
  background: var(--paper);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(20, 16, 12, 0.32);
}
.lp-hero-film .lp-sit-icon {
  background: var(--bg);
  color: var(--c5);
}
.lp-hero-film .lp-sit-kind { color: var(--c3); }
.lp-hero-film .lp-sit-card strong { color: var(--ink); }
.lp-hero-film .lp-sit-card p { color: var(--c4); }
.lp-hero-film .lp-sit-card time { color: var(--c3); }
.lp-hero-grid {
  display: grid;
  gap: 36px;
}
.lp-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c3);
}
.lp-hero-title {
  margin: 0 0 22px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--ink);
}
.lp-hero-lead {
  margin: 0 0 14px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--c4);
  max-width: 52ch;
}
.lp-hero-punch {
  margin: 0 0 26px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--c5);
  max-width: 42ch;
}
.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-bottom: 22px;
}
.lp-hero-slogan {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--c3);
  font-size: 1rem;
  margin: 0;
}

.lp-hero-visual { display: flex; justify-content: center; align-items: center; }
.lp-hero-visual .lp-msg-preview {
  margin: 0;
  max-width: 340px;
  height: 428px;
  box-shadow: 0 22px 48px rgba(12, 10, 8, 0.4);
}
.lp-hero-visual .lp-chat-body { min-height: 0; }
.lp-device {
  position: relative;
  width: 268px;
  flex-shrink: 0;
  background: #1c1814;
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    0 28px 56px rgba(20, 16, 12, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.lp-device-btn {
  position: absolute;
  background: #2a241e;
  border-radius: 2px;
}
.lp-device-btn-silent {
  left: -3px;
  top: 92px;
  width: 3px;
  height: 18px;
}
.lp-device-btn-vol {
  left: -3px;
  width: 3px;
  height: 36px;
}
.lp-device-btn-vol-up { top: 128px; }
.lp-device-btn-vol-down { top: 172px; }
.lp-device-btn-power {
  right: -3px;
  top: 148px;
  width: 3px;
  height: 52px;
}
.lp-device-bezel {
  position: relative;
  background: #0b141a;
  border-radius: 34px;
  overflow: hidden;
  height: 520px;
}
.lp-device-island {
  position: absolute;
  z-index: 4;
  top: 9px;
  left: 50%;
  width: 96px;
  height: 26px;
  transform: translateX(-50%);
  background: #0a0a0a;
  border-radius: 20px;
}
.lp-wa {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ece5dd;
}
.lp-wa-status {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 12px 18px 6px;
  background: #008069;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.lp-wa-signals {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lp-wa-signals svg {
  width: 15px;
  height: 11px;
  fill: #fff;
}
.lp-wa-batt {
  width: 22px;
  height: 11px;
  border: 1.4px solid #fff;
  border-radius: 3px;
  position: relative;
  margin-left: 2px;
}
.lp-wa-batt::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 2px;
  width: 2px;
  height: 5px;
  background: #fff;
  border-radius: 0 1px 1px 0;
}
.lp-wa-batt i {
  display: block;
  height: 100%;
  width: 72%;
  background: #fff;
}
.lp-wa-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 10px;
  background: #008069;
  color: #fff;
}
.lp-wa-ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.lp-wa-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
  background: #fff;
  flex-shrink: 0;
}
.lp-wa-who { flex: 1; min-width: 0; }
.lp-wa-who strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
}
.lp-wa-verified {
  width: 14px;
  height: 14px;
  flex: none;
}
.lp-wa-who small {
  display: block;
  font-size: 0.68rem;
  opacity: 0.85;
  font-weight: 500;
}
.lp-wa-thread {
  flex: 1;
  padding: 12px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  background-color: #e5ddd5;
  background-image:
    radial-gradient(rgba(95, 81, 69, 0.06) 1px, transparent 1px);
  background-size: 12px 12px;
  scrollbar-width: none;
}
.lp-wa-thread::-webkit-scrollbar { display: none; }
.lp-device .lp-bubble {
  max-width: 88%;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 7px 9px 5px;
  border-radius: 8px 8px 8px 2px;
  box-shadow: 0 1px 0.5px rgba(11, 20, 26, 0.12);
}
.lp-device .lp-bubble-photo { height: 96px; margin: 0 0 6px; border-radius: 6px; }
.lp-device .lp-bubble-time {
  font-size: 0.6rem;
  color: #667781;
  margin-top: 2px;
}
.lp-wa-compose {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 12px;
  background: #f0f2f5;
}
.lp-wa-field {
  flex: 1;
  background: #fff;
  border-radius: 22px;
  padding: 9px 14px;
  font-size: 0.78rem;
  color: #84919a;
}
.lp-wa-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #008069;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-wa-send svg { width: 16px; height: 16px; margin-left: 2px; }
.lp-phone-hero .lp-phone-frame { width: 260px; }
.lp-phone-hero .lp-phone-screen { height: 420px; }

.lp-sit-stack {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-sit-card {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--c5);
  border: 1px solid var(--c5);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  animation: lp-sit-in 0.45s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.12s);
}
@keyframes lp-sit-in {
  to { opacity: 1; transform: translateY(0); }
}
.lp-sit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-sit-icon svg { width: 22px; height: 22px; }
.lp-sit-kind {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c1);
  margin-bottom: 2px;
}
.lp-sit-card strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  font-weight: 700;
}
.lp-sit-card p {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 250, 0.78);
}
.lp-sit-card time {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--c1);
  font-weight: 600;
  white-space: nowrap;
}

/* —— Frase + foto da portaria (loop) —— */
.lp-overload.lp-section {
  padding: 56px 0 64px;
  background: #fff;
}
.lp-overload .lp-wrap {
  display: block;
}
.lp-overload-stage {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--shadow);
}
.lp-overload-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 42%;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lp-overload-shot.is-on { opacity: 1; }
.lp-overload-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  gap: 16px;
  padding: 48px 20px 18px;
  background: linear-gradient(
    180deg,
    rgba(18, 14, 10, 0) 0%,
    rgba(18, 14, 10, 0.55) 42%,
    rgba(18, 14, 10, 0.88) 100%
  );
}
.lp-overload-phrase {
  display: grid;
  margin: 0;
  max-width: 18ch;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  overflow: hidden;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.lp-overload-phrase span {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.25s ease, visibility 0s linear 0.22s;
  pointer-events: none;
}
.lp-overload-phrase span.is-gone {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
}
.lp-overload-phrase span.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
  pointer-events: auto;
}
.lp-overload-steps {
  display: flex;
  gap: 6px;
  width: min(148px, 46%);
}
.lp-overload-steps i {
  display: block;
  flex: 1;
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.32);
  transition: background 0.3s ease, transform 0.3s ease;
}
.lp-overload-steps i.is-on,
.lp-overload-steps i.is-done {
  background: #fff;
}

/* —— Seções gerais —— */
.lp-section { padding: 44px 0; scroll-margin-top: 84px; }
.lp-section-alt { background: var(--paper); }
.lp-section-head { max-width: 640px; margin: 0 0 28px; }
.lp-section-title {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.12;
}
.lp-section-lead {
  margin: 0;
  color: var(--c4);
  font-size: 1rem;
  line-height: 1.6;
}

/* —— Cobertura / mapa —— */
.lp-coverage-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.lp-counters {
  display: flex;
  gap: 36px;
  margin-top: 28px;
}
.lp-counter { display: flex; flex-direction: column; }
.lp-counter-num {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--c5);
  line-height: 1;
}
.lp-counter-label {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--c3);
  font-weight: 600;
}

.lp-map-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
}
.lp-map-card {
  position: relative;
  width: min(420px, 100%);
  filter: drop-shadow(0 10px 22px rgba(54, 45, 36, 0.08));
}
.lp-map-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}
.lp-map-state {
  fill: #d4d0cb;
  stroke: #fff;
  stroke-width: 1.15;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: fill 0.18s ease;
}
.lp-map-state.is-on {
  fill: var(--c5);
}
.lp-map-state.is-on:hover {
  fill: var(--ink);
}
.lp-map-label {
  font-family: var(--mono);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}
.lp-map-label[data-uf="RJ"] {
  font-size: 13px;
}


/* —— Mensagens (telefone) —— */
.lp-messages-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
.lp-phone { display: flex; justify-content: center; }
.lp-phone-frame {
  width: 280px;
  background: var(--ink-2);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.lp-phone-notch {
  width: 80px;
  height: 14px;
  background: var(--ink-2);
  border-radius: 0 0 12px 12px;
  margin: 0 auto 6px;
  position: relative;
}
.lp-phone-notch::after {
  content: "";
  position: absolute;
  inset: 4px 30px;
  background: #14100b;
  border-radius: 6px;
}
.lp-phone-screen {
  background: #ece5dc;
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
}
.lp-chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--c5);
  color: #fff;
}
.lp-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: block;
  object-fit: cover;
  flex-shrink: 0;
}
.lp-chat-head strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
}
.lp-chat-head small { font-size: 0.68rem; opacity: 0.75; }
.lp-chat-body {
  flex: 1;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.lp-msg-preview {
  width: 100%;
  max-width: 360px;
  height: 428px;
  margin: 0 auto;
  background: #ece5dc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.lp-msg-preview .lp-chat-body {
  flex: 1;
  min-height: 0;
  padding: 16px 12px;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
}
.lp-msg-preview .lp-chat-body::-webkit-scrollbar { display: none; }
.lp-msg-preview .lp-chat-body > * { flex-shrink: 0; }
.lp-bubble {
  max-width: 84%;
  align-self: flex-start;
  background: #fff;
  border-radius: 12px 12px 12px 3px;
  padding: 8px 10px;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--ink);
  box-shadow: 0 1px 1px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(6px);
  animation: lp-bubble-in 0.35s ease forwards;
}
.lp-bubble strong { display: block; margin-bottom: 2px; color: var(--c5); }
.lp-bubble-out {
  align-self: flex-end;
  background: #dcf8c6;
  border-radius: 12px 12px 3px 12px;
}
.lp-bubble-out .lp-bubble-time { text-align: right; }
.lp-bubble-photo {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  background: var(--c1);
  margin-bottom: 6px;
  overflow: hidden;
}
.lp-bubble-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-bubble-time { display: block; margin-top: 3px; font-size: 0.62rem; color: var(--c3); text-align: right; }
@keyframes lp-bubble-in { to { opacity: 1; transform: translateY(0); } }
.lp-typing {
  align-self: flex-start;
  display: flex;
  gap: 3px;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
}
.lp-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c3);
  animation: lp-typing-bounce 1s ease-in-out infinite;
}
.lp-typing span:nth-child(2) { animation-delay: 0.15s; }
.lp-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes lp-typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-3px); opacity: 1; }
}

.lp-faq {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
#duvidas .lp-section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
#duvidas .lp-faq {
  margin-left: auto;
  margin-right: auto;
}
.lp-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 18px;
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 16px 28px 16px 0;
  list-style: none;
  position: relative;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-family: var(--mono);
  font-weight: 600;
  color: var(--c5);
  transition: transform 0.15s ease;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details p {
  margin: 0 0 16px;
  padding-right: 24px;
  color: var(--c4);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* —— Soluções (carrossel) —— */
.lp-sol-section { background: #fff; }
.lp-sol-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.lp-sol-copy { flex: 1; min-width: 0; }
.lp-sol-copy .lp-section-title {
  margin-bottom: 8px;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.lp-sol-copy .lp-section-lead { margin: 0; max-width: 42ch; }
.lp-sol-nav {
  display: flex;
  gap: 10px;
  flex: none;
  padding-bottom: 2px;
}
.lp-sol-btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #e8e2d9;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.lp-sol-btn svg { width: 20px; height: 20px; }
.lp-sol-btn:hover { background: #ddd5ca; }
.lp-sol-btn:disabled {
  opacity: 0.38;
  cursor: default;
}
.lp-sol-btn-next {
  background: var(--c5);
  color: #fff;
}
.lp-sol-btn-next:hover { background: var(--ink); }
.lp-sol-btn-next:disabled:hover { background: var(--c5); }
.lp-sol-viewport {
  overflow: hidden;
  touch-action: pan-y;
}
.lp-sol-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
  will-change: transform;
}
.lp-sol-card {
  position: relative;
  flex: 0 0 82%;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--c5);
  box-shadow: var(--shadow-sm);
}
.lp-sol-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lp-sol-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(to top, rgba(20, 16, 12, 0.78) 0%, rgba(20, 16, 12, 0.22) 55%, transparent);
  pointer-events: none;
}
.lp-sol-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  padding: 0;
  background: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.lp-sol-card h3 {
  margin: 0 0 4px;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.lp-sol-caption p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 253, 250, 0.82);
}
.lp-sol-visual {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 28%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 1;
}
.lp-sol-visual strong {
  font-size: 1.05rem;
  font-weight: 700;
}
.lp-sol-visual small {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 253, 250, 0.78);
}
.lp-sol-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  min-height: 10px;
}
.lp-sol-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #d8d0c6;
  cursor: pointer;
}
.lp-sol-dot.is-on {
  width: 22px;
  background: var(--ink);
}

@media (max-width: 719px) {
  .lp-sol-section {
    height: auto;
    padding: 28px 0 36px;
  }
  .lp-sol-pin {
    position: static;
    height: auto;
    display: block;
    padding: 0;
    background: transparent;
  }
  .lp-sol-pin .lp-wrap {
    display: block;
    width: min(1120px, calc(100% - 32px));
  }
  .lp-sol-head {
    position: sticky;
    top: var(--sol-head-top, calc(52px + env(safe-area-inset-top, 0px)));
    z-index: 8;
    margin-bottom: 0;
    padding-bottom: 12px;
    background: #fff;
  }
  .lp-sol-copy .lp-section-title {
    white-space: nowrap;
    font-size: clamp(1.05rem, 5.2vw, 1.4rem);
    letter-spacing: -0.04em;
  }
  .lp-sol-nav,
  .lp-sol-dots { display: none; }
  .lp-sol-viewport {
    overflow: visible;
    height: auto;
  }
  .lp-sol-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: auto;
    transform: none !important;
    will-change: auto;
    padding-bottom: 8vh;
  }
  .lp-sol-card {
    position: sticky;
    top: var(--sol-stick, 148px);
    flex: none;
    width: 100%;
    height: calc(100dvh - var(--sol-stick, 148px) - var(--sol-bottom, 20px));
    min-height: 280px;
    border-radius: 32px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 -10px 36px rgba(42, 33, 25, 0.16);
  }
  .lp-sol-card:nth-child(1) { z-index: 1; }
  .lp-sol-card:nth-child(2) { z-index: 2; }
  .lp-sol-card:nth-child(3) { z-index: 3; }
  .lp-sol-card:nth-child(4) { z-index: 4; }
  .lp-sol-card::after {
    inset: 0;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(20, 16, 12, 0.55) 0%,
      rgba(20, 16, 12, 0.28) 32%,
      rgba(20, 16, 12, 0.08) 62%,
      rgba(20, 16, 12, 0.2) 100%
    );
  }
  .lp-sol-caption {
    top: 22px;
    bottom: auto;
    left: 20px;
    right: 20px;
    transform: none;
    text-align: left;
  }
  .lp-sol-card h3 { font-size: 1.35rem; }
  .lp-sol-caption p { font-size: 0.88rem; }
}

/* —— Split de módulo —— */
.lp-split {
  display: grid;
  gap: 32px;
  align-items: center;
}
.lp-check {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.lp-check li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.92rem;
  color: var(--c4);
  line-height: 1.5;
}
.lp-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c5);
}
.lp-panel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.lp-panel-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--line);
}
.lp-panel-card header span {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.lp-panel-card header small { color: var(--c3); font-size: 0.75rem; }
.lp-panel-card ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.lp-panel-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 12px 18px;
}
.lp-panel-card li strong {
  grid-column: 1;
  font-size: 0.9rem;
  color: var(--ink);
}
.lp-panel-card li span {
  grid-column: 1;
  font-size: 0.78rem;
  color: var(--c3);
}
.lp-panel-card li em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}
.lp-tag {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c3);
  background: var(--bg);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}
.lp-tag-ok {
  color: var(--c5);
  background: #efe8e0;
}
.lp-aviso-preview {
  padding: 18px;
}
.lp-aviso-preview p { margin: 0 0 10px; color: var(--c4); font-size: 0.92rem; line-height: 1.55; }
.lp-aviso-preview strong { color: var(--ink); }
.lp-aviso-preview span { font-size: 0.75rem; color: var(--c3); }

.lp-cta-final-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
.lp-cta-final-copy { text-align: left; }
.lp-cta-final-copy .lp-section-title { margin-bottom: 22px; }
.lp-cta-final-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--line);
}
.lp-cta-final-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  vertical-align: top;
}

/* —— Preço / simulador —— */
.lp-pricing {
  background: var(--c5);
  color: #fff;
}
.lp-pricing-card {
  display: flex;
  justify-content: center;
  background: transparent;
  color: #fff;
  border-radius: 0;
  padding: 8px 0;
}
.lp-pricing-copy {
  width: 100%;
  max-width: 480px;
  text-align: center;
}
@keyframes lp-shake {
  0%, 100% { transform: translateX(0); }
  16% { transform: translateX(-10px); }
  32% { transform: translateX(10px); }
  48% { transform: translateX(-7px); }
  64% { transform: translateX(7px); }
  80% { transform: translateX(-3px); }
}
.lp-pricing-copy.is-shake {
  animation: lp-shake 0.6s ease;
}
.lp-pricing-copy .lp-kicker { color: var(--c1); }
.lp-pricing-copy .lp-section-title { color: #fff; }
.lp-pricing-copy .lp-section-lead { color: rgba(255,255,255,0.78); }
.lp-price-step { display: none; text-align: left; margin-top: 24px; }
.lp-price-step.active { display: block; }
.lp-pricing-card form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 253, 250, 0.82);
  margin-bottom: 14px;
}
.lp-pricing-card input[type="text"],
.lp-pricing-card input[type="tel"] {
  margin-top: 6px;
  width: 100%;
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.95rem;
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
}
.lp-pricing-card input:not([type="range"]):focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.22);
}
.lp-pricing-card input.lp-field-err { border-color: #f0b4a8; }
.lp-pricing-card .lp-modal-msg { color: #ffd4c8; }
.lp-pricing-card .lp-modal-lead {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}
.lp-pricing-card .lp-modal-fine { color: rgba(255,255,255,0.62); }
.lp-pricing-card .lp-btn-primary {
  background: #fff;
  color: var(--c5);
}
.lp-pricing-card .lp-btn-primary:hover { background: var(--bg); color: var(--ink); }
.lp-pricing-card .lp-btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.lp-pricing-card .lp-btn-ghost:hover { border-color: #fff; }
.lp-pricing-card .lp-btn-text { color: rgba(255,255,255,0.78); }
.lp-pricing-tiers {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}
.lp-pricing-tiers li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 0.85rem;
  flex-wrap: wrap;
  border: 1px solid transparent;
}
.lp-pricing-tiers li.is-on {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
}
.lp-pricing-tiers li span:first-child { font-weight: 700; }
.lp-pricing-tiers li span:nth-child(2) { color: rgba(255,255,255,0.7); }
.lp-pricing-card .lp-sim-units label { color: #fff; }

/* —— Footer —— */
.lp-footer {
  padding: 32px 0 40px;
  background: #5F5145;
}
.lp-footer-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.lp-footer-logo { height: 26px; margin-bottom: 8px; }
.lp-footer-logo-on { display: none; }
.lp-footer-logo-over { display: block; }
.lp-footer-brand p {
  margin: 0;
  font-family: var(--font);
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255, 253, 250, 0.78);
}
.lp-footer-legal {
  margin: 0;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 253, 250, 0.78);
  line-height: 1.45;
}
.lp-footer-legal p { margin: 0; }

#lp-otp {
  letter-spacing: 0.32em;
  text-align: center;
  font-family: var(--mono);
  font-size: 1.25rem;
  font-weight: 700;
}
.lp-modal-msg { margin: -4px 0 14px; font-size: 0.82rem; }
.lp-modal-fine { margin: 14px 0 0; font-size: 0.72rem; line-height: 1.5; }

.lp-slider-wrap { margin-bottom: 18px; }
.lp-faixas {
  text-align: left;
  margin: 0 0 22px;
}
.lp-faixas .lp-kicker,
.lp-simulador .lp-kicker {
  margin: 0 0 10px;
  color: var(--c3);
}
.lp-faixa-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.lp-faixa-row:last-child { border-bottom: 0; }
.lp-faixa-row span { color: var(--c4); font-weight: 600; }
.lp-faixa-row strong { color: var(--ink); font-weight: 800; }
.lp-simulador {
  margin: 0 0 8px;
  text-align: left;
}
.lp-sim-units {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.lp-sim-units label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.lp-sim-units input,
#lp-sim-unidades {
  width: 4.6rem;
  margin: 0;
  padding: 8px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  -moz-appearance: textfield;
}
#lp-sim-unidades::-webkit-outer-spin-button,
#lp-sim-unidades::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#lp-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  margin: 0 0 16px;
  background: #e8e2d9;
  border: 1px solid #ddd5ca;
  border-radius: 999px;
  outline: none;
}
#lp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c5);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(54, 45, 36, 0.28);
  cursor: pointer;
}
#lp-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c5);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(54, 45, 36, 0.28);
  cursor: pointer;
}
.lp-slider-result {
  background: #ebe7e1;
  border: none;
  border-radius: 18px;
  padding: 18px 16px 16px;
  margin: 0 0 18px;
  text-align: center;
}
.lp-slider-plan {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--c4);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.lp-slider-price {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 4px;
}
.lp-slider-result small {
  display: block;
  color: var(--c3);
  font-size: 0.86rem;
  font-weight: 600;
}
.lp-modal-actions { display: grid; gap: 10px; }
.lp-modal-actions .lp-btn { border-radius: 8px; padding: 15px 18px; }
.lp-btn-wa { background: var(--wa); color: #fff; }
.lp-btn-wa:hover { background: #1fb959; transform: translateY(-1px); }
#lp-slider-whatsapp,
#lp-slider-trial { margin: 0; }

/* —— Responsivo —— */
@media (max-width: 719px) {
  .lp-header-row { padding: 8px 0; }
  .lp-brand-logo { height: 36px; }
  .lp-nav-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    filter: none;
  }
  .lp-header.is-solid .lp-nav-toggle {
    background: #fff;
    color: var(--ink);
  }

  .lp-hero { padding: 0; }
  .lp-hero-film {
    min-height: 100svh;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
    overflow: hidden;
  }
  .lp-hero-video { object-position: center 32%; }
  .lp-hero-shade {
    background: linear-gradient(
      180deg,
      rgba(18, 14, 10, 0.38) 0%,
      rgba(18, 14, 10, 0.1) 34%,
      rgba(18, 14, 10, 0.45) 64%,
      rgba(18, 14, 10, 0.84) 100%
    );
  }
  .lp-hero-film .lp-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    min-height: 100dvh;
    width: min(1120px, calc(100% - 40px));
    padding: calc(72px + env(safe-area-inset-top, 0px)) 0 calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .lp-hero-grid {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0;
  }
  .lp-kicker { margin-bottom: 8px; font-size: 0.72rem; }
  .lp-hero-title {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
    line-height: 1.06;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
    text-shadow: 0 2px 28px rgba(0, 0, 0, 0.4);
  }
  .lp-hero-lead {
    font-size: 1.02rem;
    line-height: 1.45;
    margin-bottom: 22px;
    max-width: 28ch;
  }
  .lp-hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
  }
  .lp-hero-film .lp-hero-actions .lp-btn-primary {
    width: auto;
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  .lp-hero-film .lp-hero-actions .lp-btn-text {
    text-align: center;
    padding: 6px 4px 2px;
  }
  .lp-hero-copy { flex: 0 0 auto; }
  .lp-hero-visual { display: none; }
}

@media (min-width: 720px) {
  .lp-nav { display: flex; }
  .lp-nav-mobile { display: none !important; }
  .lp-nav-toggle { display: none; }
  body { padding-bottom: 0; }
  .lp-hero { padding: 56px 0 64px; }
  .lp-hero-film { padding: 108px 0 72px; min-height: 100vh; min-height: 100dvh; }
  .lp-section { padding: 72px 0; }
  .lp-section-head { margin-bottom: 36px; }
  .lp-hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }
  .lp-device { width: 286px; }
  .lp-device-bezel { height: 560px; }
  .lp-coverage-grid { grid-template-columns: 1fr 1fr; }
  .lp-overload.lp-section { padding: 80px 0 88px; }
  .lp-overload-copy { padding: 56px 28px 24px; }
  .lp-overload-phrase { max-width: 18ch; font-size: clamp(1.55rem, 2.4vw, 2.05rem); }
  .lp-messages-grid { grid-template-columns: 1fr 0.9fr; }
  .lp-sol-track { gap: 12px; }
  .lp-sol-card { flex-basis: calc((100% - 12px) / 2); height: 360px; }
  .lp-split { grid-template-columns: 1.1fr 0.9fr; }
  .lp-cta-final-grid { grid-template-columns: 1.05fr 0.95fr; gap: 48px; }
  .lp-nav-item:hover .lp-drop,
  .lp-nav-item:focus-within .lp-drop { display: flex; }
  .lp-drop { top: 100%; padding-top: 14px; }
  .lp-split-rev { grid-template-columns: 0.9fr 1.1fr; }
  .lp-split-rev > :first-child { order: 2; }
  .lp-pricing-card { padding: 16px 0; }
  .lp-footer-row { flex-direction: row; justify-content: space-between; align-items: center; }
  .lp-footer-legal { text-align: right; }
}

@media (min-width: 980px) {
  .lp-hero-title { font-size: 3.1rem; }
  .lp-nav { gap: 26px; }
  .lp-nav a, .lp-nav-drop-btn { font-size: 0.92rem; }
  .lp-sol-card { flex-basis: calc((100% - 36px) / 4); height: 340px; }
  .lp-sol-card h3 { font-size: 1.12rem; }
  .lp-sol-caption p { font-size: 0.78rem; }
  .lp-sol-nav,
  .lp-sol-dots { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .lp-pricing-copy.is-shake {
    animation-duration: 0.6s !important;
  }
}
