/* Formulário curto → WhatsApp (páginas satélite de bloqueio de conta) */

body.blq-modal-open { overflow: hidden; }

.blq-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 27, 93, 0.55);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}
.blq-modal-overlay[hidden] { display: none; }
@media (min-width: 640px) {
  .blq-modal-overlay { align-items: center; padding: 1.5rem; }
}

.blq-modal {
  background: #FFFFFF;
  border-radius: 16px 16px 0 0;
  width: 100%;
  max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 1.75rem 1.5rem 2rem;
  position: relative;
  box-shadow: 0 12px 48px rgba(4, 27, 93, 0.25);
}
@media (min-width: 640px) {
  .blq-modal { border-radius: 16px; padding: 2rem; }
}

.blq-modal-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 44px;
  min-height: 44px;
  border: none;
  background: #F3F4F6;
  color: #374151;
  border-radius: 50%;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blq-modal-close:hover { background: #E5E7EB; }

.blq-modal h2 {
  font-size: 1.25rem;
  color: #041b5d;
  margin: 0 0 0.4rem;
  padding-right: 2.5rem;
}
.blq-modal-sub {
  color: #6B7280;
  font-size: 0.9rem;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.blq-field { margin-bottom: 1.25rem; }
.blq-field label,
.blq-label-group {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.blq-field .req { color: #dc2626; }

.blq-field input[type="text"] {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  min-height: 48px;
}
.blq-field input[type="text"]:focus {
  outline: none;
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.blq-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blq-chip {
  min-height: 44px;
  padding: 0.6rem 1.1rem;
  border: 1.5px solid #D1D5DB;
  border-radius: 999px;
  background: #FFFFFF;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.blq-chip:hover { border-color: #1E3A8A; }
.blq-chip.active {
  background: #1E3A8A;
  border-color: #1E3A8A;
  color: #FFFFFF;
}

.blq-field-hidden-input { margin-top: 0.6rem; }

.blq-submit-btn {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 10px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.15s, transform 0.15s;
}
.blq-submit-btn:hover { background: #1EBE5A; transform: translateY(-1px); }

.blq-modal-error {
  display: block;
  margin-top: 0.75rem;
  color: #dc2626;
  font-size: 0.85rem;
  text-align: center;
}

/* Botão de CTA que abre o modal — visual idêntico ao .wa-btn existente */
.blq-open-form-btn { cursor: pointer; }

/* Canal alternativo (Instagram) nas páginas de WhatsApp Business / pessoal */
.blq-alt-channel {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6B7280;
  text-align: center;
}
.blq-alt-channel a { color: #1E3A8A; font-weight: 600; text-decoration: underline; }

.hidden { display: none !important; }
