/* ==========================
   RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* ==========================
   HEADER
========================== */
header {
  background: #b30000;
  color: white;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 120px;
  margin-left: 10px;
}

nav {
  display: flex;
  gap: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ==========================
   FILTROS
========================== */
.filtros {
  background: #e40f0f;
  color: #000;
  padding: 15px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.filtros label {
  font-weight: bold;
}

.filtros select {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

/* ==========================
   LISTA DE IMÓVEIS COMERCIAIS
========================== */
.lista-imoveis {
  padding: 40px;
  text-align: center;
}

.imovel {
  display: inline-block;
  width: 300px;
  margin: 20px;
}

.imovel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.imovel h3 {
  margin-top: 10px;
  font-size: 1.2rem;
}

.imovel p {
  color: #555;
  margin: 5px 0 10px;
}

.ver-mais {
  display: inline-block;
  padding: 8px 15px;
  background: #b30000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.ver-mais:hover {
  background: #800000;
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #b30000;
  color: white;
  padding: 40px 20px 10px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-col {
  width: 30%;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col a {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 0.9rem;
}
