/* ══════════════════════════════════════════════
   MÓDULO RECIBOS
   ══════════════════════════════════════════════ */

/* ── Loading / Error / Empty ─────────────────── */
.recibos-loading,
.recibos-error {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--text-light, #888);
  font-size: .9rem;
}
.recibos-error { color: var(--danger); }

.recibos-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 3rem 1rem;
  color: var(--text-light, #aaa);
}
.recibos-empty svg { opacity: .35; }
.recibos-empty p { font-size: .9rem; margin: 0; }

/* ── Botón nuevo recibo ──────────────────────── */
.recibos-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.btn-nuevo-recibo {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--primary, #2d6a4f);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nuevo-recibo:hover { opacity: .88; }

/* ── Grupo (accordion) ───────────────────────── */
.recibos-grupo {
  border: 1px solid var(--border, #e8ede9);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: .75rem;
  background: var(--surface, #fff);
}

.recibos-grupo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 1rem;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.recibos-grupo-header:hover {
  background: var(--bg, #f7faf8);
}

.recibos-grupo-info {
  display: flex;
  align-items: center;
  min-width: 0;
}

.recibos-grupo-datos {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.recibos-grupo-nombre {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text, #1a2e1e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recibos-grupo-sub {
  font-size: .78rem;
  color: var(--text-light, #888);
  margin-top: .1rem;
}

.recibos-chevron {
  color: var(--text-light, #aaa);
  transition: transform .2s;
  flex-shrink: 0;
}

.recibos-grupo--abierto .recibos-chevron {
  transform: rotate(90deg);
}

/* ── Cuerpo del grupo ────────────────────────── */
.recibos-grupo-body {
  display: none;
  border-top: 1px solid var(--border, #e8ede9);
  flex-direction: column;
}

.recibos-grupo--abierto .recibos-grupo-body {
  display: flex;
}

/* ── Tarjeta de recibo (fila con divisor) ────── */
.recibo-card {
  padding: .7rem 1rem;
  cursor: pointer;
  transition: background .12s;
  border-bottom: 1px solid var(--border, #e8ede9);
}
.recibo-card:last-child {
  border-bottom: none;
}
.recibo-card:hover {
  background: var(--bg, #f7faf8);
}

.recibo-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
}

.recibo-card-left {
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
}

.recibo-nro {
  font-size: .72rem;
  font-weight: 600;
  color: var(--primary, #2d6a4f);
  letter-spacing: .02em;
  flex-shrink: 0;
}

.recibo-cliente {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text, #1a2e1e);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.recibo-card-right {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.recibo-monto {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text, #1a2e1e);
  white-space: nowrap;
}
.recibo-metodo-badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.recibo-metodo-efectivo       { background: var(--success-bg); color: var(--success-text); }
.recibo-metodo-transferencia  { background: var(--info-bg); color: var(--info-text); }
.recibo-metodo-tarjeta        { background: var(--warning-bg); color: var(--warning-text); }
.recibo-metodo-cheque         { background: var(--danger-bg2); color: var(--danger-text); }
.recibo-metodo-deposito       { background: var(--info-bg); color: var(--info-text); }

.recibo-banco,
.recibo-comprobante-nro {
  font-size: .75rem;
  color: var(--text-light, #999);
}

/* ════════════════════════════════════════════════
   MODAL BASE (compartido por detalle y formulario)
   ════════════════════════════════════════════════ */
.modal-recibo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

@media (min-width: 520px) {
  .modal-recibo-overlay {
    align-items: center;
    padding: 1rem;
  }
}

.modal-recibo-card {
  background: var(--surface, #fff);
  border-radius: 18px 18px 0 0;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 1.25rem 1.25rem 2rem;
}

@media (min-width: 520px) {
  .modal-recibo-card {
    border-radius: 16px;
    padding: 1.5rem;
  }
}

.modal-recibo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.modal-recibo-titulo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text, #1a2e1e);
  font-family: 'Roboto', sans-serif;
}

.modal-recibo-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light, #aaa);
  padding: .3rem;
  border-radius: 50%;
  transition: background .15s;
  display: flex;
}
.modal-recibo-close:hover { background: var(--border, #e8ede9); color: var(--text, #333); }

/* ════════════════════════════════════════════════
   DOCUMENTO RECIBO (layout tipo impreso)
   Nota: esta sección usa colores de "papel" FIJOS a propósito.
   El recibo se comparte/imprime como documento, así que debe
   verse igual (blanco, profesional) sin importar el tema de la app.
   ════════════════════════════════════════════════ */
.recibo-doc {
  background: #fafcfb;
  border: 1px solid #e0e9e4;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.recibo-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .75rem;
}

.recibo-doc-empresa {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.recibo-doc-logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #2d6a4f;
  letter-spacing: -.01em;
}

.recibo-doc-subtitulo {
  font-size: .72rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.recibo-doc-nro-bloque {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .1rem;
}

.recibo-doc-nro-label {
  font-size: .65rem;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.recibo-doc-nro {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e1e;
  font-family: 'Roboto', sans-serif;
}

.recibo-doc-fecha {
  font-size: .75rem;
  color: #aaa;
}

.recibo-doc-sep {
  border: none;
  border-top: 1px dashed #d4e4db;
  margin: 1rem 0;
}

.recibo-doc-partes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1rem;
}

.recibo-doc-parte {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  background: #f0f5f2;
  border-radius: 9px;
  padding: .65rem .85rem;
  overflow: hidden;
  min-width: 0;
}

.recibo-doc-parte--right {
  align-items: flex-start;
  text-align: left;
}

.recibo-doc-parte-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #aaa;
  font-weight: 600;
}

.recibo-doc-parte-nombre {
  font-size: .95rem;
  font-weight: 700;
  color: #1a2e1e;
}

.recibo-doc-parte-sub {
  font-size: .74rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Bloque de monto destacado ────────────────── */
.recibo-doc-monto-bloque {
  background: #2d6a4f;
  border-radius: 10px;
  padding: .9rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  margin: 1rem 0;
}

.recibo-doc-monto-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

.recibo-doc-monto {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  letter-spacing: -.01em;
}

/* ── Concepto ─────────────────────────────────── */
.recibo-doc-concepto {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  background: #f0f5f2;
  border-radius: 8px;
  padding: .65rem .9rem;
  margin-bottom: .25rem;
}

.recibo-doc-concepto-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #aaa;
  font-weight: 600;
}

.recibo-doc-concepto-val {
  font-size: .88rem;
  color: #1a2e1e;
  font-style: italic;
}

/* ── Info de pago ─────────────────────────────── */
.recibo-doc-pago-info {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.recibo-doc-pago-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.recibo-doc-pago-lbl {
  font-size: .78rem;
  color: #888;
  flex-shrink: 0;
}

.recibo-doc-pago-val {
  font-size: .85rem;
  font-weight: 500;
  color: #1a2e1e;
  text-align: right;
}

/* ════════════════════════════════════════════════
   PREVIEW DE COMPROBANTE
   ════════════════════════════════════════════════ */
.recibo-preview-wrap {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .25rem;
}

.recibo-preview-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-light, #aaa);
  font-weight: 600;
  margin: 0;
}

.recibo-preview-img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--border, #e0e9e4);
  background: var(--bg, #f5f7f6);
}

.recibo-preview-iframe {
  width: 100%;
  height: 300px;
  border: 1px solid var(--border, #e0e9e4);
  border-radius: 10px;
}

.recibo-preview-fallback {
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 2rem;
  background: var(--bg, #f5f7f6);
  border-radius: 10px;
  color: var(--text-light, #aaa);
  font-size: .82rem;
  text-align: center;
}

.recibo-preview-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--primary, #2d6a4f);
  font-weight: 600;
  text-decoration: none;
}
.recibo-preview-link:hover { text-decoration: underline; }

/* ── Botón link comprobante (fallback genérico) ─ */
.recibo-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--primary, #2d6a4f);
  color: #fff;
  border-radius: 8px;
  padding: .55rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  width: 100%;
  justify-content: center;
}
.recibo-link-btn:hover { opacity: .88; }

/* ════════════════════════════════════════════════
   FORMULARIO NUEVO RECIBO
   ════════════════════════════════════════════════ */
.form-recibo-grid {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.form-recibo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}

.form-recibo-field {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.form-recibo-field label {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-light, #888);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.form-recibo-field input,
.form-recibo-field select,
.form-recibo-field textarea {
  background: var(--bg, #f7faf8);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 8px;
  padding: .55rem .75rem;
  font-size: .88rem;
  color: var(--text, #1a2e1e);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
}
.form-recibo-field input:focus,
.form-recibo-field select:focus,
.form-recibo-field textarea:focus {
  border-color: var(--primary, #2d6a4f);
}

.form-recibo-field textarea {
  resize: vertical;
  min-height: 60px;
}

.form-recibo-sep {
  border: none;
  border-top: 1px dashed var(--border, #d4e4db);
  margin: .25rem 0;
}

.form-recibo-link-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

#frec-link-preview {
  border-radius: 10px;
  overflow: hidden;
}

.form-recibo-error {
  font-size: .8rem;
  color: var(--danger);
  min-height: 1.1rem;
}

.form-recibo-actions {
  display: flex;
  gap: .65rem;
  margin-top: .25rem;
}

.btn-recibo-guardar {
  flex: 1;
  background: var(--primary, #2d6a4f);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: .65rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  font-family: inherit;
}
.btn-recibo-guardar:hover:not(:disabled) { opacity: .88; }
.btn-recibo-guardar:disabled { opacity: .55; cursor: not-allowed; }

.btn-recibo-cancelar {
  background: var(--bg, #f0f5f2);
  color: var(--text, #1a2e1e);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 9px;
  padding: .65rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.btn-recibo-cancelar:hover { background: var(--border, #e0e9e4); }

/* ── Acciones del comprobante ────────────────── */
.recibo-preview-acciones {
  display: flex;
  gap: .6rem;
  margin-top: .65rem;
}

.recibo-preview-acciones .recibo-preview-link {
  flex: 1;
  justify-content: center;
  background: var(--bg, #f0f5f2);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 8px;
  padding: .55rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text, #1a2e1e);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: background .15s;
}
.recibo-preview-acciones .recibo-preview-link:hover {
  background: var(--border, #e0e9e4);
  text-decoration: none;
}

.recibo-btn-compartir {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--primary, #2d6a4f);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .55rem .75rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}
.recibo-btn-compartir:hover { opacity: .88; }

.recibo-btn-compartir:disabled,
.recibo-btn-compartir--cargando {
  cursor: not-allowed;
  opacity: .75;
}

.recibo-spinner {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: recibo-spin .7s linear infinite;
  flex-shrink: 0;
}

@keyframes recibo-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .recibo-spinner {
    animation-duration: 1.4s;
  }
}

/* ── Toast ───────────────────────────────────── */
.recibo-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: #1a2e1e;
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .2s, transform .2s;
  pointer-events: none;
  z-index: 2000;
  white-space: nowrap;
}
.recibo-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Autocomplete banco ───────────────────────── */
.frec-banco-wrap {
  position: relative;
}

.frec-banco-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 2px;
}

.frec-banco-dd-item {
  padding: .55rem .75rem;
  font-size: .88rem;
  color: var(--text, #1a2e1e);
  cursor: pointer;
  transition: background .12s;
}
.frec-banco-dd-item:hover {
  background: var(--bg, #f0f5f2);
}
.frec-banco-dd-empty {
  color: var(--text-light, #aaa);
  cursor: default;
  font-style: italic;
}

/* ── Autocomplete cliente ───────────────────── */
.frec-cliente-wrap {
  position: relative;
}

.frec-cliente-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  margin-top: 2px;
}

.frec-cliente-dd-item {
  padding: .55rem .75rem;
  font-size: .88rem;
  cursor: pointer;
  transition: background .12s;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.frec-cliente-dd-item:hover {
  background: var(--bg, #f0f5f2);
}
.frec-cliente-dd-nombre {
  color: var(--text, #1a2e1e);
  font-weight: 500;
}
.frec-cliente-dd-sub {
  color: var(--text-light, #7a9a82);
  font-size: .78rem;
}
.frec-cliente-dd-empty {
  color: var(--text-light, #aaa);
  cursor: default;
  font-style: italic;
}

/* ── Campos bloqueados CI / Correo ──────────── */
.frec-locked-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.frec-locked-wrap input {
  flex: 1;
}
.frec-locked-wrap input[readonly] {
  background: var(--bg, #f0f5f2);
  color: var(--text-light, #7a9a82);
  cursor: default;
}

.frec-unlock-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid var(--border, #d4e4db);
  border-radius: 6px;
  padding: 0 8px;
  height: 36px;
  font-size: 1rem;
  color: var(--text-light, #7a9a82);
  cursor: pointer;
  transition: background .12s, color .12s;
}
.frec-unlock-btn:hover {
  background: var(--bg, #f0f5f2);
  color: var(--primary, #2d6a4f);
}

/* ── FRASES RÁPIDAS (SPEECHES) POR VIAJE ─────────────────────────────── */
.frec-speeches-wrap {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: -.15rem 0 .1rem;
  animation: fadeInSpeeches .15s ease;
}

@keyframes fadeInSpeeches {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.frec-speeches-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.frec-speeches-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-light, #888);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.frec-speeches-gestionar {
  background: none;
  border: none;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary, #2d6a4f);
  padding: .2rem .4rem;
  border-radius: 6px;
  transition: background .12s;
  white-space: nowrap;
}
.frec-speeches-gestionar:hover {
  background: var(--bg, #f0f5f2);
}

.frec-speeches-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.frec-speech-chip {
  background: var(--bg, #f7faf8);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-size: .78rem;
  color: var(--text, #1a2e1e);
  cursor: pointer;
  transition: background .12s, border-color .12s;
  max-width: 100%;
  text-align: left;
  line-height: 1.3;
}
.frec-speech-chip:hover {
  background: var(--primary, #2d6a4f);
  border-color: var(--primary, #2d6a4f);
  color: #fff;
}

.frec-speeches-vacio {
  font-size: .78rem;
  color: var(--text-light, #999);
  font-style: italic;
}

/* ── MODAL: GESTIONAR SPEECHES ──────────────────────────────────────── */
.modal-speeches-lista {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: .75rem 0;
  max-height: 40vh;
  overflow-y: auto;
}

.modal-speech-item {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: var(--bg, #f7faf8);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 10px;
  padding: .55rem .7rem;
}

.modal-speech-texto {
  flex: 1;
  font-size: .84rem;
  color: var(--text, #1a2e1e);
  line-height: 1.4;
  word-break: break-word;
}

.modal-speech-borrar {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light, #999);
  padding: .15rem;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background .12s, color .12s;
}
.modal-speech-borrar:hover {
  background: var(--danger-bg2, #fdeaea);
  color: var(--danger, #c0392b);
}

.modal-speeches-vacio {
  font-size: .82rem;
  color: var(--text-light, #999);
  font-style: italic;
  padding: .5rem 0;
}

.modal-speeches-nuevo {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.modal-speeches-nuevo textarea {
  background: var(--bg, #f7faf8);
  border: 1px solid var(--border, #d4e4db);
  border-radius: 8px;
  padding: .55rem .75rem;
  font-size: .85rem;
  color: var(--text, #1a2e1e);
  width: 100%;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  min-height: 50px;
  font-family: inherit;
  transition: border-color .15s;
}
.modal-speeches-nuevo textarea:focus {
  border-color: var(--primary, #2d6a4f);
}

.modal-speeches-agregar {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* ── MODAL: COMPLETAR VALORES DE UN SPEECH ──────────────────────────── */
.modal-completar-campos {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin: .5rem 0 .25rem;
}
