
.imoveis-recentes {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.imoveis-recentes h2 {
  color: #00b2a9;
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid-imoveis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-imovel {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.2s;
}

.card-imovel:hover {
  transform: translateY(-4px);
}

.card-imovel .img-wrapper {
  height: 200px;
  overflow: hidden;
}

.card-imovel .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-imovel .info-wrapper {
  padding: 16px;
  text-align: left;
}

.card-imovel h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #333;
}

.card-imovel p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
}

.card-imovel .caracteristicas {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  margin: 10px 0;
  color: #333;
}

.card-imovel .caracteristicas i {
  margin-right: 4px;
}

.card-imovel .preco {
  font-size: 1.4rem;
  font-weight: bold;
  color: #00b2a9;
}
