#pmo-contact-hub-root,
#pmo-contact-hub-root *{box-sizing:border-box}

.pmoch{
  --pmoch-navy:#03153D;
  --pmoch-accent:#25D366;
  --pmoch-blue:#00A2FF;
  --pmoch-white:#fff;
  --pmoch-muted:rgba(255,255,255,.76);
  font-family:inherit;
  position:fixed;
  z-index:999999;
  color:#fff;
  bottom:18px;
  right:18px;
}

.pmoch-btn{
  width:50px;
  height:50px;
  border:0;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--pmoch-accent),#16a34a);
  box-shadow:0 12px 28px rgba(37,211,102,.34);
  cursor:pointer;
  position:relative;
  transition:.22s ease;
}
.pmoch-btn:hover{transform:translateY(-2px) scale(1.04)}
.pmoch-btn svg{width:25px;height:25px;fill:#fff}
.pmoch-btn:before{content:"";position:absolute;inset:-7px;border-radius:50%;background:rgba(37,211,102,.18);animation:pmochPulse 1.9s infinite}
@keyframes pmochPulse{0%{transform:scale(.8);opacity:.85}70%{transform:scale(1.35);opacity:0}100%{opacity:0}}

.pmoch-panel{
  position:absolute;
  right:0;
  bottom:62px;
  width:min(360px,calc(100vw - 42px));
  max-height:min(78vh,620px);
  overflow:auto;
  border-radius:22px;
  background:linear-gradient(145deg,var(--pmoch-navy),#082b70);
  box-shadow:0 24px 70px rgba(3,21,61,.36);
  border:1px solid rgba(255,255,255,.13);
  opacity:0;
  pointer-events:none;
  transform:translateY(14px) scale(.96);
  transition:.24s ease;
  scrollbar-width:thin;
}
.pmoch-panel::-webkit-scrollbar{width:6px}
.pmoch-panel::-webkit-scrollbar-thumb{background:rgba(255,255,255,.22);border-radius:99px}
.pmoch.open .pmoch-panel{opacity:1;pointer-events:auto;transform:translateY(0) scale(1)}
.pmoch.pos-left .pmoch-panel{right:auto;left:0}
.pmoch.pos-right .pmoch-panel{right:0;left:auto}
.pmoch.pos-top .pmoch-panel{bottom:auto;top:62px}
.pmoch.pos-bottom .pmoch-panel{bottom:62px;top:auto}

.pmoch-head{display:flex;gap:12px;align-items:center;padding:17px 17px 11px}
.pmoch-avatar{width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:15px;background:linear-gradient(135deg,#43f3a4,#00A2FF);box-shadow:inset 0 0 0 1px rgba(255,255,255,.2)}
.pmoch-avatar svg{width:23px;height:23px;fill:#fff}
.pmoch-name{font-weight:900;font-size:16px}
.pmoch-status{font-size:11.5px;color:var(--pmoch-muted);margin-top:3px}
.pmoch-close{margin-left:auto;width:32px;height:32px;border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.11);color:#fff;border-radius:50%;font-size:21px;line-height:1;cursor:pointer}

.pmoch-body{padding:0 17px 17px}
.pmoch-title{font-size:22px;font-weight:950;letter-spacing:-.03em;margin:6px 0 7px}
.pmoch-sub{font-size:13.5px;line-height:1.5;color:var(--pmoch-muted);margin:0 0 12px}
.pmoch-pick{display:grid;gap:9px;margin:10px 0 12px}
.pmoch-choice{display:flex;align-items:center;gap:11px;width:100%;border:1px solid rgba(255,255,255,.17);background:rgba(255,255,255,.1);color:#fff;border-radius:15px;padding:12px 13px;text-align:left;cursor:pointer;transition:.2s ease}
.pmoch-choice:hover,.pmoch-choice.selected{background:rgba(255,255,255,.17);border-color:rgba(37,211,102,.75);box-shadow:0 0 0 3px rgba(37,211,102,.14)}
.pmoch-choice span:first-child{width:27px;height:27px;display:flex;align-items:center;justify-content:center;border-radius:10px;background:rgba(255,255,255,.12)}
.pmoch-choice strong{display:block;font-size:13.5px}
.pmoch-choice small{display:block;font-size:10.5px;color:rgba(255,255,255,.67);margin-top:2px}
.pmoch-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:10px}
.pmoch-action{display:flex;align-items:center;justify-content:center;gap:7px;min-height:40px;padding:9px;border-radius:13px;text-decoration:none!important;color:#fff!important;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.1);font-weight:800;font-size:12.5px;transition:.2s}
.pmoch-action:hover{background:rgba(255,255,255,.17);transform:translateY(-1px)}
.pmoch-whatsapp{grid-column:1/-1;background:linear-gradient(135deg,var(--pmoch-accent),#16a34a);color:#05130b!important;border:0;font-weight:950;font-size:14px}
.pmoch-whatsapp.disabled{opacity:.55;pointer-events:none;filter:grayscale(.5)}
.pmoch-foot{text-align:center;color:rgba(255,255,255,.62);font-size:11.5px;margin-top:12px}
.pmoch-toast{display:none;margin-top:9px;border-radius:12px;padding:9px;background:rgba(255,255,255,.12);font-size:12px;color:#fff;line-height:1.45}
.pmoch-toast.show{display:block}

@media(max-width:900px){
  .pmoch-panel{width:min(340px,calc(100vw - 36px));max-height:74vh}
}
@media(max-width:520px){
  .pmoch-btn{width:48px;height:48px}
  .pmoch-btn svg{width:24px;height:24px}
  .pmoch-panel{width:min(315px,calc(100vw - 30px));max-height:70vh;bottom:58px;border-radius:20px}
  .pmoch.pos-top .pmoch-panel{top:58px;bottom:auto}
  .pmoch-head{padding:15px 15px 9px}
  .pmoch-body{padding:0 15px 15px}
  .pmoch-title{font-size:20px}
  .pmoch-sub{font-size:13px}
  .pmoch-actions{grid-template-columns:1fr}
  .pmoch-whatsapp{grid-column:auto}
  .pmoch-choice{padding:10px 11px}
}
