:root {
  --presta-blue: #2563eb;
  --presta-blue-ink: #1d4ed8;
  --presta-blue-soft: #eff6ff;
  --presta-ink: #222222;
  --presta-body: #3f3f3f;
  --presta-muted: #6a6a6a;
  --presta-hairline: #dddddd;
  --presta-hairline-soft: #ebebeb;
  --presta-canvas: #fffffd;
  --presta-background: #f8f8f6;
  --presta-panel: #f1f5fb;
  --presta-shadow: 0 24px 70px rgb(34 34 34 / 0.1);
  --presta-shadow-tight: 0 14px 38px rgb(34 34 34 / 0.075);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --store-badge-height: clamp(44px, 13.3vw, 48px);
  --store-google-badge-height: clamp(58px, 17.8vw, 64px);
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgb(37 99 235 / 0.08), transparent 28rem),
    linear-gradient(180deg, #f9fafb 0%, var(--presta-background) 42rem);
  color: var(--presta-body);
  font-family: "Satoshi", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgb(34 34 34 / 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgb(34 34 34 / 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, black, transparent 74%);
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--presta-blue);
  outline-offset: 5px;
  border-radius: 10px;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-main-enter {
  from {
    opacity: 0;
    transform: translateY(26px) rotate(0deg) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(2deg) scale(1);
  }
}

@keyframes phone-profile-enter {
  from {
    opacity: 0;
    transform: translate(-16px, 28px) rotate(-2deg) scale(0.96);
  }

  to {
    opacity: 0.94;
    transform: translate(0, 0) rotate(-6deg) scale(1);
  }
}

@keyframes phone-track-enter {
  from {
    opacity: 0;
    transform: translate(12px, 22px) rotate(1deg) scale(0.96);
  }

  to {
    opacity: 0.94;
    transform: translate(0, 0) rotate(-1deg) scale(1);
  }
}

@keyframes note-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgb(221 221 221 / 0.76);
  background: rgb(255 255 253 / 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell,
.hero-shell,
.story-section,
.proof-section,
.provider-shell,
.closing-shell,
.footer-shell,
.legal-identity {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 76px;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  color: var(--presta-ink);
  text-decoration: none;
}

.brand-link {
  min-height: 44px;
  gap: 12px;
  font-weight: 760;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-wordmark {
  font-size: 17px;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 8px;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--presta-muted);
  font-size: 14px;
  font-weight: 650;
  transition:
    color 160ms var(--ease-out),
    background-color 160ms var(--ease-out),
    transform 160ms var(--ease-out);
}

.nav-link:active,
.store-badge-link:active,
.text-action:active,
.proof-card:active {
  transform: scale(0.97);
}

.nav-link--primary {
  background: var(--presta-blue);
  color: var(--presta-canvas);
}

.page-privacy .nav-link--privacy,
.page-terms .nav-link--terms {
  background: var(--presta-blue-soft);
  color: var(--presta-blue-ink);
}

.page-download .nav-link--download {
  background: var(--presta-blue);
  color: var(--presta-canvas);
}

.hero-section,
#como-funciona,
.proof-copy,
#prestadores,
.closing-shell {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-section {
  padding: clamp(56px, 7vw, 92px) 0 clamp(64px, 8vw, 112px);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 6px 11px;
  background: var(--presta-blue-soft);
  color: var(--presta-blue-ink);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.2;
}

.hero-copy h1 {
  max-width: 10.4ch;
  color: var(--presta-ink);
  font-size: clamp(50px, 7.4vw, 92px);
  font-weight: 780;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero-copy > * {
  animation: fade-rise 560ms var(--ease-out) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 150ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 220ms;
}

.hero-lede,
.section-heading p,
.proof-copy p,
.provider-copy p,
.closing-shell p {
  color: var(--presta-body);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.hero-lede {
  max-width: 58ch;
  margin-top: 24px;
}

.hero-actions,
.provider-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
}

.hero-actions {
  margin-top: 34px;
}

.store-badge-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: transform 160ms var(--ease-out), filter 160ms var(--ease-out);
}

.store-badge {
  display: block;
  width: auto;
  max-width: 100%;
}

.store-badge--app-store {
  height: var(--store-badge-height);
}

.store-badge--google-play {
  height: var(--store-google-badge-height);
}

.text-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border-bottom: 1px solid rgb(37 99 235 / 0.35);
  color: var(--presta-blue-ink);
  font-size: 14px;
  font-weight: 720;
  transition:
    color 160ms var(--ease-out),
    border-color 160ms var(--ease-out),
    transform 160ms var(--ease-out);
}

.hero-visual {
  min-width: 0;
}

.phone-composition {
  position: relative;
  min-height: clamp(500px, 52vw, 620px);
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgb(221 221 221 / 0.82);
  border-radius: 30px;
  background: var(--presta-canvas);
  box-shadow: var(--presta-shadow);
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: #f7f7f5;
}

.phone-card--main {
  right: 7%;
  top: 8%;
  width: min(54%, 328px);
  aspect-ratio: 0.56;
  transform: rotate(2deg);
  animation: phone-main-enter 680ms var(--ease-out) 220ms both;
}

.phone-card--support {
  opacity: 0.94;
  filter: saturate(0.94);
}

.phone-card--profile {
  top: 8%;
  left: 2%;
  width: min(38%, 232px);
  aspect-ratio: 0.56;
  transform: rotate(-6deg);
  animation: phone-profile-enter 640ms var(--ease-out) 320ms both;
}

.phone-card--track {
  left: 19%;
  bottom: 0;
  width: min(32%, 194px);
  aspect-ratio: 0.56;
  transform: rotate(-1deg);
  animation: phone-track-enter 640ms var(--ease-out) 420ms both;
}

.visual-note {
  position: absolute;
  display: grid;
  gap: 2px;
  max-width: 230px;
  border: 1px solid rgb(221 221 221 / 0.78);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgb(255 255 253 / 0.86);
  box-shadow: var(--presta-shadow-tight);
  backdrop-filter: blur(10px);
  animation: note-pop 420ms var(--ease-out) 680ms both;
}

.visual-note strong {
  color: var(--presta-ink);
  font-size: 14px;
}

.visual-note span {
  color: var(--presta-muted);
  font-size: 13px;
}

.visual-note--top {
  top: 22%;
  right: 0;
}

.visual-note--bottom {
  left: 0;
  bottom: 20%;
  animation-delay: 780ms;
}

.story-section,
.proof-section,
.seo-discovery-section,
.provider-section,
.closing-section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.proof-copy h2,
.provider-copy h2,
.closing-shell h2 {
  color: var(--presta-ink);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 770;
  letter-spacing: 0;
  line-height: 1;
}

.section-heading p,
.proof-copy p,
.provider-copy p,
.closing-shell p {
  max-width: 66ch;
  margin-top: 18px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: end;
  margin-top: 46px;
}

.flow-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--presta-hairline);
  border-radius: 26px;
  overflow: hidden;
  background: var(--presta-hairline-soft);
  box-shadow: 0 1px 0 rgb(255 255 255 / 0.7) inset;
}

