.acw-btn{
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  right: 18px;
  bottom: 18px;
  background: var(--acw-btn-bg, #25D366); /* color WhatsApp */
  color: var(--acw-icon-color, #ffffff);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  text-decoration: none !important;
  z-index: 2147483647; /* por encima de casi todo */
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.acw-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}
.acw-btn svg{ display:block; }
.acw-label{
  position: absolute;
  right: 70px;
  bottom: 14px;
  background: #1f2937; /* gris oscuro */
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  font: 600 13px/1 system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  opacity: .95;
  white-space: nowrap;
}
@media (max-width: 640px){
  .acw-btn{ width:54px; height:54px; right:14px; bottom:14px; }
  .acw-label{ display:none; } /* Ocultamos etiqueta en móviles para no tapar contenido */
}
/* Opción para ocultar en móvil desde ajustes */
@media (max-width: 640px){
  .acw-hide-mobile{ display:none !important; }
}
