body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f4f4;
color:#333;
}

.hero{
  position: relative;
  height: 68vh;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  background: #000;
}

.hero-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(0.92);
}

.hero-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.32);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: white;
  width: 80%;
  max-width: 800px;
}

.hero h1{
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p{
  font-size: 20px;
  margin-bottom: 20px;
}

.btn{
  background: #2e7d32;
  color: white;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

.btn:hover{
  background: #1b5e20;
}

section{
max-width:1000px;
margin:auto;
padding:40px 20px;
background:white;
margin-top:20px;
border-radius:10px;
}

h2{
color:#2e7d32;
margin-bottom:15px;
}

.servicios-grid{
display:flex;
gap:40px;
flex-wrap:wrap;
}

.servicios-grid ul{
list-style:none;
padding:0;
}

.servicios-grid li{
padding:6px 0;
border-bottom:1px solid #eee;
}

.precios{
text-align:center;
}

.precio-box{
background:#f7f7f7;
padding:20px;
margin:10px;
border-radius:10px;
display:inline-block;
min-width:200px;
}

.precio{
font-size:24px;
font-weight:bold;
color:#2e7d32;
}

.capacidad{
margin-top:15px;
font-weight:bold;
}

.ubicacion ul{
margin-top:10px;
}

.reservar{
text-align:center;
}

.btn-reservar{
background:#25D366;
color:white;
padding:16px 30px;
border-radius:10px;
font-size:18px;
text-decoration:none;
}

.btn-reservar:hover{
background:#1ebe5d;
}

footer{
background:#2e7d32;
color:white;
text-align:center;
padding:20px;
margin-top:30px;
}

.whatsapp-float{
position:fixed;
width:60px;
height:60px;
bottom:25px;
right:25px;
background:#25D366;
color:white;
border-radius:50%;
text-align:center;
font-size:30px;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:2px 2px 10px rgba(0,0,0,0.3);
z-index:100;
}

.whatsapp-float:hover{
background:#1ebe5d;
}
.galeria-airbnb{
max-width:1200px;
margin:40px auto;
padding:20px;
}

.galeria-airbnb h2{
margin-bottom:20px;
font-size:32px;
}

.galeria-principal-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
grid-template-rows:250px 250px;
gap:10px;
}

.foto-principal{
grid-row:1/3;
grid-column:1/2;
width:100%;
height:100%;
object-fit:cover;
border-radius:15px;
}

.galeria-principal-grid img{
width:100%;
height:100%;
object-fit:cover;
border-radius:15px;
}

.galeria-completa{
max-width:1200px;
margin:40px auto;
padding:20px;
}

.galeria-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;
}

.galeria-grid img{
width:100%;
height:220px;
object-fit:cover;
border-radius:15px;
transition:0.3s;
}

.galeria-grid img:hover{
transform:scale(1.05);
}
.lightbox{
display:none;
position:fixed;
z-index:999;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
}

.lightbox-contenido{
display:block;
margin:auto;
max-width:90%;
max-height:85vh;
margin-top:5%;
border-radius:12px;
}

.cerrar{
position:absolute;
top:20px;
right:40px;
color:white;
font-size:40px;
cursor:pointer;
}

.galeria-img{
cursor:pointer;
}
.flecha{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
padding:10px;
user-select:none;
}

.izquierda{
left:30px;
}

.derecha{
right:30px;
}

.flecha:hover{
color:#ddd;
}
.amenidades{
max-width:1200px;
margin:40px auto;
padding:20px;
background:white;
border-radius:16px;
}

.amenidades h2{
font-size:32px;
margin-bottom:20px;
color:#1f1f1f;
}

/* grid de amenidades */

.amenidades-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
}

/* tarjeta de amenidad */

.amenidad{
display:flex;
align-items:flex-start;
gap:14px;
background:#f8f8f8;
padding:16px;
border-radius:12px;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
}

/* icono */

.icono{
font-size:26px;
line-height:1;
flex-shrink:0;
margin-top:2px;
}

/* titulo */

.amenidad h3{
margin:0 0 6px 0;
color:#2e7d32;
font-size:18px;
}

/* texto */

.amenidad p{
margin:0;
font-size:15px;
color:#555;
line-height:1.5;
}

/* responsive */

@media (max-width:768px){

.amenidades-grid{
grid-template-columns:1fr;
}

}
.ubicacion-mapa{
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.ubicacion-texto h2{
  font-size: 32px;
  margin-bottom: 16px;
  color: #1f1f1f;
}

.ubicacion-intro{
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 17px;
}

.lugares-cercanos{
  background: #f8f8f8;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 20px;
}

.lugares-cercanos h3{
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #2e7d32;
}

.lugares-cercanos ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.lugares-cercanos li{
  padding: 8px 0;
  border-bottom: 1px solid #e9e9e9;
  color: #444;
  position: relative;
  padding-left: 18px;
}

.lugares-cercanos li:last-child{
  border-bottom: none;
}

.lugares-cercanos li::before{
  content: "•";
  color: #2e7d32;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.mapa{
  min-height: 360px;
  overflow: hidden;
  border-radius: 16px;
}

.mapa iframe{
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 900px){
  .ubicacion-mapa{
    grid-template-columns: 1fr;
  }
}
.lugares-cercanos{
margin-bottom:25px;
}

.lugares-cercanos h3{
margin-bottom:14px;
color:#2e7d32;
font-size:20px;
}

.lugares-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:12px;
}

.lugar{
display:flex;
align-items:center;
gap:10px;
background:#f7f7f7;
padding:12px 14px;
border-radius:10px;
font-size:15px;
}

.icono-lugar{
font-size:18px;
}
.capacidad{
max-width:1200px;
margin:20px auto;
padding:0 20px;
}

.detalle-camas{
margin-top:10px;
}

.cama{
font-size:14px;
color:#555;
margin-bottom:4px;
}