/*****************************/
#home {
  background-color: var(--main-empresa);
  background-position: center center;
  width: 100%;
  height: 1200px;
}

#home .box{
  display: flex;
  justify-content: center;
  align-items: end;
  margin-top: -200px;
}

#home h1{
  font-family: 'Aquarium';
  font-size: 54px;
  margin-bottom: 10px;
  color: var(--main-white);
}

#home h2{
  color: var(--main-white);
  font-size: 42px;
  font-weight: bold;
}

@media(max-width: 767px){
  #home h1{
    font-size: 42px;
  }

  #home h2{
    font-size: 34px;
  }
 
}

/*****************************/
#sobre{
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: var(--main-empresa);
}

#sobre .faixa{
  background-color: var(--main-azul);
  height: 3px;
  width: 100px;
}

#sobre p{
  font-size: 21px;
  color: var(--main-white);
}

/**************************************/

#area{
  background-color: var(--main-empresa);
  padding-bottom: 150px;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  -moz-border-bottom-left-radius: 30%;
  -moz-border-bottom-right-radius: 30%;
  -webkit-border-bottom-left-radius: 30%;
  -webkit-border-bottom-right-radius: 30%;
}

#area h1{
  font-size: 54px;
  color: var(--main-white);
  display: flex;
  align-items: center; /* Centraliza a linha verticalmente com o texto */
  text-align: center;
}

#area h1 span{
  font-size: 62px;
  font-family: 'Aquarium';
  color: var(--main-azul);
  margin-left: 10px;
}

#area h1::before,
#area h1::after {
  content: "";
  flex: 1; /* Faz a linha ocupar todo o espaço disponível */
  height: 1px; /* Espessura da linha */
  background: rgba(255, 255, 255, 0.3); /* Cor da linha com transparência */
}

/* Espaçamento entre as linhas e o texto */
#area h1::before {
  margin-right: 20px;
}

#area h1::after {
  margin-left: 20px;
}

#area .nav-tabs{
  border: 0;
}
#area .nav-tabs li{
  width: 31%;
  margin-left: 1%;
  margin-right: 1%;
}

#area .nav-tabs li button{
  width: 100%;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}

#area .nav-tabs .nav-link{
  background-color: var(--main-white);
}

#area .nav-tabs .nav-link.active{
  background-color: var(--main-azul);
  color: var(--main-white);
  border: 0;
}

#area .tab-pane .faixa{
  background-color: var(--main-azul);
  height: 3px;
  width: 100px;
}

#area .tab-pane p{
  font-size: 21px;
  color: var(--main-white);
}

.slider-container {
  position: relative;
}

.slider-title {
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-top: 20px; /* Sobe o texto para cima da imagem */
  padding-left: 20px;
  position: relative;
  z-index: 10;
}

.img-fluid{
  max-width: 100%;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
}

/* Estilização das Setas */
.slider-controls {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.slider-controls button {
  background: transparent;
  border: 2px solid #00aeef;
  color: #00aeef;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slider-controls button:hover {
  background: #00aeef;
  color: white;
}

@media(max-width: 767px){
  #area{
    padding-bottom: 70px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
  }
  #area h1{
    font-size: 28px;    
  }

  #area h1 span{
    font-size: 34px;
  }
  #area .nav-tabs li{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/************************************/

#numeros{
  background-color: var(--main-white);
  padding-top: 40px;
}

#numeros h1{
  font-size: 72px;
  font-weight: bold;
  color: var(--main-empresa);
  margin-bottom: 10px;
}

#numeros h2{
  font-size: 92px;
  font-family: 'Aquarium';
  color: var(--main-azul);
  margin: 0;
}

#numeros .box-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#numeros .box{
  float: left;
  width: 31%;
  margin-left: 1%;
  margin-right: 1%;
  text-align: center;
  margin-bottom: 30px;
}


.timeline-container {
    display: flex;
    justify-content: space-between; /* Distribui os pontos igualmente */
    align-items: center;
    position: relative;
    padding: 40px 0;
    width: 100%;
}

