.property-card {
    display: flex;
    flex-direction: column; /* Alinha os elementos em coluna */
    justify-content: space-between; /* Garante que o conteúdo seja distribuído */
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
    height: 100%; /* Garante que todos os cartões tenham a mesma altura */
}

.property-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.property-img {
    height: 180px; /* Imagens com altura fixa */
    width: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorção */
    background-color: #f8f9fa; /* Fundo para imagens ausentes */
}

.property-body {
    flex-grow: 1; /* Faz o corpo do cartão ocupar o espaço restante */
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.property-price {
    font-size: 1rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-bottom: 10px;
}

.property-details {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 10px;
}

.property-details i {
    color: #007bff;
    margin-right: 5px;
}

.property-footer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: auto; /* Empurra o footer para o final do cartão */
}

/* Responsividade */
@media (max-width: 768px) {
    .property-img {
        height: 150px;
    }
    .property-title {
        font-size: 1rem;
    }
    .property-price {
        font-size: 0.9rem;
    }
    .property-details {
        font-size: 0.8rem;
    }
}
