/*
 * Arquivo: wp-content/plugins/guia-bras-lojas/assets/css/profile-gate.css
 * Resumo: Estilos do modal do gate de perfil (WhatsApp/Instagram) no front-end.
 */

.gbl-pg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 24px;
}

.gbl-pg-overlay.is-open {
  display: flex;
}

.gbl-pg-modal {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  padding: 20px 20px 16px;
  position: relative;
  font-family: inherit;
}

.gbl-pg-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 8px;
}

.gbl-pg-title {
  margin: 0 32px 8px 0;
  font-size: 20px;
}

.gbl-pg-subtitle {
  margin: 0 0 14px 0;
  font-size: 14px;
  opacity: 0.85;
}

.gbl-pg-label {
  display: block;
  font-size: 13px;
  margin: 0 0 6px;
}

.gbl-pg-input {
  width: 100%;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.25);
  padding: 10px 12px;
  font-size: 16px;
  box-sizing: border-box;
}

.gbl-pg-input:focus {
  outline: none;
  border-color: rgba(0,0,0,0.5);
}

.gbl-pg-error {
  min-height: 18px;
  margin-top: 8px;
  font-size: 13px;
  color: #b00020;
}

.gbl-pg-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}

.gbl-pg-btn {
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.gbl-pg-cancel {
  background: rgba(0,0,0,0.08);
}

.gbl-pg-save {
  background: #111;
  color: #fff;
}

.gbl-pg-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
