::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  -webkit-border-radius: 16px;
}

::-webkit-scrollbar-track-piece {
  background-color: rgb(0, 0, 0) transparent;
  -webkit-border-radius: 3px;
}

::-webkit-scrollbar-thumb:vertical {
  height: 5px;
  background-color: #115cfa;
  -webkit-border-radius: 3px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 5px;
  background-color: rgb(0, 0, 0) transparent;
  -webkit-border-radius: 3px;
}

.pulse {
  display: inline-block;
  border-radius: 30%;
  color: #fff;
  background-color: #fe642e;
  border: 1px solid #fe642e;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 0 rgba(254, 100, 46, 0.4);
  animation: pulse-animation 2s infinite;
}

.pulse:hover {
  background-color: #ff774d; /* Cor alternativa no hover */
  animation: none; /* Remove animação ao passar o mouse */
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 100, 46, 0.4);
  }
  50% {
    -webkit-box-shadow: 0 0 0 20px rgba(255, 118, 77, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 100, 46, 0);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 100, 46, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(255, 118, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 100, 46, 0);
  }
}
