/** Sección de propiedades */
.section-propiedades {
    color: #2d2923;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.propiedades-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    min-height: 200vh;
    padding-bottom: 5rem;
}

/* Imagen izquierda sticky */
.imagen-izquierda {
    z-index: 2;
    align-self: start;
    height: 100% !important;
}

.imagen-izquierda .property-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imagen-izquierda .property-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Contenido central */
.propiedades-contenido {
    position: relative;
    z-index: 1;
    padding-top: 8rem;
}

/* Imagen hero grande */
.property-hero {
    margin-bottom: 6rem;
    position: relative;
}

.property-hero .property-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

.property-hero .property-image:hover {
    transform: scale(1.01);
}

/* Contenedor de texto e imagen derecha */
.propiedades-texto-imagen {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1rem;
    align-items: start;
}

/* Texto descriptivo */
.propiedades-texto {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.property-text-block {
    margin-bottom: 4rem;
    max-width: 444px;
}

.property-heading {
    margin-bottom: 2rem;
}

.property-heading h3 {
    font-family: "Libre Bodoni";
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    line-height: 111%;
}

.property-heading .highlight {
    color: #b48c09;
    font-style: italic;
}

.property-description {
    font-family: "Libre Bodoni";
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    line-height: 111%;
}

.property-paragraph {
    margin-bottom: 3rem;
}

.property-paragraph p {
    font-family: "tt-commons-pro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 135%; /* 18.9px */
    color: #2D2924;
}

/* Separador visual */
.separator {
    display: flex;
    justify-content: center;
    margin: 4rem 0;
}

.separator-icon {
    height: auto;
    display: block;
    margin: 2rem auto;
    opacity: 0.8;
}