
/* CSS ESPECÍFICO PARA PROPERTY CARDS - NO INTERFIERE CON BARISTA */
.properties {
    padding: 100px 0;
    background-image: linear-gradient(to bottom, var(--section-bg-color), white), url('');
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 220px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #55B00C;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #717275;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #e1e5e9;
    padding-top: 1rem;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #717275;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.property-feature i {
    color: #55B00C;
}

/* Estilos para el modal de propiedades */
#propertyModal {
    z-index: 999999 !important;
}

.modal-backdrop {
    z-index: 999998 !important;
}

/* Responsive para property cards */
@media screen and (max-width: 991px) {
    .properties-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .properties {
        padding: 50px 0;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .property-content {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .property-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .property-feature {
        justify-content: flex-start;
    }
}
