/* Botón flotante fijo */
.cg-whatsapp-float{
  position: fixed !important;
  right: 16px !important;
  bottom: 16px !important;
  z-index: 99999 !important;

  /* Tamaño del botón: AJUSTÁ ACÁ */
  width: 72px !important;
  height: 72px !important;

  /* Icono como fondo */
  background-image: url('https://ss-static-001.esmsv.com/r/content/host2/ea74d6c9df6e7a276560eb941b15eb63//editor/whatsapp2.webp') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;

  border-radius: 50% !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.22) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.cg-whatsapp-float:hover{
  transform: scale(1.08) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,.30) !important;
}