/* A linha pontilhada ao fundo */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    border-top: 2px dotted #00aeef; /* Cor azul pontilhada */
    z-index: 1;
    transform: translateY(-50%);
}

.timeline-item {
    position: relative;
    z-index: 2; /* Garante que o ponto fique acima da linha */
    background: transparent; /* Fundo transparente ou a cor da sua section */
}

.dot {
    width: 20px;
    height: 20px;
    background-color: #00aeef; /* Miolo azul */
    border-radius: 50%;
    border: 4px solid #e0e0e0; /* Borda cinza clara externa */
    box-shadow: 0 0 0 2px white; /* Opcional: separação branca entre azul e cinza */
    display: block;
}

/* Responsividade: No celular, se ficar muito apertado, você pode diminuir o espaçamento */
@media (max-width: 576px) {
    .timeline-container {
        padding: 20px 0;
    }
    .dot {
        width: 16px;
        height: 16px;
        border: 3px solid #e0e0e0;
    }
}

#numeros .number span{
  font-size: 42px;
  font-weight: bold;
  color: var(--main-empresa);
  margin: 0;
}

#numeros .faixa{
  height: 2px;
  width: 50px;
  background-color: var(--main-empresa);
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

#numeros .texto{
  font-size: 14px;
  text-transform: uppercase;
}

@media(max-width: 767px){
  #numeros h1{
    font-size: 34px;
  }

  #numeros h2{
    font-size: 48px;
  }

  #numeros .box{
    text-align: center;
    width: 48%;
  }

  #numeros .box .faixa{
    margin-left: auto;
    margin-right: auto;
  }
}

@media(max-width: 450px){
  #numeros .box{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

/********************************************/

.elementos{
  background-position: center center;
  background-color: var(--main-white);
  width: 100%;
  height: 200px;
}

/********************************************/

#historia h1{
  font-size: 54px;
  color: var(--main-empresa);
  display: flex;
  align-items: center; /* Centraliza a linha verticalmente com o texto */
  text-align: center;
}

#historia h1 span{
  font-size: 62px;
  font-family: 'Aquarium';
  color: var(--main-azul);
  margin-left: 10px;
}

#historia h1::before,
#historia h1::after {
  content: "";
  flex: 1; /* Faz a linha ocupar todo o espaço disponível */
  height: 1px; /* Espessura da linha */
  background: rgba(0, 0, 0, 0.3); /* Cor da linha com transparência */
}

/* Espaçamento entre as linhas e o texto */
#historia h1::before {
  margin-right: 20px;
}

#historia h1::after {
  margin-left: 20px;
}

#historia .btn-ano {
  background: #e0e0e0;
  border: none;
  border-radius: 20px;
  padding: 5px 25px;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
  margin-left: 5px;
  margin-right: 5px;
}

#historia .btn-ano.active {
  background: #002d5b; /* Azul escuro do seu exemplo */
}

#historia .card-historia {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  padding: 20px;
  margin: 10px; /* Espaço entre os slides */
  min-height: 350px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#historia .ano-label {
  font-size: 24px;
  color: #ccc;
  font-weight: bold;
  display: block;  
}

#historia .card-historia h4 {
    color: #002d5b;
    font-size: 16px;
    margin-top: 15px;
}

#historia .faixa-ano{
  background-color: var(--main-empresa);
  height: 3px;
  width: 40px;
  margin-bottom: 10px;
}

.slider-controls-historia {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-controls-historia button {
  background-color: var(--main-azul);
  color: var(--main-white);
  width: 45px;
  height: 45px;
  border: 0;
  border-radius: 5px; /* Quadradinho arredondado igual à imagem */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.slider-controls-historia button i{
  color: var(--main-white);
}

.slider-controls-historia button:hover {
  background-color: var(--main-empresa);
  color: #fff;
}

@media(max-width: 767px){
  #historia h1{
    font-size: 28px;    
  }

  #historia h1 span{
    font-size: 34px;
  }
  #historia .btn-ano {
    width: 40%;
    margin-bottom: 10px;
  }
}

