:root {
  --cor-primaria: #2563eb;
  --cor-secundaria: #1e3a8a;
  --fundo: #eef1f7;
  --fundo-card: #ffffff;
  --texto: #0f172a;
  --texto-suave: #5b6478;
  --texto-claro: #94a3b8;
  --borda: #e5e9f2;
  --sombra: 0 1px 2px rgba(15, 23, 42, 0.05), 0 10px 30px -18px rgba(15, 23, 42, 0.18);
  --sombra-hover: 0 4px 10px rgba(15, 23, 42, 0.06), 0 18px 40px -18px rgba(15, 23, 42, 0.25);
  --raio: 14px;
  --raio-p: 999px;
  --tint-primaria: color-mix(in srgb, var(--cor-primaria) 10%, #fff);
  --grad: linear-gradient(135deg, var(--cor-primaria), var(--cor-secundaria));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scrollbar-color: #c7cdd9 transparent;
}

body {
  font-family: 'Segoe UI Variable Text', 'Segoe UI', system-ui, -apple-system, Tahoma, sans-serif;
  background: var(--fundo);
  color: var(--texto);
  -webkit-font-smoothing: antialiased;
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--grad);
  color: #fff;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 4px 18px -6px rgba(15, 23, 42, 0.35);
}

.marca-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.marca-header img {
  height: 38px;
  max-width: 170px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  padding: 3px 6px;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.25));
}

.marca-header h1 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.usuario-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#info-usuario {
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
  border-radius: var(--raio-p);
  white-space: nowrap;
}

#btn-sair {
  background: rgba(220, 38, 38, 0.85);
  color: #fff;
  border-radius: var(--raio-p);
}

#btn-sair:hover {
  background: #dc2626;
}

/* ============ LAYOUT PRINCIPAL ============ */
main {
  max-width: 1120px;
  margin: 18px auto;
  padding: 0 16px;
}

/* ============ CARDS / KPI ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.card {
  position: relative;
  background: var(--fundo-card);
  border-radius: var(--raio);
  padding: 16px 18px;
  box-shadow: var(--sombra);
  border: 1px solid var(--borda);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sombra-hover);
}

.card .valor {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.card .rotulo {
  font-size: 12px;
  font-weight: 600;
  color: var(--texto-suave);
  margin-top: 4px;
}

.card::before {
  background: var(--cor-primaria);
}
.card.pendente::before { background: #f59e0b; }
.card.analise::before   { background: #06b6d4; }
.card.aprovacao::before { background: #8b5cf6; }
.card.producao::before  { background: #3b82f6; }
.card.concluida::before { background: #10b981; }

/* ============ BLOCOS / SEÇÕES ============ */
.formulario,
.lista {
  background: var(--fundo-card);
  border-radius: var(--raio);
  padding: 20px;
  margin-bottom: 18px;
  box-shadow: var(--sombra);
  border: 1px solid var(--borda);
}

.formulario h2,
.lista h2 {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.titulo-secao {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.titulo-secao h2 {
  margin-bottom: 0;
}

.btn-ocultar-todos {
  background: var(--tint-primaria);
  color: var(--cor-primaria);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--raio-p);
  border: 1px solid color-mix(in srgb, var(--cor-primaria) 25%, #fff);
}

.btn-ocultar-todos:hover {
  background: color-mix(in srgb, var(--cor-primaria) 18%, #fff);
}

/* ============ NOVA ORDEM (compacta) ============ */
#bloco-nova-ordem {
  padding: 10px;
  margin-bottom: 14px;
}

#bloco-nova-ordem .titulo-secao {
  margin-bottom: 6px;
}

#bloco-nova-ordem h2 {
  font-size: 13px;
}

#bloco-nova-ordem .btn-ocultar-todos {
  font-size: 10px;
  padding: 3px 9px;
}

#form-ordem {
  gap: 6px;
  align-items: stretch;
}

#linha-fixos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  width: 100%;
}

#linha-fixos .campo-fixo-wrap {
  flex: none;
  gap: 3px;
}

#f-descricao-wrap {
  grid-column: span 2;
}

#form-ordem .btn-salvar-linha {
  min-height: 26px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

