@import url("https://use.fontawesome.com/releases/v6.5.1/css/all.css");

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 25%; /* Ou qualquer largura definida */
}

.navigation {
  padding: 12px;
  background: linear-gradient(to right, #e49a1b, rgb(221, 189, 9));
  justify-content: space-between;
  display: flex;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #fff;
}
.botao {
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  font-family: "BJCree", serif;
  font-weight: 00;
  font-style: normal;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
.botao:hover {
  background-color: gold;
}
.pousada {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  border-radius: 30px 30px 30px 30px; /*arredondar bordas */
  border: 4px solid gold; /* Uma borda azul de 4 pixels */
  padding: 5px; /* Espaço entre a imagem e a borda */
}

/* Caixa de pesquisa */
.search-box {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  width: 90%;
  margin: 1.25rem auto;
  background: #fff;
  border-radius: 999px;
  border: 2px solid gold;
  box-shadow: 0 4px 14px gold;
  overflow: hidden;
}

.search-box input[type="text"] {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  padding: 0.85rem 1.25rem;
  font-family: "Oswald", sans-serif, system-ui;
  font-size: 1rem;
  color: #2c3e50;
  background: transparent;
}

.search-box input[type="text"]::placeholder {
  color: #95a5a6;
}

.search-box #searchBtn {
  flex-shrink: 0;
  border: none;
  background: gold;
  color: #fff;
  padding: 0 1.1rem;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-box #searchBtn:hover {
  background: gold;
}

.search-box #searchBtn:active {
  background: #21618c;
}

.categorias {
  display: flex;
  justify-content: center;
  font-family: "BJCree", serif;
  font-weight: 900;
  font-style: normal;
  color: gold;
}

.container-venda {
  position: relative;
  display: inline-block;
  width: 300px; /* Mantive a largura do seu código */
  height: 200px; /* Mantive a altura do seu código */
  overflow: hidden; /* Garante que nada saia da borda */
  font-family: "BJCree", serif;
  font-weight: 600;
  font-style: normal;
}

.container-venda img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Faz a mesma função do background-size: cover */
}

.texto-venda {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7); /* Fundo escuro para destacar o texto */
  color: white;
  padding: 8px 12px;
  font-family: sans-serif;
  font-size: 14px;
}

.vendas {
  display: flex;
  gap: 20px; /* Espaçamento entre os itens */
  justify-content: center; /* Centraliza os itens horizontalmente */
}

.container-imagem {
  position: relative; /* Transforma o contêiner na âncora principal */
  display: inline-block;
}

.texto-centro {
  position: absolute; /* Faz o texto flutuar sobre a imagem */
  top: 50%;
  left: 50%;
  transform: translate(
    -50%,
    -50%
  ); /* Ajuste fino para centralizar perfeitamente */
}

.categoria5 {
  position: relative;
  text-align: center;
  border-radius: 10px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("./paisagem.jpeg") no-repeat center center;
  background-size: cover;
  width: 300px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "BJCree", serif;
  font-weight: 800;
  font-style: normal;
  color: #fff;
}

section > a {
  display: block; /* Transforma em bloco para poder centralizar */
  max-width: 200px; /* Limita o tamanho exato da caixa de clique */
  margin: 0 auto; /* Centraliza o link (e o botão) na tela */
  text-decoration: none;
}
