/* =============================================================================
   GESTOR DE CARTA DE SERVIÇOS — Estilos Públicos
   Prefixo: gcs-  (evita conflito com outros plugins/temas)
   Em conformidade com a Lei 13.460/2017
============================================================================= */

/* --- 1. CONTAINER E TIPOGRAFIA --- */
.gcs-portal-wrapper {
  font-family: "Segoe UI", Roboto, sans-serif;
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- 2. HERO / CABEÇALHO DO PORTAL --- */
.gcs-hero {
  padding: 30px 20px 10px;
  margin-bottom: 10px;
}

.gcs-hero-icon .dashicons {
  font-size: 52px;
  width: 52px;
  height: 52px;
  color: #003778;
  margin-bottom: 14px;
  line-height: 1;
}

.gcs-title {
  font-size: 2rem;
  color: #1a3a5c;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
}

.gcs-subtitle {
  color: #666;
  margin-bottom: 24px;
  font-size: 1rem;
  text-align: center;
}

.gcs-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a3a5c;
  margin: 20px 0 12px;
  text-align: left;
}

/* --- 3. GRID DE CARDS DE CATEGORIAS --- */
.gcs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 300px));
  gap: 20px;
  justify-content: center;
  margin: 0 auto 30px;
}

.gcs-card {
  background: #fff;
  border: 1px solid #e0e8f0;
  padding: 32px 20px 24px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  position: relative;
}

.gcs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 55, 120, 0.12);
  border-color: #003778;
}

.gcs-icon .dashicons {
  font-size: 44px;
  color: #003778;
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
  line-height: 1;
}

.gcs-text {
  font-size: 13px;
  font-weight: 700;
  color: #003778;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 4px;
}

.gcs-card-count {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
}

.gcs-card-desc {
  font-size: 11px;
  color: #999;
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}

/* --- 4. BANNER DA LEI --- */
.gcs-lei-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #eef5ff;
  border: 1px solid #b8d0f0;
  border-radius: 6px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #1a3a5c;
  margin-top: 20px;
}

.gcs-lei-banner .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #003778;
  flex-shrink: 0;
}

/* --- 5. BOTÕES --- */
.gcs-btn-back {
  display: inline-block;
  padding: 9px 18px;
  background-color: #eef2f7;
  color: #003778;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.25s;
}

.gcs-btn-back:hover {
  background-color: #003778;
  color: #fff;
}

.gcs-btn-primary {
  display: inline-block;
  padding: 9px 20px;
  background-color: #003778;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: 0.25s;
  border: none;
  cursor: pointer;
}

.gcs-btn-primary:hover {
  background-color: #002558;
  color: #fff;
}

/* --- 6. BUSCA --- */
.gcs-search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 25px;
  max-width: 680px;
  flex-wrap: wrap;
}

.gcs-search-input {
  flex: 1;
  min-width: 220px;
  padding: 11px 16px;
  border: 1px solid #ccd8e8;
  border-radius: 4px;
  font-size: 0.95rem;
  outline: none;
  transition: border 0.2s;
}

.gcs-search-input:focus {
  border-color: #003778;
  box-shadow: 0 0 0 2px rgba(0, 55, 120, 0.1);
}

.gcs-search-btn {
  padding: 11px 22px;
  background: #003778;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.gcs-search-btn:hover {
  background: #002558;
}

/* --- 7. CABEÇALHO DO SINGLE --- */
.gcs-single-header {
  background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
  border: 1px solid #dde8f5;
  border-radius: 10px;
  padding: 28px 30px 22px;
  margin-bottom: 24px;
  text-align: left;
}

.gcs-cat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #003778;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.gcs-cat-tag .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.gcs-header-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

