body, html{
  overflow-x: hidden;
}
.corpo-texto {
  font-family: 'Inter', sans-serif;
  color: #333;
}

.corpo-texto .selos {
  position: relative;
  padding: 10px 10px 0 10px;

  width: 100%;
}

.corpo-texto .selos .selo {
  display: flex;
  justify-content: center;
  align-items: center;

  position: absolute;
  top: 20px;

  height: 54px;
  width: 54px;

  font-size: 1.4rem;
  color: white;
  border-radius: 50px;

}

#eixoDesenvolvimentoSocialVidaSaudavel {

  &+.sub-title {
    color: #df00d0;
  }

  .selo {
    background: linear-gradient(135deg, #ffbbe4, #df00d0);
  }
}

#eixoDesenvolvimentoUrbanoInfraestruturaMobilidade {

  &+.sub-title {
    color: #00579e;
  }

  .selo {
    background: linear-gradient(135deg, #67b6ff, #00579e);
  }
}

#eixoDesenvolvimentoEconomico {

  &+.sub-title {
    color: #cc7100;
  }

  .selo {
    background: linear-gradient(135deg, #ffff61, #cc7100);
  }
}

#eixoDesenvolvimentoAmbientalSustentabilidade {

  &+.sub-title {
    color: #2d6800;
  }

  .selo {
    background: linear-gradient(135deg, #77ff5c, #2d6800);
  }
}

#eixoDesenvolvimentoInstitucionalGovernancaGestao {

  &+.sub-title {
    color: #f56200;
  }

  .selo {
    background: linear-gradient(135deg, #ffcfa8, #f56200);
  }
}

.corpo-texto .main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
}

.corpo-texto .sub-title {
  color: #0d6efd;
  font-weight: 600;
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
  margin-left: 5rem;
}

.corpo-texto p {
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-indent: 2rem;
}

.corpo-texto .section-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: 3rem auto;
}

@media (max-width: 576px) {
  .corpo-texto .main-title {
    font-size: 1.5rem;
  }

  .corpo-texto .section-container {
    padding: 2rem 1.2rem;
  }
}

.corpo-texto .single-col-table td {
  border: 1px solid #000;
  padding: 1rem;
  vertical-align: top;
}

.corpo-texto .titulo {
  font-weight: bold;
  text-transform: uppercase;
}

.corpo-texto .area {
  font-weight: bold;
}

.corpo-texto .objetivo strong,
.justificativa strong {
  display: block;
  margin-bottom: 0.5rem;
}
.indicadores-frame-wrapper {
  position: relative;
  width: 99vw;
  margin-top: 30px;
  min-height: calc(100vh - 30px);
}

.indicadores-frame-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  min-height: inherit;
  background: #f8fafc;
  color: #334155;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.indicadores-frame-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #dbe4ee;
  border-top-color: #0d6efd;
  border-radius: 50%;
  animation: indicadores-frame-spin 0.8s linear infinite;
}

.indicadores-frame-wrapper.is-loaded .indicadores-frame-loading {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.indicadores-frame {
  display: block;
  width: 100%;
  max-width: none;
  min-height: inherit;
  border: 0;
}

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

@media (max-width: 768px) {
  .indicadores-frame-wrapper {
    min-height: calc(100vh - 120px);
  }
}
