.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: linear-gradient(135deg, #1f6b4f, #2c8c67);
  color: #fff;
  text-decoration: none;

  padding: 14px 18px;
  border-radius: 50px;

  font-size: 15px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);

  transition: all 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.whatsapp-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

.whatsapp-text {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}