.cardpassos, .custom-arrow-mobile {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Ativa a animação */

.cardpassos.show, .custom-arrow-mobile.show {
  opacity: 1;
  transform: translateY(0);
}

.cardpassos {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 24px;
  border: 1.5px solid #000;
  background: #FFF;
  max-width: 300px;
  min-width: 200px;
}

.titlepassos {
  color: #000;
  font-family: "sonar-sans",sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 650;
  line-height: normal;
  padding: 0;
  margin: 0;
}

.titlepassos2 {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 650;
  line-height: 20px;
  padding: 0;
  margin: 0;
  font-family: "sonar-sans",sans-serif;
}

.linhapassos {
  height: 2px;
  align-self: stretch;
  background: #000;
}

.textpassos {
  color: #000;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media (max-width: 767px) {
  .custom-arrow-mobile {
    display: none !important;
  }
}

