/* Esconde a UI até a 1ª máscara confirmar que não há números crus */
html.censor-wait body { visibility: hidden; }

/* Inputs mascarados (tel e texto que o JS marcou) */
input.masked-phone,
input[type="tel"] {
  -webkit-text-security: disc;
  text-security: disc;
}

/* “Links” tel mascarados ficam inertes, sem sublinhado/hover */
a[data-masked-href] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
/* -------- Chatwoot PIN Modal (senha com *) -------- */
.cw-pin-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.cw-pin-modal{
  width: min(420px, calc(100vw - 32px));
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.cw-pin-title{
  font-weight: 700;
  margin: 0 0 6px 0;
}

.cw-pin-desc{
  margin: 0 0 12px 0;
  opacity: .8;
  font-size: 14px;
}

.cw-pin-input{
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 10px;
  font-size: 16px;
  outline: none;
}

.cw-pin-actions{
  margin-top: 12px;
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.cw-pin-btn{
  padding: 9px 12px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

.cw-pin-btn-cancel{
  background: rgba(0,0,0,.08);
}

.cw-pin-btn-ok{
  background: #2563eb;
  color: #fff;
}