#form-ordem input,
#form-ordem select,
#form-ordem .campo-dinamico input,
#form-ordem .campo-dinamico select {
  padding: 0 6px;
  font-size: 11px;
  width: 100%;
  flex: none;
  height: 26px;
  border-radius: 7px;
}

#form-ordem .campo-dinamico {
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
}

#form-ordem button[type="submit"] {
  padding: 3px 10px;
  font-size: 11px;
  min-height: 26px;
}

#form-ordem .stepper input {
  width: 100%;
  height: 26px;
  font-size: 11px;
}

#form-ordem .stepper-btn {
  width: 24px;
  height: 26px;
  font-size: 12px;
  padding: 0;
  border-radius: 7px;
}

#form-ordem .campo-ajuda {
  display: none;
}

/* ============ CAMPOS DINÂMICOS ============ */
.campos-dinamicos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 12px;
}

.campo-dinamico {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--texto-suave);
}

.campo-dinamico input,
.campo-dinamico select {
  flex: none;
  width: 100%;
}

.campo-dinamico textarea {
  width: 100%;
  flex: none;
  resize: vertical;
  min-height: 56px;
}

.campo-dinamico .req {
  color: #dc2626;
  margin-left: 2px;
}

.campo-ajuda {
  font-weight: 400;
  color: var(--texto-claro);
  font-size: 11px;
  line-height: 1.35;
}

/* ============ INPUTS E BOTÕES ============ */
.campo-fixo-wrap {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.campo-fixo-wrap input,
.campo-fixo-wrap select {
  width: 100%;
  flex: none;
}

form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

input,
select,
textarea {
  flex: 1 1 200px;
  padding: 9px 12px;
  border: 1px solid var(--borda);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--texto);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--cor-primaria);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--cor-primaria) 18%, #fff);
}

input::placeholder,
textarea::placeholder {
  color: var(--texto-claro);
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background: var(--cor-primaria);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
  font-family: inherit;
}