.flow-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 20px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--presta-canvas);
  animation: fade-rise 520ms var(--ease-out) both;
}

.flow-list li:nth-child(2) {
  animation-delay: 80ms;
}

.flow-list li:nth-child(3) {
  animation-delay: 160ms;
}

.flow-index {
  color: var(--presta-blue);
  font-size: 13px;
  font-weight: 780;
}

.flow-list h3,
.proof-card strong,
.stage-caption strong,
.provider-panel strong {
  color: var(--presta-ink);
  font-size: 18px;
  font-weight: 760;
  line-height: 1.25;
}

.flow-list p,
.proof-card span,
.stage-caption span,
.provider-panel p {
  display: block;
  margin-top: 7px;
  color: var(--presta-muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--presta-hairline);
  border-radius: 32px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(160deg, rgb(239 246 255 / 0.72), transparent 48%),
    var(--presta-canvas);
  box-shadow: var(--presta-shadow-tight);
  animation: fade-rise 620ms var(--ease-out) 130ms both;
}

.feature-stage img {
  width: min(78%, 300px);
  max-height: 520px;
  margin: 0 auto;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 48px rgb(34 34 34 / 0.12);
}

.stage-caption {
  position: relative;
  margin-top: -46px;
  border: 1px solid rgb(221 221 221 / 0.8);
  border-radius: 18px;
  padding: 16px;
  background: rgb(255 255 253 / 0.9);
  box-shadow: var(--presta-shadow-tight);
}

