.greensystems-whatsapp {
  position: fixed;
  right: clamp(16px, 2.2vw, 30px);
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 8px 18px 8px 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: #168b49;
  box-shadow: 0 10px 30px rgba(13, 63, 35, 0.25);
  color: #fff !important;
  font-family: inherit;
  line-height: 1.1;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
}

.greensystems-whatsapp:hover,
.greensystems-whatsapp:focus-visible {
  background: #087c3a;
  box-shadow: 0 13px 34px rgba(13, 63, 35, 0.32);
  color: #fff !important;
  text-decoration: none !important;
}

.greensystems-whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.greensystems-whatsapp__icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.greensystems-whatsapp__icon img {
  display: block;
  width: 27px;
  height: 27px;
}

.greensystems-whatsapp__copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.greensystems-whatsapp__copy small,
.greensystems-whatsapp__copy strong {
  color: #fff;
  letter-spacing: 0;
}

.greensystems-whatsapp__copy small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.greensystems-whatsapp__copy strong {
  font-size: 16px;
  font-weight: 700;
}

@media (prefers-reduced-motion: no-preference) {
  .greensystems-whatsapp {
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  }

  .greensystems-whatsapp:hover,
  .greensystems-whatsapp:focus-visible {
    transform: translateY(-2px);
  }
}

@media (max-width: 767px) {
  .greensystems-whatsapp {
    right: 15px;
    bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    width: 58px;
    min-width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 8px;
    justify-content: center;
  }

  .greensystems-whatsapp__copy {
    display: none;
  }
}

@media print {
  .greensystems-whatsapp {
    display: none !important;
  }
}

