body {
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE 10+ */
  user-select: none;
  /* Standard */
}
/* Estilo para o botão flutuante */
#sticky-btn {
  /*          bottom: 20px;
            right: 20px;*/
  background-color: #25d366;
  /* Cor do WhatsApp ou outra de destaque */
  border-color: rgb(28, 155, 74);
  color: white;
  padding: 20px;
  border-radius: 50px;
  text-decoration: none;
  /* Sem sublinhado */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  /* Sombra para destaque */
  z-index: 1000;
  /* Garante que fique acima de outros elementos */
  gap: 8px;
  /* Espaço entre ícone e texto */
}
#sticky-btn i {
  /* Se usar um ícone (ex: Font Awesome) */
  font-size: 24px;
}
#sticky-btn span {
  /* Se usar um ícone (ex: Font Awesome) */
  padding-left: 5px;
  font-size: 12px;
}