html {
  scroll-padding-top: 5rem
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important
  }
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(.22, 1, .36, 1)
}

.timeline-line {
  background: linear-gradient(180deg, #f97316 0%, #1f2937 100%)
}

.whatsapp-pulse {
  box-shadow: 0 0 0 0 rgb(249 115 22 / .5);
  animation: wa-pulse 2s ease-out infinite
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(249 115 22 / .45)
  }

  70% {
    box-shadow: 0 0 0 14px #fff0
  }

  100% {
    box-shadow: 0 0 0 0 #fff0
  }
}

@media (prefers-reduced-motion:reduce) {
  .whatsapp-pulse {
    animation: none
  }
}

.blog-prose {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #44403c
}

.blog-prose h2 {
  margin-top: 2rem;
  margin-bottom: .75rem;
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #1f2937
}

.blog-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937
}

.blog-prose p {
  margin-top: .75rem
}

.blog-prose ul,
.blog-prose ol {
  margin-top: .75rem;
  margin-left: 1.25rem;
  list-style: disc
}

.blog-prose ol {
  list-style: decimal
}

.blog-prose li {
  margin-top: .35rem
}

.blog-prose a {
  color: #f97316;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px
}

.blog-prose a:hover {
  color: #ea580c
}

.blog-prose blockquote {
  margin-top: 1rem;
  border-left: 4px solid #f97316;
  padding-left: 1rem;
  font-style: italic;
  color: #57534e
}

.blog-prose hr {
  margin: 2rem 0;
  border: 0;
  border-top: 1px solid #e7e5e4
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.animate-scroll-logos {
  animation: scroll-logos 30s linear infinite
}

.animate-scroll-logos:hover {
  animation-play-state: paused
}

@media (prefers-reduced-motion:reduce) {
  .animate-scroll-logos {
    animation: none
  }
}

.ref-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(.25, .46, .45, .94);
  will-change: transform
}

.ref-card {
  width: 260px;
  flex-shrink: 0;
  text-decoration: none
}

.ref-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e7e5e3;
  color: #57534e;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgb(0 0 0 / .06)
}

.ref-nav-btn:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  box-shadow: 0 4px 16px rgb(249 115 22 / .25);
  transform: translateY(-50%) scale(1.05)
}

.ref-nav-prev {
  left: -22px
}

.ref-nav-next {
  right: -22px
}

@media (max-width:768px) {
  .ref-nav-btn {
    display: none
  }

  .ref-card {
    width: 220px
  }
}