/* REcaptcha */


 .g-recaptcha {
  margin: 20px auto; /* centraliza horizontalmente */
  display: inline-block; /* necessário para o margin auto funcionar */
}
      
      .recaptcha-container {
  display: flex;
  justify-content: center;
  margin: 20px 0; /* opcional, para adicionar margem */
}



/* CSS Whats Footer */

.rodape-site {
  padding: 20px;
  background-color: #000;
}

.rodape-navegar {
  /* estilos para a navegação */
}

.rodape-direcionar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.rodape-direcionar li {
  margin: 5px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
}

.rodape-direcionar li a {
  text-decoration: none !important;
  color: #fff !important;
  transition: color 0.2s ease-in-out;
  font-size: 24px;
  font-weight: bold;
}

.rodape-direcionar li a:hover {
  color: yellow !important;
}

/* CSS Baixo Whats Footer */


.barra-final {
  padding: 20px;
  background-color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.barra-final a {
  text-decoration: none !important;
  color: #fff !important;
  transition: color 0.2s ease-in-out;
  font-size: 24px;
  font-weight: bold;
  margin: 5px;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
}

.barra-final a:hover {
  color: yellow !important;
}