/***********************************/

#noticias{
  background-color: #d8d8d8;
  padding-top: 40px;
  padding-bottom: 150px;
  border-bottom-left-radius: 30%;
  border-bottom-right-radius: 30%;
  -moz-border-bottom-left-radius: 30%;
  -moz-border-bottom-right-radius: 30%;
  -webkit-border-bottom-left-radius: 30%;
  -webkit-border-bottom-right-radius: 30%;
}

#noticias h1{
  font-size: 54px;
  color: var(--main-empresa);
  display: flex;
  align-items: center; /* Centraliza a linha verticalmente com o texto */
  text-align: center;
}

#noticias h1 span{
  font-size: 62px;
  font-family: 'Aquarium';
  color: var(--main-azul);
  margin-left: 10px;
}

#noticias h1::before,
#noticias h1::after {
  content: "";
  flex: 1; /* Faz a linha ocupar todo o espaço disponível */
  height: 1px; /* Espessura da linha */
  background: rgba(0, 0, 0, 0.3); /* Cor da linha com transparência */
}

/* Espaçamento entre as linhas e o texto */
#noticias h1::before {
  margin-right: 20px;
}

#noticias h1::after {
  margin-left: 20px;
}

#noticias .noticia{
  border-left: 3px solid var(--main-empresa);
  margin-bottom: 20px;
  padding-left: 10px;
}

#noticias .noticia a, #noticias .box a{
  text-decoration: none;
}

#noticias .box .titulo, #noticias .noticia .titulo{
  color: var(--main-empresa);
  font-size: 21px;
}
#noticias .box .leg, #noticias .noticia .leg{
  font-size: 16px;
}

#noticias .box{
  padding: 20px;
  border: 1px solid #c4c4c4;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}

#noticias .box img{
  max-width: 100%;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}

#noticias .box .titulo{
  margin-top: 10px;
}

@media(max-width: 767px){
  #noticias{
    padding-bottom: 70px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    -moz-border-bottom-left-radius: 20px;
    -moz-border-bottom-right-radius: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
  }
  #noticias h1{
    font-size: 28px;    
  }

  #noticias h1 span{
    font-size: 34px;
  }

  #noticias .box{
    margin-bottom: 20px;
  }
}

/***********************************/

#depoimentos h1{
  color: var(--main-azul);
  font-size: 72px;
  font-weight: bold;
  font-family: 'Aquarium';
  margin: 0;
}

#depoimentos .leg{
  color: var(--main-empresa);
  font-size: 34px;
}

@media(max-width: 767px){
  #depoimentos h1{
    font-size: 48px;
  }
  #depoimentos .leg{
    font-size: 28px;
  }
}

#depoimentos .slider-controls-depoimentos {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Deixa clicar no vídeo se a área sobrepor */
    z-index: 10;
}

#depoimentos .slider-controls-depoimentos button {
    background: #00aeef;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    pointer-events: all; /* Ativa o clique apenas no botão */
    transition: 0.3s;
    /* Ajuste de posição para ficarem fora do container */
    margin-left: -50px; 
    margin-right: -50px;
}

#depoimentos .slider-controls-depoimentos button:hover {
    background: #002d5b;
}

.slider-controls-depoimentos button i, .slider-controls button i{
  color: var(--main-white);
}

/* Ajuste mobile para as setas não sumirem da tela */
@media (max-width: 1200px) {
    #depoimentos .slider-controls-depoimentos button {
        margin-left: -20px;
        margin-right: -20px;
    }
}
/********************************************************/

#programacao-fpa h1{
  font-size: 54px;
  color: var(--main-empresa);
  display: flex;
  align-items: center; /* Centraliza a linha verticalmente com o texto */
  text-align: center;
}

#programacao-fpa h1 span{
  font-size: 62px;
  font-family: 'Aquarium';
  color: var(--main-azul);
  margin-left: 10px;
}

