header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #f2f2f2;
  color: #fff;
  z-index: 9999;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  box-shadow: 0 1px 1px rgba(32, 33, 36, 0.1);
}

.login-button {
  padding: 10px 20px;
  background-color: #DB4437;
  border-radius: 5px;
}

.login-button a {
  color: #333;
  text-decoration: none;
  font-weight: Open Sans;
  color: white;
}

.login-label {
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.login-button a {
  color: #fff;
  text-decoration: none;
  font-family: Arial, sans-serif;
}

.logo-icon {
  background-color: #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.logo-icon:hover {
  background-color: #007bff;
}

.logo-icon .bi {
  color: #222222;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.mr {
  margin-right: 10px;
}

.logo {
  margin-right: 10px;
}

.profile-info{
  color: #222222;
    margin-left: auto;
    margin-right: 10px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}








{% extends 'base.html' %}

{% block content %}

  <h2>Resultados da Pesquisa</h2>

  {% if anuncios %}
    <div class="grid-container">
      {% for anuncio in anuncios %}
        <div class="grid-item">
          <img src="{{ url_for('static', filename='imagens/' + anuncio[3]) }}" alt="{{ anuncio[0] }}">
          <h3>{{ anuncio[0] }}</h3>
          <p><strong>Localização:</strong> {{ anuncio[1] }}</p>
          <p><strong>Preço:</strong> R$ {{ anuncio[2] }}</p>
        </div>
      {% endfor %}
    </div>
  {% else %}
    <p>Nenhum imóvel encontrado.</p>
  {% endif %}

{% endblock %}





