.fab {
  position: fixed;
  bottom: -65px;
  right: 10px;
}

.fab button {
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  background-color: #29640c;
  border: none;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
  font-size: 35px;
  color: #fff;
  transition: .2s ease-out;
}

.fab button:focus {
  outline: none;
}

.fab ul {
  position: absolute;
  bottom: 70px; /* Mantém os botões na posição correta */
  right: 15px;
  padding: 0;
  padding-right: 5px;
  margin: 0;
  list-style: none;
  z-index: 10;
}

.fab ul li {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 10px; /* Exibe os botões */
  opacity: 1; /* Torna os botões visíveis */
  transition: .3s ease-out;
}

.fab ul li label {
  margin-right: 10px;
  white-space: nowrap;
  display: block;
  margin-top: 10px;
  padding: 5px 8px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
  border-radius: 3px;
  height: 18px;
  font-size: 16px;
  pointer-events: none;
  opacity: 0;
  transition: .2s ease-out;
}