#programacao-fpa h1::before,
#programacao-fpa h1::after {
  content: "";
  flex: 1; /* Faz a linha ocupar todo o espaço disponível */
  height: 1px; /* Espessura da linha */
  background: rgba(0, 0, 0, 0.3); /* Cor da linha com transparência */
}

/* Espaçamento entre as linhas e o texto */
#programacao-fpa h1::before {
  margin-right: 20px;
}

#programacao-fpa h1::after {
  margin-left: 20px;
}

#programacao-fpa .tag-centenario{
  background:#e8efff;
  color:#2155b6;
  padding:8px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  display:inline-block;
  margin-bottom:15px;
}

#programacao-fpa .titulo-programacao{
  font-size:42px;
  font-weight:800;
  color:#1b1b1b;
  margin-bottom:15px;
}

#programacao-fpa .descricao-programacao{
  color:#666;
  font-size:17px;
}

#programacao-fpa .box-busca .form-control{
  height:58px;
  border-radius:60px;
  border:none;
  padding:0 25px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

#programacao-fpa .filtros-wrapper{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

#programacao-fpa .btn-mes{
  border:none;
  background-color: #e0e0e0;
  padding:10px 22px;
  border-radius:40px;
  font-weight:700;
  color:#444;
  transition:.3s;
  box-shadow:0 5px 20px rgba(0,0,0,.06);
}

#programacao-fpa .btn-mes:hover,
#programacao-fpa .btn-mes.active{
  background: var(--main-empresa);
  color:#fff;
}

#programacao-fpa .slider-programacao{
    margin-top:30px;
}

#programacao-fpa .slide-mes{
    padding:15px;
}

#programacao-fpa .mes-box{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #eef1f5;
}

#programacao-fpa .topo-mes{
    background-color: var(--main-empresa);
    padding:30px;
    color:#fff;
}

#programacao-fpa .topo-mes h3{
  margin:0;
  font-size: 28px;
  font-weight:800;
  color: var(--main-white);
}

#programacao-fpa .lista-eventos{
    padding:25px;
}

#programacao-fpa .evento-card{
    display:flex;
    align-items:flex-start;
    padding-bottom:10px;
    border-bottom:1px solid #ececec;
}

#programacao-fpa .evento-card:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

#programacao-fpa .data-evento{
    min-width:70px;
    height:70px;
    border-radius:18px;
    background-color: var(--main-empresa);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:800;
    margin-right:18px;
    text-align:center;
    padding:5px;
}

#programacao-fpa .conteudo-evento h4{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin-bottom:6px;
}

#programacao-fpa .conteudo-evento p{
    margin:0;
    color:#666;
    font-size:14px;
}

#programacao-fpa .slick-prev,
#programacao-fpa .slick-next{
    width:55px;
    height:55px;
    z-index:10;
}

#programacao-fpa .slick-prev{
    left:-50px;
}

#programacao-fpa .slick-next{
    right:-50px;
}

#programacao-fpa .slick-prev:before,
#programacao-fpa .slick-next:before{
    font-size:55px;
    color:var(--main-azul);
}

#programacao-fpa .slick-dots li button:before{
    font-size:12px;
    color:var(--main-azul);
}

.mes-box{
  background:#fff;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  border:1px solid #eef1f5;
  height:650px;
  display:flex;
  flex-direction:column;
}

.lista-eventos{
  padding:25px;
  overflow-y:auto;
  overflow-x:hidden;
  flex:1;
}

@media(max-width:767px){
  #programacao-fpa .titulo-programacao{
      font-size:30px;
  }

  #programacao-fpa .evento-card{
      flex-direction:column;
  }

  #programacao-fpa .data-evento{
      margin-bottom:15px;
  }
  #programacao-fpa h1{
    font-size: 28px;    
  }

  #programacao-fpa h1 span{
    font-size: 34px;
  }

  #programacao-fpa .box{
    margin-bottom: 20px;
  }
}











