.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 7px 18px 7px 7px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(22, 67, 36, .3);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(22, 67, 36, .4);
}

.whatsapp-symbol {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 22px;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 7px;
  }

  .whatsapp-symbol {
    width: 40px;
    height: 40px;
  }

  .whatsapp-label {
    display: none;
  }
}
