/* CSS necesario */
#insane-wa-wrapper{
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  display:flex;
  align-items:center;
  gap:10px;
  font-family: Arial, sans-serif;
}
#insane-wa-text{
  background: rgba(0,0,0,0.75);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
#insane-wa-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:54px;
  height:54px;
  border-radius:50%;
  background: #25D366; /* whatsapp green */
  box-shadow: 0 6px 18px rgba(37,211,102,0.25);
  text-decoration:none;
  border:none;
  padding:0;
  /*background: #25D366 url('/assets/whatsapp-icon.svg') no-repeat center center;
  background-size: 55%; /* ajusta según tu ícono */
}

#insane-wa-btn .wa-icon{
  width:26px;
  height:26px;
  display:inline-block;
  vertical-align:middle;
}
/* version mobile: reducir texto */
@media (max-width:600px){
  #insane-wa-text{ display:none; }
}

