/* ==============================================
   COMPRAR CASA — Estilos específicos
   ============================================== */

/* Sección ¿Por qué comprar con JC? */
.why-section {
    padding: 0;
}
.why-section__title {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--color-text-dark);
    margin-bottom: 60px;
}

/* Nunca fue tan fácil — bloque img+texto */
.easy-section {
    padding: 15vh 0;
}
.easy-block {
    display: flex;
    align-items: center;
    gap: 60px;
}
.easy-block__image-wrapper {
    flex: 0 0 48%;
}
.easy-block__image {
    width: 100%;
    display: block;
}
.easy-block__content {
    flex: 1;
}
.easy-block__title {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
}
.easy-block__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-soft);
    margin-bottom: 14px;
}
.easy-block__subtitle {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-text-dark);
    margin-top: 24px;
    margin-bottom: 14px;
}

/* Catálogo e inversiones — bloques alternados */
.catalog-section {
    padding: 0;
}
/* "Inversiones Inteligentes" — quitar padding superior */
.catalog-section .content-row--reverse {
    padding-top: 0;
}

@media (max-width: 992px) {
    .easy-block {
        flex-direction: column;
        gap: 40px;
    }
    .easy-block__image-wrapper {
        flex: none;
        width: 100%;
    }
}