/* --- 8. CARDS DE INFO RÁPIDA (Lei 13.460) --- */
.gcs-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.gcs-info-card {
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 16px 18px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.gcs-info-icon .dashicons {
  font-size: 28px;
  width: 28px;
  height: 28px;
  color: #003778;
  margin-bottom: 8px;
}

.gcs-info-label {
  font-size: 11px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
  font-weight: 600;
}

.gcs-info-value {
  font-size: 15px;
  font-weight: 700;
  color: #1a3a5c;
}

.gcs-val-success {
  color: #27ae60;
}
.gcs-val-warning {
  color: #e67e22;
}

/* --- 9. ABAS (TABS) --- */
.gcs-tabs {
  display: flex;
  justify-content: center;
  background-color: #f4f7fb;
  border: 1px solid #ccd8e8;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.gcs-tab-link {
  flex: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 40px 12px;
  font-size: 14px;
  color: #003778;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: 0.2s;
  min-width: 100px;
}

.gcs-tab-link .dashicons {
  font-size: 20px;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}

.gcs-tab-link:hover {
  background-color: #dce7f5;
}

.gcs-tab-link.active {
  background-color: #003778;
  color: #fff;
}

.gcs-tab-count {
  font-size: 11px;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 2px 8px;
  line-height: 1.4;
}

.gcs-tab-link.active .gcs-tab-count {
  background: rgba(255, 255, 255, 0.25);
}

.gcs-tab-container {
  background: #fff;
  border: 1px solid #ccd8e8;
  padding: 28px 30px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  text-align: left;
}

.gcs-tab-content {
  display: none;
  animation: gcsFadeIn 0.3s ease;
}

.gcs-tab-content.active {
  display: block !important;
}

@keyframes gcsFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gcs-tab-intro {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* --- 10. CONTEÚDO DO SERVIÇO --- */
.gcs-descricao-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.gcs-obs-box {
  display: flex;
  gap: 14px;
  background: #fffbf0;
  border: 1px solid #f0c040;
  border-left: 4px solid #f0a000;
  border-radius: 6px;
  padding: 14px 18px;
  margin-top: 20px;
}

.gcs-obs-box .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
  color: #c07800;
  flex-shrink: 0;
  margin-top: 2px;
}

.gcs-obs-box strong {
  font-size: 0.95rem;
  color: #7a4f00;
  display: block;
  margin-bottom: 4px;
}

.gcs-obs-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #5a3a00;
  line-height: 1.6;
}

.gcs-legislacao {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #555;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.gcs-legislacao .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: #003778;
}

/* --- 11. LISTA DE DOCUMENTOS --- */
.gcs-docs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gcs-doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f7;
  font-size: 0.95rem;
  color: #333;
}

.gcs-doc-item:last-child {
  border-bottom: none;
}

.gcs-doc-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #003778;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gcs-doc-text {
  line-height: 1.5;
}

/* --- 12. ETAPAS (COMO SOLICITAR) --- */
.gcs-steps-timeline {
  position: relative;
  padding: 4px 0;
}

.gcs-step-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.gcs-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #003778;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 55, 120, 0.25);
}

.gcs-step-body {
  padding-top: 6px;
  flex: 1;
}

.gcs-step-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}

/* --- 13. SISTEMA DE AVALIAÇÃO --- */
/* Resumo */
.gcs-av-resumo {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #f8fafd;
  border: 1px solid #dde8f5;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.gcs-av-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.gcs-av-num {
  font-size: 52px;
  font-weight: 700;
  color: #003778;
  line-height: 1;
}

.gcs-av-total {
  font-size: 13px;
  color: #888;
  margin-top: 4px;
}

.gcs-av-barras {
  flex: 1;
  min-width: 160px;
}

.gcs-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 12px;
  color: #666;
}

.gcs-bar-label {
  min-width: 28px;
  text-align: right;
  font-weight: 600;
  color: #003778;
}

.gcs-bar-track {
  flex: 1;
  height: 8px;
  background: #e0e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.gcs-bar-fill {
  height: 100%;
  background: #f0a800;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.gcs-bar-count {
  min-width: 20px;
  text-align: right;
  color: #888;
}

/* Estrelas display */
.gcs-stars-display {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}

