@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Ubuntu", Tahoma, Geneva, Verdana, sans-serif;
}
a {
  text-decoration: none;
  color: #000;
}

/* Navbar */
.navbar-custom {
  background: linear-gradient(135deg, #ffffff, #ffffff);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 0.8rem 0;
  transition: padding 0.3s ease-in-out;
}
.navbar-brand img {
  height: 100px;
  width: auto;
  transition: height 0.3s ease-in-out;
}
.navbar-scrolled .navbar-brand img {
  height: 60px;
}
.navbar-scrolled {
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar-toggler {
  background-color: #24a9e1;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar Links */
.navbar-nav .nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 50%;
  background-color: #49A9DF;
  transition: width 0.3s ease, left 0.3s ease;
}
.navbar-nav .nav-link:hover::before {
  width: 100%;
  left: 0;
}
.navbar-nav .nav-link.active {
  color: #49A9DF;
}
.navbar-nav .active-link {
  font-weight: bold;
  color: #FF2374;
}
.navbar-nav .active-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: 0px;
  left: 0;
  background-color: #00B8AF;
}
.navbar-custom .nav-link {
  color: #842986 !important;
  font-size: 18px;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 2px;
}
.navbar-custom .nav-link:hover {
  color: #FF2374 !important;
}
.navbar-custom .nav-link.active {
  color: #842986 !important;
  font-weight: 600;
}

/* Carousel */
.carrossel-full {
  width: 100%;
  height: 650px;
  overflow: hidden;
  position: relative;
}
.carrossel-full .carousel-inner,
.carrossel-full .carousel-item {
  height: 100%;
}
.carrossel-full .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.carrossel-full .carousel-control-prev,
.carrossel-full .carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.carrossel-full .carousel-control-prev:hover,
.carrossel-full .carousel-control-next:hover {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}
.carrossel-full .carousel-control-prev {
  left: 20px;
}
.carrossel-full .carousel-control-next {
  right: 20px;
}
.carrossel-full .carousel-control-prev-icon,
.carrossel-full .carousel-control-next-icon {
  width: 30px;
  height: 30px;
}

/* Content Areas */
.bgOque {
  background-color: #f6f6f6;
}
.bgOque img {
  max-width: 100%;
  height: auto;
}
.bgOque h1 {
  color: #095f83;
  font-size: 47px;
  font-weight: bold;
}
.bgOque h1 span {
  color: #095f83;
  font-size: 47px;
  font-weight: 100;
  content: "\A";
  white-space: pre;
}
.bgOque h1 span::after {
  content: "\A";
  white-space: pre;
}
.bgOque p {
  font-size: 18px;
}
.textOque {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
.imgOque {
  display: flex;
  justify-content: center;
}

.secao-conteudo h2 {
  font-weight: 700;
  color: #0d6efd;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.secao-conteudo h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0d6efd;
  margin-top: 8px;
  border-radius: 2px;
}

.sc-noticias {
  padding: 15px 15px 30px 15px;
}

.card-custom {
  border: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 0px;
}
.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.card-custom .card-body {
  padding: 2rem;
}
.card-custom i {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}

.card-body-noticias {
  text-align: left;
  border-left: 1px solid #24a9e1;
  padding-bottom: 10px;
}

.imgNoticiaCardLegenda h3 {
  font-size: 18px !important;
  font-weight: 400 !important;
  font-style: normal;
  padding: 10px;
}
.imgNoticiaCardTitulo {
  padding-right: 10px;
  text-align: right;
  margin-top: -30px;
}
.imgNoticiaCardTitulo img {
  margin-top: -1px;
}
.imgNoticiaCard {
  width: 100%;
  height: 180px;
  position: relative;
  background-size: cover !important;
  background-position: top center;
}

.altCategoriaPublicacao {
  position: absolute;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  background-color: #48b7ae;
  padding: 0px 4px;
  right: 10px;
  top: 10px;
}
.altCategoriaPublicacao i {
  font-size: 11px;
  color: #fff;
}

.lkSaibaMaisNoticias {
  color: #48b7ae;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

/* Background Section */
.secao-imagem-fundo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
.secao-imagem-fundo .container {
  position: relative;
  z-index: 2;
  padding: 3rem 1rem;
}
.secao-imagem-fundo h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.secao-imagem-fundo p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
.secao-imagem-fundo .btn-light {
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}
.secao-imagem-fundo .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sc-projetos {
  margin-top: 30px;
  text-align: left;
  padding-bottom: 70px;
}
.sc-projetos h3 {
  color: #842986;
  font-size: 47px;
  font-weight: 600;
}
.sc-projetos p {
  font-size: 18px;
}

.card-body-projetos {
  text-align: center;
}
.card-body-projetos img {
  max-width: 100%;
  height: auto;
}

/* Footer */
.rodape-preto {
  width: 100%;
  height: auto;
  background-image: url("../imgs/fundo-rp.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.rodape-preto .container {
  color: #fff;
}
.rodape-preto h5 {
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #0d6efd;
}
.rodape-preto a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.rodape-preto a:hover {
  color: #0d6efd;
}
.rodape-preto .social-icons i {
  font-size: 1.8rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}
.rodape-preto .social-icons i:hover {
  color: #0d6efd;
  transform: translateY(-3px);
}
.rodape-preto .divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}
.rodape-preto .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.logoProgressoRp {
  margin-bottom: 40px;
}
.copyRp {
  width: 100%;
  background-color: #000;
}
.copyRpCenter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
}
.pRpSobre {
  width: 400px;
  border-left: 6px solid #24a9e1;
  padding-left: 15px;
  color: #000;
}
.menusRp {
  text-align: right;
}
.copyRpRoxo {
  width: 100%;
  height: 4px;
  background-color: #842986;
}
.menusRp ul li {
  display: inline-block;
  margin-left: 10px;
}
.faixa-oque {
  height: 4px;
  background-color: #842986;
  width: 100%;
  margin-bottom: 40px;
}
.saiba-mais-oque {
  text-align: right;
}
.saiba-mais-oque a {
  background-color: #842986;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 35px;
  border-radius: 8px;
  transition: 0.5s;
}
.saiba-mais-oque a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.menusRp ul li a {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: #000;
}
.menusRp ul li a:hover {
  color: #9a248a;
}
.menusRpActive {
  font-weight: bold !important;
}

.contatosRp {
  padding-top: 80px;
  background-image: url("assets/img/fundo-rp.png");
  text-align: right;
}
.contatosRp h4 {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}
.contatosRp h5 {
  font-size: 16px;
  font-weight: 300;
  color: #000;
}
.contatosRp p {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.detalheFaixaPreta {
  background-color: #000;
  height: 40px;
  margin-top: 80px;
}

.grid-item{
  height: auto;
  width: 100%;
  display: flex;
align-items: center;
margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
}

.grid-img{
  height: 87px;
  width: 135px;
  background-position: top center;
  background-size: cover;
  margin-right: 15px;

}

.grid-legenda h3{
  font-size: 14px;
}

.grid-legenda h4{
  font-size: 18px;
  margin-top: -10px;
}

.outrasNoticiasTitulo{
  margin: 40px 0px;
}

.projetosColunaLista img{
max-width: 100%;
}

.containerConteudoInterna img{
  max-width: 100%;
}

.caminhoPagina a{
  color: #0d6efd;
}

.page_resume{
  font-size: 20px;
  margin-top: -10px;
}

.localDataPOublicacaop{
  font-weight: 100;
}

.mainInterna{
  margin-top: 70px;
}

/*PÃGINA TRANSPARÃŠNCIA*/
.listaDocsTransparencia a{
  color: #000 !important;
}

.listaDocsTransparencia a:active{
  color: #000 !important;
}

.listaDocsTransparencia a:visited{
  color: #000 !important;
}

.listaDocsTransparencia{
  margin: 0px;
  padding: 0px;
}

.listaDocsTransparencia p{
  margin: 0px;
  padding: 0px;
}

.listaDocsTransparencia li{
display: flex;
justify-content: space-between;
}

.listaDocsTransparencia li{
  background-color: #9df5f0;
  margin: 10px 0px;
  border-radius: 8px;
  padding: 10px 10px;
  transition: 2s;
  color: #000;
}

.listaDocsTransparencia li:hover{
  background-color: #0e7973;
  transition: 2s;
}

.accordion-button:not(.collapsed){
  background-color: #00ABE4;
  font-weight: 600;
 
}

.accordion-button:hover{
  background-color: #00ABE4;
  font-weight: 600;
  color: #fff;
}

#accordionTransparencia{
  margin-top: 80px;
}

.pUp{
  margin-top: -50px;
}

.formContato{
  margin-top: 25px;
  margin-bottom: 50px;
}

.textEnderecos{
  text-align: center;
}

.textEnderecos h2{
 font-size: 20px;
}

/*PÃGINA TRANSPARÃŠNCIA*/

.boxListaItensInterna{
    display:flex;
    align-items:center;
    gap:20px;
    text-decoration:none;
    margin-bottom: 30px;
    width:fit-content;
}

.boxListaItensInterna .texto h2{
font-size: 20px;
}

.boxListaItensImg{
    width:231px;
    height:128px;
    background-size:cover;
    background-position:top center;
    border-radius:10px;
    flex-shrink:0;
}

.texto{
    flex:1;
}

.titleColuna{
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}


/* Responsiveness */
@media (max-width: 992px) {
  .carrossel-full {
    height: 450px;
  }
  .secao-imagem-fundo {
    min-height: 300px;
    background-attachment: scroll;
  }
  .secao-imagem-fundo h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .carrossel-full {
    height: 350px;
  }
  .carrossel-full .carousel-control-prev,
  .carrossel-full .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  .carrossel-full .carousel-control-prev-icon,
  .carrossel-full .carousel-control-next-icon {
    width: 22px;
    height: 22px;
  }
  .secao-conteudo {
    padding: 2.5rem 0;
  }
  .secao-imagem-fundo {
    min-height: 250px;
  }
  .secao-imagem-fundo h2 {
    font-size: 1.6rem;
  }
  .secao-imagem-fundo p {
    font-size: 1rem;
  }
  .rodape-preto {
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .carrossel-full {
    height: 250px;
  }
  .carrossel-full .carousel-control-prev,
  .carrossel-full .carousel-control-next {
    width: 35px;
    height: 35px;
  }
  .carrossel-full .carousel-control-prev-icon,
  .carrossel-full .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }
  .navbar-custom .navbar-brand {
    font-size: 1.3rem;
  }
}
