html
*{
margin:0;
padding:0;
box-sizing:border-box;
font-size: 20pt;
text-align: justify;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body{
background:#ffffff;
color:#000000;
}
.menu{
position:fixed;
top:0;
left:0;
width:100%;
background:#f5f5f5;
display:flex;
align-items:center;
justify-content:space-between;
padding:10px 40px;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
z-index:1000;
}

.menu ul{
display:flex;
list-style:none;
gap:30px;
margin:0;
padding:0;
}

.menu a{
text-decoration:none;
color:#333;
font-weight:500;
}

.menu img{
height:60px;
}
.logo{
    width: 120px;
    height: 120px;
}

/* HEADER */
header{
display:flex;
align-items:center;
padding:15px 60px;
background:white;
position:relative;
}

nav{
position:absolute;
left:50%;
transform:translateX(-50%);
}
nav a{
margin:0 10px;
text-decoration:none;
color:#3d3d3d;
font-size:18px;
}
nav a{
    position: relative;
    text-decoration: none;
    color: #2c3e50;
    margin: 0 10px;
}

nav a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background-color: #c59d5f;
    transition: 0.3s;
}

nav a:hover::after{
    width: 100%;
}
.redes a{
width:40px;
height:40px;
background:#272727;
color:white;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:18px;
text-decoration:none;
transition:0.3s;
}

.redes a:hover{
background:#4b371c;
transform:scale(1.1);
}

/* HERO */

.hero{
position:relative;
height:90vh;
overflow:hidden;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:rgb(0, 0, 0);

}

.slide{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
display:none;
}

.hero-content{
position:relative;
z-index:2;
}

/* BOTONES */

.prev, .next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.5);
color:white;
border:none;
font-size:30px;
padding:10px 20px;
cursor:pointer;
z-index:3;
}

.prev{
left:20px;
}

.next{
right:20px;
}

/* ANIMACIONES */

@keyframes fadeIn{
from{opacity:0;transform:translateY(20px);}
to{opacity:1;transform:translateY(0);}
}
.redes{
display:flex;
gap:15px;
align-items:center;
}

.sobre-hotel{
    background:#f5f5f5;
    text-align:center;
    padding:80px 20px;
}

.titulo-hotel{
    font-size:60px;
    font-family:'Playfair Display', serif;
    color:#6b4b2a;
    margin-bottom:5px;
    text-align: center;
}

.subtitulo-hotel{
    font-size:28px;
    letter-spacing:3px;
    color:#8a6d3b;
    margin-bottom:40px;
    text-align: center;
}

.texto-hotel{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    color:#000000;
    font-size: medium;
    text-align: justify center;
}
p {
  font-size: 16px; /* Tamaño fijo en píxeles */
 
}
.contenedor {
  display: flex;
  justify-content: center; /* Horizontal */
  align-items: center;     /* Vertical */
  height: 100vh;           /* Altura opcional (viewport height) */
}
.texto-hotel p{
    margin-bottom:25px;
}

/* HABITACIONES */

.habitaciones{
padding:60px;
text-align:center;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

.card{
background:rgb(210, 210, 210);
border-radius:10px;
overflow:hidden;
box-shadow:0 10px 20px rgba(110, 163, 29, 0.1);
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card img{
width:100%;
height:200px;
object-fit:cover;
}

.card h3{
margin:10px;
}
.card h4{
margin:10px;
}
.card p{
margin:10px;
}

.btn{
background:#ffffff;
color:rgb(0, 0, 0);
padding:10px 20px;
border:none;
border-radius:5px;
cursor:pointer;
margin:10px;
}
body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
}

.footer{
background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)),
url("bosque.jpg");
background-size:cover;
background-position:center;
color:white;
padding:60px 10%;
}

.footer-container{
display:flex;
flex-wrap:wrap;
gap:60px;
}

.footer-col{
flex:1;
min-width:250px;
}

.footer h3{
font-size:16px;
margin-top:20px;
}

.footer p{
color:#ddd;
line-height:1.6;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin:8px 0;
color:#ddd;
cursor:pointer;
}

.footer ul li:hover{
color:#000000;
}

/* FORM */

form input{
width:100%;
padding:12px;
margin-bottom:10px;
border:none;
background:#e5e5e5;
}

form button{
width:100%;
padding:14px;
background:#000000;
border:none;
color:white;
font-weight:bold;
cursor:pointer;
}

form button:hover{
background:#6f8820;
}

.links{
margin-top:20px;
font-size:14px;
color:#ccc;
}


/* BOTON WHATSAPP */

.whatsapp-btn{
position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:white;
font-size:28px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:0.3s;
}

.whatsapp-btn:hover{
transform:scale(1.1);
background:#20ba5a;
}