.gcs-star {
  font-size: 16px;
  color: #ccc;
}

.gcs-star.filled {
  color: #f0a800;
}

.gcs-star.half {
  color: #f0a800;
  opacity: 0.55;
}

.gcs-stars-lg .gcs-star {
  font-size: 22px;
}

/* Avaliação vazia */
.gcs-av-vazio {
  text-align: center;
  color: #888;
  padding: 16px 0 24px;
  font-size: 0.95rem;
}

/* Formulário de avaliação */
.gcs-av-form {
  background: #f8fafd;
  border: 1px solid #dde8f5;
  border-radius: 10px;
  padding: 24px 26px;
  margin-bottom: 28px;
}

.gcs-av-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 4px;
}

.gcs-av-form-sub {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 18px;
}

/* Seletor de estrelas */
.gcs-star-select {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.gcs-star-btn {
  font-size: 34px;
  color: #d0d8e8;
  cursor: pointer;
  transition:
    color 0.1s,
    transform 0.1s;
  line-height: 1;
  user-select: none;
}

.gcs-star-btn.hover,
.gcs-star-btn.selected {
  color: #f0a800;
}

.gcs-star-btn:hover {
  transform: scale(1.15);
}

.gcs-star-label {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 16px;
  min-height: 20px;
  font-style: italic;
}

.gcs-av-textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #ccd8e8;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  min-height: 90px;
  transition: border 0.2s;
  background: #fff;
  color: #333;
}

.gcs-av-textarea:focus {
  border-color: #003778;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 55, 120, 0.1);
}

/* Feedback de envio */
.gcs-av-feedback {
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.gcs-av-success {
  background: #eafaf0;
  border: 1px solid #a0ddb8;
  color: #1a6b3a;
}

.gcs-av-error {
  background: #fdf0f0;
  border: 1px solid #f0b8b8;
  color: #8b1a1a;
}

/* Comentários */
.gcs-av-comentarios {
  margin-top: 8px;
}

.gcs-av-comentarios-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a3a5c;
  margin-bottom: 16px;
}

