/* ChatGR WhatsApp soporte/ventas */
:root {
  --chatgr-wa-bottom: 24px;
  --chatgr-wa-right: 24px;
  --chatgr-wa-green: #16c784;
  --chatgr-wa-green-dark: #0fa66a;
  --chatgr-wa-navy: #0f172a;
}

.chatgr-wa-float {
  position: fixed;
  right: var(--chatgr-wa-right);
  bottom: var(--chatgr-wa-bottom);
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--chatgr-wa-green), var(--chatgr-wa-green-dark));
  box-shadow: 0 18px 42px rgba(15, 23, 42, .24), 0 0 0 1px rgba(255,255,255,.08) inset;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.chatgr-wa-float:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .28), 0 0 0 1px rgba(255,255,255,.12) inset;
}

.chatgr-wa-float:active {
  transform: translateY(-1px);
}

.chatgr-wa-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: block;
}

.chatgr-wa-text {
  display: grid;
  gap: 3px;
}

.chatgr-wa-title {
  font-size: 14px;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.chatgr-wa-subtitle {
  font-size: 11px;
  opacity: .86;
  font-weight: 700;
  white-space: nowrap;
}

.chatgr-wa-index-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, var(--chatgr-wa-green), var(--chatgr-wa-green-dark));
  box-shadow: 0 16px 34px rgba(22, 199, 132, .26);
  text-decoration: none !important;
  font-weight: 900;
}

.chatgr-wa-index-cta svg {
  width: 24px;
  height: 24px;
}

body.chatgr-wa-inbox .chatgr-wa-float,
body:has(#inboxApp) .chatgr-wa-float {
  bottom: 112px;
}

body.chatgr-wa-modal-open .chatgr-wa-float {
  opacity: .25;
  pointer-events: none;
}

@media (max-width: 900px) {
  .chatgr-wa-float {
    right: 16px;
    bottom: 18px;
    min-height: 54px;
    padding: 12px;
  }

  .chatgr-wa-text {
    display: none;
  }

  .chatgr-wa-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  body.chatgr-wa-inbox .chatgr-wa-float,
  body:has(#inboxApp) .chatgr-wa-float {
    bottom: 104px;
  }
}

@media print {
  .chatgr-wa-float,
  .chatgr-wa-index-cta {
    display: none !important;
  }
}
