
.layout-novo {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.layout-novo .card-imovel {
    width: 300px;
    border-radius: 6px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    position: relative;
}
.card-etiqueta {
    background: #c62828;
    color: white;
    padding: 6px;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 60%;
    border-top-left-radius:10px;
	border-bottom-right-radius:10px;
    text-align: center;
}
.card-img img {
    width: 100%;
    height: auto;
    display: block;
}
.card-conteudo {
    padding: 15px;
}
.card-conteudo h4 {
    margin: 0;
    font-size: 16px;
}
.card-conteudo p {
    margin: 5px 0;
}
.card-conteudo .preco {
    font-weight: bold;
    font-size: 18px;
    color: #111;
}
.icones {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

pan > .emoji{
	width:32px !important;
	height:32px !important;
	
}

.favorito {
    margin-top: 10px;
    text-align: right;
}
.wpi-lista-imoveis {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.wpi-lista-item {
  display: flex;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  overflow: hidden;
}
.wpi-lista-img {
  width: 320px;
  flex-shrink: 0;
}
.wpi-lista-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpi-lista-info {
  padding: 20px;
  flex-grow: 1;
}
.wpi-lista-info h3 {
  margin-top: 0;
  color: #111;
  font-size: 24px;
}
.wpi-lista-dados {
  display: flex;
  gap: 20px;
  font-size: 14px;
  margin: 10px 0;
}
.wpi-lista-acoes {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-visita {
  background: #ff6b00;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}
.btn-visita-card {
  display: inline-block;
  background: #ff6b00;
  color: white;
  padding: 8px 16px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  background-color:#3498db;
  text-align:center;
  text-transform:uppercase;
  width:100% !important;
	
}
.btn-visita-card:hover {
  background: #e65a00;
}