/* Top Bar */
.top-bar {
  background-color: white;
  color: black;
  padding: 16px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.top-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* espaço entre as duas imagens (opcional) */
}

.top-bar .logo img {
  height: 40px; /* ou outro tamanho que preferir */
  width: auto;
  display: block;
}

.top-bar .contato {
  margin-left: auto; /* força o contato para a direita */
}

.top-bar .site-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.top-bar .site-name img {
  height: 115%;
  width: auto;
  object-fit: contain;
}

.top-bar .contato a {
  color: black;
  text-decoration: none;
  border: 2px solid black;         /* borda estilo botão */
  padding: 6px 12px;               /* espaço interno */
  border-radius: 8px;              /* cantos arredondados */
  transition: all 0.3s ease;       /* animação suave */
  background-color: transparent;  /* fundo transparente */
  font-weight: bold;
}

.top-bar .contato a:hover {
  background-color: black;        /* muda cor ao passar o mouse */
  color: white;
}


/* Footer fixo embaixo */
.bottom-bar {
  background-color: #ffffff;
  color: black;
  text-align: center;
  padding-top: 16px;
  padding-bottom: 20px;
  font-size: 0.9em;
  position: fixed;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

