.fca-whatsapp-float {
  position: fixed;
  z-index: 9998;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 9px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: #1fa855;
  box-shadow: 0 10px 28px rgba(20, 55, 38, 0.24);
  color: #fff;
  font-family: var(--e-global-typography-primary-font-family, "Open Sans"), sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fca-whatsapp-float:hover,
.fca-whatsapp-float:focus-visible {
  background: #178b46;
  box-shadow: 0 14px 34px rgba(20, 55, 38, 0.3);
  color: #fff;
  transform: translateY(-2px);
}

.fca-whatsapp-float:focus-visible {
  outline: 3px solid var(--e-global-color-accent, #ffb542);
  outline-offset: 3px;
}

.fca-whatsapp-float__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.fca-whatsapp-float__icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

@media (max-width: 520px) {
  .fca-whatsapp-float {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }

  .fca-whatsapp-float__icon {
    width: 40px;
    height: 40px;
  }

  .fca-whatsapp-float__label {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fca-whatsapp-float {
    transition-duration: 0.01ms !important;
  }
}
