
/*
.container {
    width: 80%;
    margin: 0 auto;
}
*/




/* Animación sutil de latido */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}
/*Boton de las propiedades*/
.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #122455; /* color base */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color:  #1F69FF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
	text-decoration: none;
}

.beneficio img {
    width: 250px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease; /* 💡 Agregamos transición suave */
}

.beneficio:hover img {
    transform: scale(1.1); /* 💡 Efecto zoom al pasar el mouse */
}

.beneficio {
    display: inline-block;
    width: 22%;
    margin: 10px;
    text-align: center;
}



/*Propiedades*/

.property-titulo {

    color: #122455;
    font-weight: bold;
    font-size: 20px;
    padding: 1px;
  /*  text-align: center; */
	 line-height: 1.6;
}







.propiedades {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.propiedad {
    display: inline-block;
    width: 30%;
    margin: 10px;
    text-align: center;
}

.propiedad img {
    width: 100%;
    border-radius: 8px;
}
.property-image {
    position: relative;
    overflow: hidden; /* Para ocultar lo que se sale del borde */
}

/* Cinta en diagonal */
.property-ribbon {
    position: absolute;
    top: 25px;
    left: -45px;
    transform: rotate(-45deg);
    background-color: #d32f2f; /* rojo */
    color: #fff;
    font-weight: bold;
    font-size: 13px;
    padding: 6px 50px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 10;
	text-transform: uppercase;
    pointer-events: none; /* Para que no interfiera al hacer clic */
}

/*filtros casas*/

.filter-button {
    padding: 8px 16px;
    margin: 5px;
    background-color: #ccc;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.filter-button:hover {
    background-color: #aaa;
}

.filter-button.activo {
    background-color: #99ff99 !important;
    transform: translateY(-2px);
}







/*estilos propdades*/
.properties-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
}

.property-image {
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-image:hover img {
    transform: scale(1.05);
}

.property-details {
    padding: 1.5rem;
}


.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
    color: #000;
    font-size: 1.4rem;
}

/*
.property-features span {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1rem 0;
    color: #000000;
    font-size: 1.5rem;
}
*/

.property-price {
    color: #2d3748;
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
}

@media screen and (max-width: 768px) {
    .beneficio {
        width: 100%;
        margin: 20px 0;
    }

    .beneficio img {
        width: 150px;
        height: 150px;
    }
}