.proof-section {
  background:
    linear-gradient(180deg, transparent 0%, rgb(239 246 255 / 0.58) 48%, transparent 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.54fr);
  gap: 18px;
  align-items: stretch;
}

.proof-copy {
  grid-row: span 2;
  align-self: center;
  padding-right: clamp(16px, 5vw, 74px);
  animation: fade-rise 560ms var(--ease-out) both;
}

.proof-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 168px;
  border: 1px solid var(--presta-hairline);
  border-radius: 24px;
  padding: 16px;
  background: var(--presta-canvas);
  box-shadow: var(--presta-shadow-tight);
  animation: fade-rise 520ms var(--ease-out) both;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.proof-card--wide {
  grid-column: 2;
  animation-delay: 80ms;
}

.proof-card--compact {
  animation-delay: 160ms;
}

.proof-card--quiet {
  animation-delay: 240ms;
}

.proof-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  background: var(--presta-blue-soft);
}

.seo-discovery-section {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 22px;
}

.seo-discovery-grid a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  border: 1px solid var(--presta-hairline);
  border-radius: 22px;
  padding: 20px;
  background: var(--presta-canvas);
  box-shadow: var(--presta-shadow-tight);
  transition:
    border-color 160ms var(--ease-out),
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out);
}

.seo-discovery-grid span {
  color: var(--presta-blue-ink);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.seo-discovery-grid strong {
  color: var(--presta-ink);
  font-size: 19px;
  font-weight: 760;
  line-height: 1.18;
}

.provider-section {
  padding-top: clamp(48px, 7vw, 96px);
}

.provider-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 0.84fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.provider-visual {
  position: relative;
  min-height: 430px;
}

.provider-device {
  position: absolute;
  top: 0;
  left: 8%;
  overflow: hidden;
  width: min(52%, 250px);
  aspect-ratio: 0.56;
  border: 1px solid rgb(221 221 221 / 0.82);
  border-radius: 28px;
  background: var(--presta-canvas);
  box-shadow: var(--presta-shadow);
  animation: fade-rise 620ms var(--ease-out) both;
}

.provider-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.provider-panel {
  position: absolute;
  display: grid;
  gap: 4px;
  width: min(78%, 380px);
  border: 1px solid var(--presta-hairline);
  border-radius: 24px;
  padding: 22px;
  background: var(--presta-canvas);
  box-shadow: var(--presta-shadow-tight);
  animation: fade-rise 520ms var(--ease-out) both;
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.provider-panel span {
  color: var(--presta-blue-ink);
  font-size: 12px;
  font-weight: 760;
}

.provider-panel--lead {
  top: 24px;
  left: 38%;
  animation-delay: 80ms;
}

.provider-panel--proposal {
  top: 154px;
  right: 0;
  animation-delay: 160ms;
}

.provider-panel--reputation {
  bottom: 18px;
  left: 9%;
  animation-delay: 240ms;
}

.provider-copy {
  animation: fade-rise 560ms var(--ease-out) 120ms both;
}

.provider-actions,
.closing-actions {
  margin-top: 30px;
}

.closing-section {
  padding-bottom: clamp(54px, 8vw, 96px);
}

.closing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
  border: 1px solid var(--presta-hairline);
  border-radius: 32px;
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgb(239 246 255 / 0.72), transparent 54%),
    var(--presta-canvas);
  box-shadow: var(--presta-shadow-tight);
  animation: fade-rise 560ms var(--ease-out) both;
}

.site-footer {
  border-top: 1px solid var(--presta-hairline);
  padding: 34px 0 42px;
  color: var(--presta-muted);
}

.site-footer .footer-brand,
.site-footer img {
  display: none;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.footer-shell p,
.legal-identity {
  color: var(--presta-muted);
  font-size: 13px;
}

.footer-shell p {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--presta-muted);
  font-size: 13px;
  transition: color 160ms var(--ease-out);
}

