
.vista-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.vista-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  background: white;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}
.vista-card:hover {
  transform: scale(1.02);
}
.vista-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.vista-content {
  padding: 15px;
}
.vista-content h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}
.vista-preco {
  font-weight: bold;
  color: #2e7d32;
  font-size: 1.2rem;
}
.vista-botao, .vista-botao-whats {
  display: inline-block;
  margin-top: 10px;
  margin-right: 5px;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.vista-botao {
  background-color: #1976d2;
}
.vista-botao:hover {
  background-color: #1565c0;
}
.vista-botao-whats {
  background-color: #25d366;
}
.vista-botao-whats:hover {
  background-color: #1ebe5b;
}
.vista-galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.vista-galeria img {
  width: 100%;
  max-width: 250px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
