*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body{
  background:#f5f5f5;
}

/* HEADER */
.header{
  background:#fff;
  padding:15px 10%;
  border-bottom:1px solid #ddd;
}

/* GALERÍA */
.galeria{
  padding:20px 10%;
}

.galeria-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:10px;
}

.principal{
  position:relative;
}

.principal img{
  width:100%;
  height:350px;
  object-fit:cover;
  border-radius:10px;
}

.tag{
  position:absolute;
  top:10px;
  left:10px;
  background:#007bff;
  color:white;
  padding:5px 10px;
  border-radius:5px;
}

.secundarias{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.secundarias img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:10px;
}

.ver-mas{
  grid-column:span 2;
  background:#000;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  cursor:pointer;
}

/* CONTENIDO */
.contenedor{
  display:flex;
  gap:20px;
  padding:20px 10%;
}

/* IZQUIERDA */
.contenido{
  flex:2;
  background:white;
  padding:20px;
  border-radius:10px;
}

.ubicacion{
  color:#666;
  margin-bottom:15px;
}

.caracteristicas span{
  display:inline-block;
  margin-right:15px;
  margin-bottom:10px;
}

.descripcion{
  margin:20px 0;
  line-height:1.6;
}

/* UNIDADES */
.unidades{
  display:flex;
  gap:15px;
  margin-top:20px;
}

.unidad{
  background:#fafafa;
  padding:10px;
  border-radius:10px;
  width:30%;
}

.unidad img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:5px;
}

.unidad button{
  width:100%;
  background:#ff6a00;
  color:white;
  border:none;
  padding:8px;
  margin-top:10px;
}

/* SIDEBAR */
.sidebar{
  flex:1;
  background:white;
  padding:20px;
  border-radius:10px;
  height:fit-content;
}

.sidebar input,
.sidebar textarea{
  width:100%;
  padding:10px;
  margin-bottom:10px;
  border:1px solid #ccc;
}

.btn-contactar{
  width:100%;
  background:#ff6a00;
  color:white;
  padding:10px;
  border:none;
  margin-bottom:10px;
}

.btn-wsp{
  width:100%;
  background:#25D366;
  color:white;
  padding:10px;
  border:none;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contenedor{
    flex-direction:column;
  }

  .galeria-grid{
    grid-template-columns:1fr;
  }
}
.extra{
  background:white;
  margin:20px 10%;
  border-radius:12px;
  padding:25px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

/* BLOQUES */
.bloque{
  margin-bottom:20px;
}

.extra h2{
  font-size:22px;
  margin-bottom:10px;
}

.extra h3{
  font-size:18px;
  margin-bottom:15px;
}

.extra p{
  color:#444;
  line-height:1.6;
}

/* LINEAS */
hr{
  border:none;
  border-top:1px solid #eee;
  margin:20px 0;
}

/* FEATURES */
.features{
  display:flex;
  gap:40px;
  align-items:center;
  margin-bottom:10px;
}

.feature{
  display:flex;
  align-items:center;
  gap:8px;
  color:#333;
}

.feature span{
  font-size:20px;
}


/* DIRECCIÓN */
.direccion{
  margin-bottom:15px;
  color:#333;
}

/* MAPA */
.mapa iframe{
  width:100%;
  height:260px;
  border:none;
  border-radius:10px;
}

/* PREGUNTAS */
.preguntas{
  display:flex;
  align-items:center;
  border:1px solid #ddd;
  border-radius:10px;
  overflow:hidden;
}

.preguntas input{
  flex:1;
  border:none;
  padding:15px;
  font-size:14px;
  outline:none;
}

.preguntas button{
  background:#ff5a00;
  color:white;
  border:none;
  padding:15px 25px;
  cursor:pointer;
  font-weight:bold;
}