/*
Theme Name: Multicasa Bienes 2.0
Template: neve
Author: Ing. Santiago Benavides
*/ 
/*ESTILOS (UX PROFESIONAL)*/

.filtro-propiedades {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.filtro-propiedades input,
.filtro-propiedades select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.filtro-propiedades button {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}
/*ESTILOS PRO (MUY IMPORTANTE)*/
.contenedor-propiedades {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.grid-propiedades {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.card-propiedad {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card-propiedad:hover {
    transform: translateY(-5px);
}

.card-propiedad img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-propiedad .info {
    padding: 15px;
}

.precio {
    font-size: 20px;
    font-weight: bold;
    color: #27ae60;
}

.btn-ver {
    display: inline-block;
    margin-top: 10px;
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-wa {
    display: inline-block;
    margin-top: 10px;
    background: #25D366;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-left: 5px;
}
/* UX TIPO FINCARAÍZ */
.card-propiedad {
    position: relative;
}
.card-propiedad::before {
    content: "DESTACADO";
    position: absolute;
    top: 10px;
    left: 10px;
    background: red;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
}