.propiedad-page{
padding:110px 0 60px;
}

.propiedad-header{
margin-bottom:25px;
padding:24px;
background:white;
border-radius:14px;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
display:flex;
justify-content:space-between;
align-items:flex-start;
gap:24px;
}

.propiedad-header h1{
margin:10px 0 0;
font-size:clamp(1.7rem,2.6vw,2.3rem);
font-weight:700;
color:var(--primary-color);
}

.precio{
color:var(--secondary-color);
font-size:clamp(1.8rem,2.8vw,2.4rem);
font-weight:700;
white-space:nowrap;
}

.ubicacion{
margin-top:10px;
color:#4b5563;
font-size:15px;
background:#f3f6fb;
display:inline-flex;
align-items:center;
gap:8px;
padding:8px 14px;
border-radius:30px;
}

.galeria{ margin-top:20px; }

.imagen-principal{
background:white;
border-radius:14px;
overflow:hidden;
box-shadow:0 8px 24px rgba(2,6,23,.08);
}

.imagen-principal img{
width:100%;
height:500px;
object-fit:cover;
display:block;
}

.imagen-placeholder{
min-height:340px;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:12px;
color:#6b7280;
}

.miniaturas{
display:flex;
gap:10px;
margin-top:12px;
flex-wrap:wrap;
}

.miniaturas img{
width:110px;
height:78px;
object-fit:cover;
border-radius:8px;
cursor:pointer;
opacity:.85;
border:2px solid transparent;
transition:.25s;
}

.miniaturas img:hover{
opacity:1;
border-color:var(--accent-color);
transform:translateY(-1px);
}

.propiedad-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:26px;
margin-top:30px;
}

.descripcion,
.ficha{
background:white;
padding:24px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.descripcion h2,
.ficha h3{
margin-top:0;
margin-bottom:14px;
color:var(--primary-color);
}

.descripcion p{ color:#374151; line-height:1.7; }

.ficha ul{ list-style:none; padding:0; margin:0; }
.ficha li{
padding:10px 0;
border-bottom:1px solid #edf2f7;
color:#374151;
display:flex;
gap:10px;
}
.ficha li i{ color:var(--accent-color); width:20px; }

.btn-whatsapp{
display:flex;
align-items:center;
justify-content:center;
gap:10px;
margin-top:20px;
background:#25D366;
color:white;
text-align:center;
padding:14px;
text-decoration:none;
border-radius:10px;
font-weight:700;
transition:.25s;
}

.btn-whatsapp:hover{
background:#1ebe5d;
transform:translateY(-1px);
}

.badge-operacion{
background:var(--secondary-color);
color:white;
padding:7px 14px;
border-radius:30px;
font-size:12px;
font-weight:700;
}

@media(max-width:980px){
.propiedad-grid{ grid-template-columns:1fr; }
.imagen-principal img{ height:360px; }
}

@media(max-width:700px){
.propiedad-page{ padding-top:95px; }
.propiedad-header{ flex-direction:column; }
.precio{ white-space:normal; }
.imagen-principal img{ height:260px; }
.miniaturas img{ width:88px; height:64px; }
}