.legal-identity {
  margin-top: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    background: var(--presta-blue-soft);
    color: var(--presta-blue-ink);
  }

  .nav-link--primary:hover {
    background: var(--presta-blue-ink);
    color: var(--presta-canvas);
  }

  .store-badge-link:hover {
    filter: saturate(1.04);
    transform: translateY(-1px);
  }

  .text-action:hover,
  .footer-links a:hover {
    color: var(--presta-blue);
    border-color: var(--presta-blue);
  }

  .proof-card:hover,
  .seo-discovery-grid a:hover {
    transform: translateY(-2px);
    box-shadow: var(--presta-shadow);
  }

  .seo-discovery-grid a:hover {
    border-color: #bfdbfe;
  }

  .provider-panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--presta-shadow);
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .flow-layout,
  .seo-discovery-grid,
  .provider-shell,
  .closing-shell {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-visual {
    max-width: 680px;
  }

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

  .proof-copy,
  .proof-card--wide {
    grid-column: auto;
  }

  .proof-copy {
    grid-row: auto;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
  }

  .nav-shell {
    width: min(calc(100% - 24px), 386px);
    grid-template-columns: auto auto;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
  }

  .site-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0;
  }

  .nav-link {
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    padding: 0 16px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .nav-link:not(.nav-link--download) {
    display: none;
  }

  .nav-link--download {
    grid-column: auto;
  }

  .phone-composition {
    min-height: 390px;
    margin-inline: -8px;
  }

  .phone-card--main {
    right: -18px;
    top: 7%;
    width: min(72%, 292px);
  }

  .phone-card--profile {
    left: -10px;
    top: 10%;
    width: min(48%, 190px);
  }

  .phone-card--track {
    display: none;
  }

  .visual-note {
    display: none;
  }

  .proof-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .provider-shell {
    display: flex;
    flex-direction: column;
  }

  .provider-visual {
    order: 2;
    min-height: auto;
  }

  .provider-copy {
    order: 1;
  }

  .provider-device {
    position: relative;
    left: auto;
    width: min(68%, 260px);
    margin: 0 auto 18px;
  }

  .provider-panel {
    position: static;
    width: 100%;
    transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
  }

  .provider-panel + .provider-panel {
    margin-top: 12px;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  html {
    scroll-padding-top: 84px;
  }
}

@media (min-width: 900px) {
  html {
    scroll-snap-type: y proximity;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .hero-shell,
  .story-section,
  .proof-section,
  .seo-discovery-section,
  .provider-shell,
  .closing-shell,
  .footer-shell,
  .legal-identity {
    width: min(calc(100% - 32px), 386px);
    margin-left: 16px;
    margin-right: auto;
  }

  .hero-section,
  .story-section,
  .proof-section,
  .seo-discovery-section,
  .provider-section,
  .closing-section {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero-copy h1,
  .section-heading h2,
  .proof-copy h2,
  .provider-copy h2,
  .closing-shell h2 {
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1.02;
  }

  .hero-copy h1 {
    max-width: 10.9ch;
  }

  .hero-lede,
  .section-heading p,
  .proof-copy p,
  .provider-copy p,
  .closing-shell p {
    font-size: 16px;
  }

  .hero-lede,
  .section-heading p,
  .proof-copy p,
  .provider-copy p,
  .closing-shell p {
    max-width: min(100%, 315px);
  }

  .hero-actions,
  .provider-actions,
  .closing-actions {
    align-items: flex-start;
    gap: 8px 12px;
  }

  .text-action {
    width: fit-content;
  }

  .phone-composition {
    min-height: 430px;
    margin-top: 10px;
    margin-bottom: 28px;
  }

  .phone-card--main {
    right: 0;
    width: min(61%, 216px);
  }

  .phone-card--profile {
    left: 0;
    width: min(39%, 138px);
  }

  .phone-card {
    border-radius: 22px;
  }

  .flow-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature-stage img {
    width: min(82%, 260px);
    max-height: 430px;
  }

  .proof-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    border-radius: 20px;
    padding: 12px;
  }

  .proof-card img {
    max-height: 132px;
    border-radius: 16px;
  }

  .provider-device {
    width: min(58%, 218px);
  }

  .provider-panel {
    border-radius: 20px;
    padding: 18px;
  }

  .closing-shell {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html {
    scroll-snap-type: none;
  }
}