button:hover {
  background: color-mix(in srgb, var(--cor-primaria) 85%, #000);
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ============ TABELAS ============ */
.tabela-enrolada {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--borda);
  font-size: 13.5px;
}

th {
  background: #f7f9fc;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover td {
  background: #f8faff;
}

.tabela-campos {
  max-width: 240px;
  font-size: 12px;
  color: var(--texto-suave);
  word-break: break-word;
}

.tabela-datas small {
  display: block;
  color: var(--texto-claro);
  font-size: 11.5px;
}

/* ============ STATUS CHIP ============ */
.status {
  padding: 4px 11px;
  border-radius: var(--raio-p);
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 1px 2px rgba(15, 23, 42, 0.08);
  vertical-align: middle;
}

.status.Ativo { background: #d1fae5; color: #065f46; }
.status.Bloqueado { background: #fee2e2; color: #b91c1c; }
.status.Pendente { background: #fef3c7; color: #92400e; }
.status.Em-analise { background: #cffafe; color: #155e75; }
.status.Aprovacao { background: #ede9fe; color: #5b21b6; }
.status.Producao { background: #dbeafe; color: #1e40af; }
.status.Concluída, .status.Concluida { background: #d1fae5; color: #065f46; }

/* ============ PAINEL DE ETAPAS ============ */
.busca {
  width: 100%;
  margin-bottom: 16px;
  flex: none;
}

.etapa {
  margin-bottom: 14px;
  background: var(--fundo-card);
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
}

.etapa h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #fff;
  padding: 9px 16px;
  margin: 0 0 10px;
  background: linear-gradient(120deg, #94a3b8, #64748b);
}

.etapa .rotulo-etapa {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.etapa-abertas h3   { background: linear-gradient(120deg, #f59e0b, #d97706); }
.etapa-analise h3   { background: linear-gradient(120deg, #06b6d4, #0891b2); }
.etapa-aprovacao h3 { background: linear-gradient(120deg, #8b5cf6, #7c3aed); }
.etapa-producao h3  { background: linear-gradient(120deg, #3b82f6, #2563eb); }
.etapa-historico h3 { background: linear-gradient(120deg, #10b981, #059669); }
.etapa-cancelada h3 { background: linear-gradient(120deg, #ef4444, #dc2626); }

.contador {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  border-radius: var(--raio-p);
  padding: 2px 12px;
  font-size: 12.5px;
  font-weight: 800;
  min-width: 30px;
  text-align: center;
}

.lista-ordens {
  padding: 0 14px 14px;
}

/* ============ CARD DE ORDEM ============ */
.ordem-card {
  border: 1px solid var(--borda);
  border-left: 4px solid var(--cor-primaria);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: #fff;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.ordem-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-1px);
}

.ordem-topo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ordem-numero {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--texto);
}

.ordem-data {
  margin-left: auto;
  color: var(--texto-claro);
  font-size: 12px;
}

.ordem-corpo {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.ordem-campo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}

.ordem-rotulo {
  color: var(--texto-claro);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ordem-valor {
  font-weight: 600;
  color: var(--texto);
}

.ordem-vazio {
  color: var(--texto-claro);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.ordem-acoes {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ordem-acoes button {
  padding: 7px 13px;
  font-size: 12.5px;
  border-radius: 9px;
}

.ordem-mudar-status {
  padding: 7px 10px;
  font-size: 12.5px;
  border-radius: 9px;
  border: 1px solid #d1d5db;
  background: #fff;
  color: var(--texto);
  cursor: pointer;
  max-width: 165px;
}

.ordem-mudar-status:hover {
  border-color: var(--cor-primaria);
}

.btn-ver {
  background: var(--cor-primaria);
}
.btn-ver:hover { background: color-mix(in srgb, var(--cor-primaria) 85%, #000); }

.acoes .btn-editar {
  background: #f59e0b;
}
.acoes .btn-editar:hover { background: #d97706; }
.acoes .btn-excluir {
  background: #ef4444;
}
.acoes .btn-excluir:hover { background: #dc2626; }

.btn-painel {
  background: #7c3aed;
}
.btn-painel:hover { background: #6d28d9; }

.btn-bloquear { background: #f59e0b; }
.btn-bloquear:hover { background: #d97706; }
.btn-ativar { background: #10b981; }
.btn-ativar:hover { background: #059669; }

.acoes button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.acoes button {
  padding: 6px 12px;
  margin-right: 6px;
  font-size: 12.5px;
  border-radius: 9px;
}

#bloco-campos .acoes button {
  padding: 4px 10px;
  margin-right: 4px;
}

.badge-oculto {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: var(--raio-p);
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
}

.subtitulo {
  font-size: 15px;
  font-weight: 700;
  margin: 18px 0 10px;
  color: var(--texto);
}

.dica {
  font-size: 13px;
  color: var(--texto-suave);
  margin-bottom: 12px;
  line-height: 1.5;
}

.vazio {
  margin: 0;
  text-align: center;
  color: var(--texto-claro);
  padding: 26px 16px;
  background: #f8faff;
  border: 1px dashed #cfd6e4;
  border-radius: 12px;
  font-size: 13.5px;
}

/* ============ CHECKBOXES DE CONFIG ============ */
.check-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  cursor: pointer;
  color: var(--texto);
}

.check-opt input {
  flex: none;
  width: auto;
  accent-color: var(--cor-primaria);
}

.painel-grupo h4 {
  font-size: 13px;
  margin: 0 0 8px;
  color: var(--texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-painel-conteudo {
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 24px;
}

.painel-config-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 700px) {
  .painel-config-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ STEPPER ============ */
.stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.stepper input {
  width: 100%;
  min-width: 44px;
  text-align: center;
  appearance: textfield;
}

.stepper input::-webkit-inner-spin-button,
.stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-btn {
  flex: none;
  width: 28px;
  height: 28px;
  padding: 0;
  font-size: 15px;
  line-height: 1;
  background: var(--tint-primaria);
  border: 1px solid color-mix(in srgb, var(--cor-primaria) 30%, #fff);
  border-radius: 8px;
  cursor: pointer;
  color: var(--cor-primaria);
  font-weight: 800;
}

.stepper-btn:hover {
  background: color-mix(in srgb, var(--cor-primaria) 20%, #fff);
  color: var(--cor-primaria);
}

.campo-check {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  flex-wrap: wrap;
}

.check-linear {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 500;
  cursor: pointer;
  color: var(--texto);
}

.check-linear input {
  width: auto;
  flex: none;
  accent-color: var(--cor-primaria);
}

.btn-ocultar-campo {
  background: #eef1f7;
  color: var(--texto-suave);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--raio-p);
  align-self: flex-start;
}

.btn-ocultar-campo:hover {
  background: #dfe4ee;
  color: var(--texto);
}

.campo-titulo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
}

/* ============ MODAIS ============ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.modal.hidden {
  display: none;
}

.modal-conteudo {
  background: var(--fundo-card);
  border-radius: 18px;
  padding: 26px;
  width: 100%;
  max-width: 520px;
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, 0.4);
  animation: subir 0.18s ease;
}

@keyframes subir {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-conteudo h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 800;
}

.botoes {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ============ VISUALIZAÇÃO / IMPRESSÃO ============ */
.modal-ver-conteudo {
  max-width: 620px;
}

.impressao-cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--texto);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.impressao-numero {
  font-size: 18px;
  font-weight: 800;
}

.impressao-datas {
  font-size: 12px;
  color: var(--texto-suave);
  margin-bottom: 8px;
}

.impressao-status {
  margin-bottom: 12px;
}

.impressao-campos {
  width: 100%;
}

.impressao-campos th {
  width: 35%;
  background: #f7f9fc;
  vertical-align: top;
}

/* ============ RESPONSIVO ============ */
@media (max-width: 760px) {
  header {
    padding: 10px 14px;
  }
  .usuario-area {
    gap: 8px;
  }
  #info-usuario {
    font-size: 11.5px;
    padding: 4px 9px;
  }
  main {
    padding: 0 10px;
    margin: 12px auto;
  }
  .cards {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
  #linha-fixos {
    grid-template-columns: 1fr 1fr;
  }
  #f-descricao-wrap {
    grid-column: auto;
  }
  #form-ordem input,
  #form-ordem select,
  #form-ordem .campo-dinamico input,
  #form-ordem .campo-dinamico select {
    height: 30px;
    font-size: 12px;
  }
  #form-ordem .btn-salvar-linha {
    min-height: 30px;
  }
  th:nth-child(3),
  td:nth-child(3) {
    display: none;
  }
  .campos-dinamicos {
    grid-template-columns: 1fr;
  }
}

/* ============ LOGIN ============ */
body.pagina-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background:
    radial-gradient(900px 500px at 15% -10%, color-mix(in srgb, var(--cor-primaria) 22%, #fff), transparent 60%),
    radial-gradient(800px 500px at 110% 110%, color-mix(in srgb, var(--cor-secundaria) 20%, #fff), transparent 60%),
    var(--fundo);
  padding: 16px;
}

.caixa-login {
  background: var(--fundo-card);
  border-radius: 22px;
  padding: 38px 36px;
  width: 100%;
  max-width: 380px;
  border: 1px solid var(--borda);
  box-shadow: 0 30px 70px -20px rgba(15, 23, 42, 0.3);
  animation: subir 0.22s ease;
}

.login-marca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.login-marca img {
  max-height: 90px;
  max-width: 240px;
  object-fit: contain;
  border-radius: 10px;
}

.caixa-login h1 {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.login-sub {
  text-align: center;
  color: var(--texto-suave);
  font-size: 13px;
  margin: -14px 0 22px;
}

.caixa-login form {
  flex-direction: column;
  gap: 12px;
}

.caixa-login input {
  width: 100%;
  flex: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
}

.caixa-login button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: var(--grad);
  font-size: 15px;
  box-shadow: 0 10px 24px -10px var(--cor-secundaria);
}

.caixa-login button:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 28px -10px var(--cor-secundaria);
}

.erro-login {
  margin-top: 14px;
  padding: 11px;
  border-radius: 10px;
  background: #fee2e2;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #fecaca;
}

.hidden {
  display: none;
}

/* ============ IMPRESSÃO ============ */
@media print {
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  body * {
    visibility: hidden;
  }

  .modal {
    position: absolute;
    inset: 0;
    background: none;
    backdrop-filter: none;
    display: flex !important;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: auto;
    padding: 0;
  }

  .modal-ver-conteudo {
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .modal .impressao-botoes {
    display: none;
  }
}