.prototipo-pro-gestao { gap: 34px; }

.prototipo-secao {
  --cor-secao: #3355a6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prototipo-secao:nth-child(2) { --cor-secao: #6b8f45; }
.prototipo-secao:nth-child(3) { --cor-secao: #b06fb0; }
.prototipo-secao:nth-child(4) { --cor-secao: #b68e25; }
.prototipo-secao:nth-child(5) { --cor-secao: #993b22; }
.prototipo-secao:nth-child(6) { --cor-secao: #8656b0; }
.prototipo-secao:nth-child(7) { --cor-secao: #54566b; }

.prototipo-secao > h2 {
  margin: 0;
  padding-bottom: 7px;
  color: var(--cor-secao);
  border-bottom: 1px solid var(--cor-secao);
}

.prototipo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 10px;
}

.prototipo-card {
  display: flex;
  width: 100%;
  min-height: 70px;
  padding: 14px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid #e7e7e7;
  border-radius: 6px;
  background: #fff;
  color: var(--cor-secao);
  box-shadow: 0 8px 12px rgba(75, 75, 75, .14);
  text-align: left;
  cursor: pointer;
}

.prototipo-card i { min-width: 22px; font-size: 1.35rem; }
.prototipo-card span { font-size: 1rem; font-weight: 600; }
.prototipo-card:hover { background: #f3f5fa; }

.prototipo-colunas {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.prototipo-coluna {
  display: flex;
  min-width: 0;
  padding: 14px;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #f8f8f8;
}

.prototipo-coluna h3 {
  min-height: 48px;
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--cor-secao);
  font-size: 1.12rem;
}

@media (max-width: 1100px) {
  .prototipo-colunas { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .prototipo-colunas { grid-template-columns: 1fr; }
  .prototipo-coluna h3 { min-height: auto; }
}

@media (max-width: 600px) {
  .prototipo-cards { grid-template-columns: 1fr; }
}

/* Administração do Pró-Gestão */
.pro-gestao-path-bar .sr-only,
.pro-gestao-modal__list .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pro-gestao-path-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.pro-gestao-path-bar__actions .campo-pesquisa { margin: 0; }
.pro-gestao-path-bar__actions .ui.button { margin: 0; white-space: nowrap; }
.pro-gestao-admin__content { min-width: 0; }

.pro-gestao-section-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 8px;
  min-width: 0;
  margin-bottom: 18px;
}

.pro-gestao-section-tab {
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: #43536b;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}

.pro-gestao-section-tab:hover { border-color: #becada; background: #fff; }
.pro-gestao-section-tab.is-active { border-color: #b32161; box-shadow: inset 0 2px #9a1c55; color: #841847; background: #fff5f9; }
.pro-gestao-section-tab__body { min-width: 0; }
.pro-gestao-section-tab__title, .pro-gestao-section-tab__meta { display: block; }
.pro-gestao-section-tab__title { overflow: hidden; font-size: .84rem; font-weight: 700; line-height: 1.18; text-overflow: ellipsis; white-space: nowrap; }
.pro-gestao-section-tab__meta { margin-top: 3px; color: #788497; font-size: .72rem; }

.pro-gestao-section-panel { min-width: 0; }
.pro-gestao-section-panel .titulo_modulo small { float: right; color: #71748d; font-size: .8rem; font-weight: normal; }
.pro-gestao-module-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.pro-gestao-empty { padding: 52px 20px; border: 1px dashed #cbd7e5; border-radius: 7px; color: #687386; text-align: center; }
.pro-gestao-empty i { color: #9a1c55; font-size: 1.8rem; }
.pro-gestao-empty h2 { margin: 10px 0 4px; color: #31415a; font-size: 1.1rem; }
.pro-gestao-empty p { margin: 0; }

.pro-gestao-modal__help { color: #687386; }
.pro-gestao-modal__form-title { margin: 18px 0 10px; color: #3d405c; font-size: 1.08rem; }
.pro-gestao-modal__form-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pro-gestao-modal__list { margin-top: 22px; }
.pro-gestao-modal__list-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.pro-gestao-modal__list-heading h2 { margin: 0; color: #31415a; font-size: 1.08rem; }

@media (max-width: 900px) {
  .pro-gestao-path-bar__actions { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .pro-gestao-path-bar__actions { display: grid; grid-template-columns: 1fr; width: 100%; }
  .pro-gestao-path-bar__actions .campo-pesquisa, .pro-gestao-path-bar__actions .ui.button { width: 100%; }
  .pro-gestao-section-panel .titulo_modulo small { display: block; float: none; margin-top: 4px; }
  .pro-gestao-section-tabs { grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)); }
  .pro-gestao-module-grid { grid-template-columns: 1fr; }
  .pro-gestao-modal__save label { display: none; }
}
