/* Sección arquitectura */
.architecture-section {
    margin-bottom: 4rem;
    max-width: 328px;
}

.architecture-title {
    font-family: "Libre Bodoni";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    text-align: center;
    margin-bottom: 20px;
    color: #2D2924;
}

.architecture-title .highlight {
    color: #B48C09;
    font-style: italic;
}

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

/* Imagen footer */
.property-footer-image {
    margin-top: 0rem;
    width: 100%;
    padding-bottom: 33rem;
}

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

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

/* Imagen derecha sticky */
.imagen-derecha {
    z-index: 2;
    align-self: start;
}

.imagen-derecha .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-derecha .property-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .propiedades-container {
        padding: 0 3rem;
        gap: 3rem;
    }
    
    .property-heading h3 {
        font-size: 2.4rem;
    }
    
    .architecture-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .propiedades-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .propiedades-texto-imagen {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .imagen-izquierda,
    .imagen-derecha {
        position: relative;
        top: auto;
    }
    
    .imagen-izquierda .property-image,
    .imagen-derecha .property-image {
        height: 300px;
    }
    
    .property-hero .property-image {
        height: 450px;
    }
    
    .property-heading h3 {
        font-size: 2.2rem;
    }
    
    .architecture-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-propiedades {
        padding: 4rem 0;
    }
    
    .propiedades-container {
        padding: 0 1.5rem;
    }
    
    .property-hero {
        margin-bottom: 4rem;
    }
    
    .property-hero .property-image {
        height: 350px;
        border-radius: 20px;
    }
    
    .property-heading h3 {
        font-size: 1.8rem;
    }
    
    .property-description {
        font-size: 1.1rem;
    }
    
    .property-paragraph p {
        font-size: 1rem;
    }
    
    .architecture-title {
        font-size: 1.8rem;
    }
    
    .architecture-description {
        font-size: 1rem;
    }
    
    .separator {
        margin: 3rem 0;
    }
    
    .separator-icon {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .section-propiedades {
        padding: 3rem 0;
    }
    
    .propiedades-container {
        padding: 0 1rem;
    }
    
    .property-hero .property-image {
        height: 280px;
        border-radius: 15px;
    }
    
    .property-footer-image .property-image {
        height: 350px;
        border-radius: 20px;
    }
    
    .imagen-izquierda .property-image,
    .imagen-derecha .property-image {
        height: 250px;
        border-radius: 15px;
    }
    
    .property-heading h3 {
        font-size: 1.6rem;
    }
    
    .architecture-title {
        font-size: 1.6rem;
    }
    
    .property-text-block {
        margin-bottom: 3rem;
    }
    
    .architecture-section {
        margin-bottom: 3rem;
    }
}