.contenedor-cards .col-md-4 {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.property-card {
    width: 315px;
    height: 415px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.property-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 1.5s ease;
    transform-origin: center center;
    /* object-fit: none; */
}

.property-img:hover {
    transform: scale(1.4);
}

.property-body {
    padding: 10px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-region p {
    font-size: 12px;
    margin: 0;
}

.property-price p {
    font-family: "DIN2014-DemiBold";
    font-size: 22px;
    margin: 0;
}

.property-type p {
    font-family: "DIN2014-DemiBold";
    font-size: 18px;
    margin: 0;
}

.property-address p {
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

.property-icons {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    margin: 10px 0;
}

.property-icons p {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
}

.property-icons img {
    width: 21px;
}

.property-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fd1978;
    color: white !important;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px !important;
    width: 100%;
    margin: 5px 0;
    height: 33px;
}

.property-btn:hover {
    background-color: #e8186f;
    text-decoration: none;
}

.property-btn:active {
    background-color: #dd1568;
    text-decoration: none;
}

.property-btn:focus {
    background-color: #fd1978;
    text-decoration: none;
}


/* Estilo especial para puja cerrada */
.property-btn.disabled {
  background-color: #b61357;
  pointer-events: none;
  cursor: default;
}
