/* =========================================
   DISEÑO PÁGINA DE PROPIEDAD - ESTILO PREMIUM
========================================= */

.contenedor-principal { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 30px 20px; 
}

header .logo {
    display: flex; /* Activa Flexbox para alinear elementos lado a lado */
    align-items: center; /* Centra verticalmente la imagen y el texto */
    gap: 15px; /* Espacio de separación entre el logo y el texto */
    font-size: 24px;
    font-weight: bold;
    color: #008080; 
    text-decoration: none;
    float: left; /* Mantengo esto por si lo estabas usando para posicionar el menú */
}

/* Controlamos el tamaño de la imagen para que no deforme el menú */
header .logo-img {
    height: 50px; /* Ajusta este valor para hacer el logo más grande o pequeño */
    width: auto; /* Mantiene la proporción de la imagen intacta */
    object-fit: contain;
}

/* CORRECCIÓN: Reseteo forzado para evitar herencia del header global */
header.propiedad-header { 
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    z-index: auto !important;
    margin-bottom: 25px; 
}

.propiedad-header h1 { font-size: 2.5rem; color: #333; margin-bottom: 5px; }
.propiedad-header .ubicacion { font-size: 1.1rem; color: #666; }

/* Configuración del Carrusel */
.carrusel-contenedor {
    margin-bottom: 40px;
}

.miCarrusel {
    width: 100%;
    height: 550px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Estilo de los botones del carrusel */
.swiper-button-next, .swiper-button-prev {
    color: white !important;
    background: rgba(0,0,0,0.4);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 20px !important; }

/* Grid de contenido */
.contenido-doble-columna {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 50px;
    align-items: start;
}

.detalles-propiedad h2, .detalles-propiedad h3 { color: #333; margin: 30px 0 15px 0; }
.detalles-propiedad p { color: #555; line-height: 1.7; font-size: 1.05rem; }

/* Características */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.feature-card { 
    padding: 15px; 
    background: #f8f9fa; 
    border-radius: 8px; 
    text-align: center; 
    font-weight: 500;
    color: #444;
}

/* Tarjeta Lateral Sticky */
.sticky-sidebar { position: static; top: 30px; }
.tarjeta-reserva {
    background: #fff;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.precio-usd { font-size: 2.2rem; font-weight: bold; color: #333; margin: 0; }
.precio-cop { font-size: 1.1rem; color: #888; margin: 5px 0 20px 0; }
.tarjeta-reserva hr { border: 0; border-top: 1px solid #eee; margin: 20px 0; }
.info-asesor { text-align: center; margin-bottom: 15px; color: #555; }
.btn-contacto { display: block; text-align: center; width: 100%; box-sizing: border-box; padding: 15px; }

@media (max-width: 900px) {
    .contenido-doble-columna { grid-template-columns: 1fr; }
    .miCarrusel { height: 350px; }
    .features-grid { grid-template-columns: 1fr; }
}