/* Standalone site contact control, visually matching Angade's compact widget. */
.pf-whatsapp {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 8px;
  border: 1px solid #159447;
  border-radius: 13px;
  background: linear-gradient(160deg, #39df74, #1fb957);
  color: #fff;
  box-shadow: 0 2px 9px rgb(0 0 0 / 20%);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.pf-whatsapp:hover { background: #159447; color: #fff; }
.pf-whatsapp:focus-visible { outline: 3px solid #121212; outline-offset: 3px; box-shadow: 0 0 0 3px #fff; }
.pf-whatsapp svg { display: block; flex: none; width: 32px; height: 32px; }
/* Never cover the visitor's cookie choice. It returns after accept OR reject. */
body:has(.cmplz-cookiebanner.cmplz-show) .pf-whatsapp { visibility: hidden; pointer-events: none; }
@media print { .pf-whatsapp { display: none; } }
