.fab-container{
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.fab-button{
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  background: #00c851;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
  transition: transform .3s ease;
}

.fab-button:hover{
  transform: rotate(90deg);
}

.fab-menu{
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.fab-item{
  background: #fff;
  padding: 8px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  text-align: center;
}

.fab-item.agendar{
  background: #25D366;
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 15px;
}