/* Tradesoft - Botón flotante de WhatsApp */

.twfb-container{
  position: fixed;
  z-index: 999999;
  bottom: calc(16px + env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  right: auto;

  /* evita que tape clicks fuera del botón */
  pointer-events: none;
}

.twfb-link{
  display: inline-block;
  pointer-events: auto;
}

.twfb-image{
  display: block;
  height: auto;
  width: auto;
  max-width: min(260px, 92vw);
}

/* Escritorio: abajo a la derecha */
@media (min-width: 768px){
  .twfb-container{
    left: auto;
    transform: none;
    right: 16px;
    bottom: 16px;
  }

  .twfb-image{
    max-width: 260px;
  }
}
