@font-face {
  font-family: 'Arial Black';
  src: url('../fontes/arial_black.woff2') format('woff2');
  src: url('../fontes/arial_black.woff') format('woff');
  font-weight: bold;
}

/* @font-face {
  font-family: 'Arial Rounded';
  src: url('../fontes/arial_rounded.woff2') format('woff2');
  src: url('../fontes/arial_rounded.woff') format('woff');
  font-weight: normal;
} */

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color:#ffffff;
    /* background-image: url('../img/bg_1.jpg');
    background-repeat: no-repeat;
    background-size: cover; 
    background-attachment: fixed; */
    font-family: 'Arial Black';
    /* font-family: 'Arial Rounded'; */
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.top_nav{
  height: 60px;
  width: 100%;
  position: absolute;
  top: 0;
  /* position: fixed; */
  z-index: 999;
  
}

.nav_efeito:hover {
  /* background-color: #5378b6ff;  */
  color: #5378b6ff; 
  padding: 0;
  font-weight: bolder;
  /* clip-path: polygon(20% 0%, 88% 0, 100% 20%, 100% 80%, 100% 100%, 12% 100%, 0% 80%, 0 0); */
  align-items: center;
  justify-content: center;
  /* transition: background-color 0.3s ease-in, color 0.3s ease-in;  */
}

@media screen and (max-width: 480px) {
  .nav_efeito:hover {
    background-color: #ffffff3b; 
    color: #5378b6ff; 
    padding: 0;
    border-radius: 0;
  }
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.painel_list{
  background-color: #ffffff;
  height: 420px;
  width: 100%;
  padding: 20px;
  color: #5378b6ff;
}


.painel_carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.painel_carousel-inner {
  display: flex;
  animation: carouselAnimation 45s linear infinite; /* Alterar a velocidade do carrossel ajustando o valor 45s */
}

.painel_carousel-item {
  flex: 0 0 20%; /* Ajustar o tamanho de cada item (20% para 5 itens por linha) */
  padding: 0 5px; /* Espaçamento entre os itens */
  box-sizing: border-box;
  text-align: center;
  position: relative; /* Necessário para o posicionamento do link */
}

.painel_carousel-item:hover{
  transform: scale(1.1);
  transition: 1.5s;
}

@media screen and (max-width: 768px){
  .painel_carousel-item {
    flex: 0 0 30%;
  }
  .painel_carousel-inner {
    animation: carouselAnimation 15s linear infinite; /* Alterar a velocidade do carrossel ajustando o valor 15s */
  }
}

.painel_carousel-item:hover {
  animation-play-state: paused;
}

@keyframes carouselAnimation {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

/* Estilo de exemplo para os itens do carrossel */
.painel_carousel-item {
  /* background-color: #f0f0f0;
  border: 1px solid #ccc; */
  padding: 20px;
  font-size: 24px;
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.convenio_list{
  /* background-color: #ffffff; */
  height: auto;
  width: 100%;
  padding: 20px;
  color: #5378b6ff;
  text-align: center;
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.blc_list{
  height: auto;
  width: 100%;
  padding: 20px;
  color: #5378b6ff;
  text-align: center;
  padding-left:10px; 
  padding-right:10px; 
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.noticia_list{
  background-color: #ffffff;
  height: auto;
  width: 100%;
  /* padding: 20px; */
  color: #5378b6ff;
  text-align: center;
}

@media screen and (max-width: 420px) {
  .card_menor{
    width: 18rem;;
  }
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.sessao{
  background-color: #ffffff;
  height: 900px;
  width: 100%;
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.cantos{
  clip-path: polygon(20% 0%, 88% 0, 100% 20%, 100% 80%, 100% 100%, 12% 100%, 0% 80%, 0 0);
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.div-fixa {
  position: fixed;
  top: 40%; /* Ajuste aqui a distância do topo */
  right: 0;
  width: 100px; /* Ajuste aqui a largura desejada */
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(50%); /* Move a div 50% para a esquerda para centralizar */
  z-index: 999;
  /* background-color: #ffff00; */
  /* color: #001866; */
  padding: 20px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: none;
}

/* Ajuste para telas menores */
@media screen and (max-width: 768px) {
  .div-fixa {
      width: 100px;
      top: 65%; /* Ajuste aqui a distância do topo */
      /* display: none; */
  }
  .apaga{
    display: none;
  }
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.botao-topo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff00008c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Inicialmente oculto */
  z-index: 1000; /* Garante que fique acima de outros elementos */
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.card:hover{
  transform: scale(1.1);
  transition: 1.5s;
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
footer {
  display: flex;
  justify-content: center;
  justify-items: center;
  align-items: center; /* Centraliza verticalmente */
  /* color: #5378b6ff;
  border-top: solid 4px #4d4d4dff; */
  height: 280px;
  width: 100%;
  /* background-color: #fff6d5ff; */
  padding: 20px;
}

.col_logo_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width:768px) {
  .col_logo_footer{
    justify-content: center;
  }
}

.developers{
  height: 50px;
  width: 100%;
  padding: 10px;
  background-color: #fff6d5ff;
}
/* ********************************************************************************************************************* */

/* ********************************************************************************************************************* */
.container_form {
  justify-content: center;
  justify-items: center;
  margin-top: 100px;
  width: 90%; 
  max-width: auto; 
  height: auto; 
  max-height: auto; 
  
  background-color: rgba(83, 119, 182, 0.082);

  padding: 20px;
  box-sizing: border-box;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.205);
  margin-top: 90px;
  margin-bottom: 50px;
  margin-left: 5%;
  margin-right: 5%;
}

#msg {
  height: 200px;
}









/* Classe para animar o efeito de fade out */
.fade-out {
  opacity: 1; /* Começa com opacidade completa */
  transition: opacity 1s ease-in-out; /* Transição suave */
  animation-fill-mode: forwards; /* Mantém a última posição após a animação */
}

.fade-out.inactive {
  opacity: 0; /* Opacidade zero ao sair da tela */
}















.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Altura da tela inteira */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Redimensiona o vídeo para cobrir toda a área */
}

.content {
  position: relative;
  z-index: 1; /* Para colocar conteúdo acima do vídeo */
  text-align: center;
  color: #ffffff;
  padding: 20px;
}










.testes {
  background-color: #e6ffff;
  background-color: #0099d571;
}