.gcs-comentario {
  background: #fff;
  border: 1px solid #e0e8f0;
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.gcs-comentario:hover {
  border-color: #b0c8e8;
}

.gcs-comentario-novo {
  border-color: #003778;
  animation: gcsFadeIn 0.4s ease;
}

.gcs-comentario-cabecalho {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.gcs-comentario-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gcs-comentario-avatar .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #003778;
}

.gcs-comentario-data {
  font-size: 12px;
  color: #888;
  margin-top: 3px;
}

.gcs-comentario-texto {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.6;
}

/* --- 14. LISTA DE SERVIÇOS (ARCHIVE) --- */
.gcs-list-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.gcs-card-item {
  background: #fff;
  border: 1px solid #dde6f0;
  padding: 18px 22px;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.gcs-card-item:hover {
  border-color: #003778;
  box-shadow: 0 4px 14px rgba(0, 55, 120, 0.1);
}

.gcs-item-main {
  flex: 1;
}

.gcs-item-title {
  margin: 0 0 8px;
  color: #003778;
  font-size: 1.05rem;
  font-weight: 700;
}

.gcs-item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.gcs-meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #666;
}

.gcs-meta-tag .dashicons {
  font-size: 14px;
  width: 14px;
  height: 14px;
}

.gcs-item-excerpt {
  font-size: 0.87rem;
  color: #666;
  line-height: 1.5;
}

.gcs-item-action {
  flex-shrink: 0;
}

/* --- 15. BADGES --- */
.gcs-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gcs-badge-success {
  background: #eafaf0;
  color: #1a6b3a;
  border: 1px solid #a0ddb8;
}
.gcs-badge-warning {
  background: #fef8ec;
  color: #7a5200;
  border: 1px solid #f0c870;
}
.gcs-badge-info {
  background: #eef5ff;
  color: #003778;
  border: 1px solid #b0ccf0;
}
.gcs-badge-neutral {
  background: #f4f7fb;
  color: #444;
  border: 1px solid #ccd8e8;
}

/* --- 16. BREADCRUMB --- */
.gcs-breadcrumb {
  padding: 8px 0;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #888;
  text-align: left;
}

.gcs-breadcrumb a {
  color: #003778;
  text-decoration: none;
}

.gcs-breadcrumb a:hover {
  text-decoration: underline;
}

.gcs-breadcrumb .sep {
  margin: 0 7px;
  color: #ccc;
}

.gcs-breadcrumb span {
  color: #333;
  font-weight: 600;
}

/* --- 17. PAGINAÇÃO --- */
.gcs-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.gcs-page-btn {
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid #ccd8e8;
  border-radius: 4px;
  color: #003778;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.gcs-page-btn:hover,
.gcs-page-btn.active {
  background: #003778;
  color: #fff;
  border-color: #003778;
}

/* --- 18. EMPTY STATE --- */
.gcs-empty {
  text-align: center;
  color: #888;
  padding: 40px 20px;
  font-size: 0.95rem;
}

/* --- 19. RESPONSIVIDADE --- */
@media (max-width: 768px) {
  .gcs-tabs {
    flex-wrap: wrap;
    background: transparent;
    border: none;
  }

  .gcs-tab-link {
    flex: 1 1 45%;
    margin: 2px;
    border: 1px solid #ccd8e8;
    border-radius: 8px;
    background: #fff;
    min-width: 130px;
    font-size: 12px;
    padding: 14px 8px;
  }

  .gcs-tab-container {
    padding: 20px 16px;
  }

  .gcs-card-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .gcs-item-action {
    width: 100%;
    text-align: right;
  }

  .gcs-av-resumo {
    flex-direction: column;
    gap: 16px;
  }

  .gcs-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gcs-single-header {
    padding: 20px 16px;
  }

  .gcs-search-form {
    flex-direction: column;
    align-items: stretch;
  }

  .gcs-search-btn {
    justify-content: center;
  }

  .gcs-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .gcs-info-grid {
    grid-template-columns: 1fr;
  }

  .gcs-av-score {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gcs-av-num {
    font-size: 40px;
  }
}

/* --- 20. BOTÃO PDF --- */
.gcs-btn-pdf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background-color: #c0392b;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
  font-family: inherit;
}

.gcs-btn-pdf:hover {
  background-color: #a93226;
}

.gcs-btn-pdf:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.gcs-btn-pdf .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

@keyframes gcsRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* --- 22. BLOCO DO SETOR RESPONSÁVEL (single) --- */
.gcs-setor-bloco {
  margin-top: 24px;
  border: 1px solid #b8d0f0;
  border-left: 4px solid #003778;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f8ff;
}

.gcs-setor-bloco-titulo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #003778;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.gcs-setor-bloco-titulo .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.gcs-setor-bloco-nome {
  padding: 12px 18px 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1a3a5c;
}

.gcs-setor-bloco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  padding: 6px 10px 14px;
}

.gcs-setor-bloco-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px;
}

.gcs-setor-bloco-full {
  grid-column: 1 / -1;
}

.gcs-setor-bloco-item .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
  color: #003778;
  margin-top: 2px;
  flex-shrink: 0;
}

.gcs-setor-bloco-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gcs-setor-bloco-label {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.gcs-setor-bloco-valor {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
}

a.gcs-setor-bloco-valor {
  color: #003778;
  text-decoration: none;
}

a.gcs-setor-bloco-valor:hover {
  text-decoration: underline;
}

/* --- 23. PRINT (setor) --- */
@media print {
  .gcs-tabs,
  .gcs-btn-back,
  .gcs-btn-pdf,
  .gcs-breadcrumb,
  .gcs-av-form,
  .gcs-header-badges {
    display: none !important;
  }

  .gcs-tab-content {
    display: block !important;
  }
  .gcs-tab-container {
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .gcs-portal-wrapper {
    padding: 0;
  }
}
