#floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: all 0.25s ease;
}

#floating-whatsapp:hover {
  transform: scale(1.08);
}

#floating-whatsapp svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  #floating-whatsapp {
    left: 15px;
    right: auto;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  #floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}
