/* Espaço superior com fundo branco */
.top-bar {
  background-color: white;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.top-bar img {
  max-height: 100px;
  height: auto;
}

.search-bar {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 25px;
  padding: 5px 15px;
  width: 300px;
  background-color: #f9f9f9;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 1rem;
}

.search-bar button {
  background: none;
  border: none;
  color: #001f3f;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Navbar */
.navbar {
  background-color: #001f3f;
  margin-top: 10px;
}

.navbar-nav {
  font-size: 1.1rem;
  font-family: 'Arial', sans-serif;
  text-transform: uppercase;
}

.navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: bold;
  padding: 10px 20px;
}

.navbar-toggler {
  border-color: white;
}

.navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

/* Rodapé */
footer {
  background-color: #f0f0f0;
  color: #001f3f;
  padding: 50px 0;
}

footer h5 {
  font-weight: bold;
  margin-bottom: 20px;
}

footer a {
  color: #001f3f;
  text-decoration: none;
}

footer a:hover {
  color: #003366;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-social a {
  margin-right: 15px;
  font-size: 1.5rem;
  color: #001f3f;
}

.footer-social a:hover {
  color: #003366;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-links {
    text-align: center;
  }
  .footer-social {
    text-align: center;
    margin-top: 20px;
  }
}







 /* Alteração para itens anteriormente verdes */
    .text-navy {
      color: navy !important;
    }
    .btn-navy {
      background-color: navy !important;
      border-color: navy !important;
      color: white !important;
    }

    /* Adicionar um espaço entre a lista de categorias e a barra de pesquisa no modo mobile */
    @media (max-width: 768px) {
      /* Espaço entre a barra lateral e a pesquisa */
      .container {
        margin-top: 1.5rem;
      }

      .row {
        margin-top: 1.5rem;
      }

      .col-md-3 {
        margin-bottom: 1.5rem;
      }
    }
