body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

.filter-section {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.property-card {
    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 o card ocupe 100% da altura */
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.property-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 1;
}

.property-img {
    height: 180px;
    object-fit: cover;
}

.property-body {
    flex: 1; /* Faz o conteúdo interno ocupar o restante do espaço */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Garante espaçamento uniforme */
    padding: 15px;
}

.property-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.property-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #007bff;
}

.property-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.property-details i {
    color: #007bff;
    margin-right: 5px;
}

.property-footer {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: #003f7f;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
}
