
*{
	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;
}
.enlaces-menu{
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.enlaces-menu a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
}
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.menu img{
    height: 60px;
}

.logo{
    width: 100px;
    height: 100px;
}

/* contenedor del menú */
.enlaces-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap; /* evita que se bajen */
}

.enlaces-menu li{
    white-space: nowrap; /* evita saltos */
}

.enlaces-menu a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.enlaces-menu a:hover{
    color: #b48b5e;
}

.menu ul li{
    white-space: nowrap; /* evita que las palabras se separen */
}


.enlaces-menu{
    list-style: none;      /* quita los puntos */
    display: flex;         /* pone los elementos en fila */
    gap: 30px;             /* espacio entre botones */
    margin: 0;
    padding: 0;
}

.enlaces-menu li{
    display: inline;
}

.enlaces-menu a{
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.enlaces-menu a:hover{
    color: #b48b5e; /* color elegante tipo hotel */
}


.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;
}

.contenedor{
	display:flex;
	justify-content:center;
	align-items:center;
	height:100vh;
}

.texto-hotel p{
	margin-bottom:25px;
}

/* HABITACIONES */

/* SECCIONES GENERALES */
.seccion-hotel{
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
}

.fondo-claro{
    background: #f8f5f0;
}

.titulo-seccion{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.titulo-seccion span{
    display: inline-block;
    color: #b48b5e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.titulo-seccion h2{
    font-size: 40px;
    color: #222;
    margin-bottom: 15px;
}

.titulo-seccion p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* CARDS */
.contenedor-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.card-hotel{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hotel:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-hotel img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.card-contenido{
    padding: 25px;
}

.card-contenido h3{
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
	text-align: center;
}

.card-contenido p{
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-card{
    display: inline-block;
    padding: 12px 24px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-card:hover{
    background: #8f6a42;
}

/* SECCIÓN DOBLE */
.contenedor-doble{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.imagen-doble img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.texto-doble h3{
    font-size: 34px;
    color: #222;
    margin-bottom: 20px;
}

.texto-doble p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
}

.btn-principal{
    display: inline-block;
    padding: 14px 28px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-principal:hover{
    background: #b48b5e;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .contenedor-cards{
        grid-template-columns: repeat(2, 1fr);
    }

    .contenedor-doble{
        grid-template-columns: 1fr;
    }

    .titulo-seccion h2{
        font-size: 32px;
    }
}

@media (max-width: 768px){
    .contenedor-cards{
        grid-template-columns: 1fr;
    }

    .seccion-hotel{
        padding: 60px 6%;
    }

    .titulo-seccion h2{
        font-size: 28px;
    }

    .texto-doble h3{
        font-size: 28px;
    }

    .card-hotel img{
        height: 220px;
    }
}
/* seleccion contacto */
body{
	margin:0;
	font-family:Arial,Helvetica,sans-serif;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #000000;
    margin: 0;
    padding-top: 110px;
}

img{
    max-width: 100%;
    display: block;
}

/* MENÚ */
.menu{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    z-index: 1000;
}

.logo{
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.enlaces-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.enlaces-menu li{
    list-style: none;
}

.enlaces-menu a{
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.enlaces-menu a:hover{
    color: #b48b5e;
}

.redes{
    display: flex;
    gap: 12px;
    align-items: center;
}

.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 / SLIDER */
.hero{
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.slide{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.hero-content{
    position: relative;
    z-index: 2;
}

.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 18px;
    cursor: pointer;
    z-index: 3;
}

.prev{
    left: 20px;
}

.next{
    right: 20px;
}

/* CONTENIDO GENERAL */
.contenedor-principal{
    width: 100%;
}

.sobre-hotel{
    background: #f5f5f5;
    text-align: center;
    padding: 80px 20px;
}

.titulo-hotel{
    font-size: 60px;
    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: 16px;
    text-align: justify;
}

.texto-hotel p{
    margin-bottom: 25px;
    font-size: 16px;
}

/* SECCIONES */
.seccion-hotel{
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
}

.fondo-claro{
    background: #f8f5f0;
}

.titulo-seccion{
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.titulo-seccion span{
    display: inline-block;
    color: #b48b5e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.titulo-seccion h2{
    font-size: 40px;
    color: #222;
    margin-bottom: 15px;
}

.titulo-seccion p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* CARDS */
.contenedor-cards{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card-hotel{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hotel:hover{
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-hotel img{
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-contenido{
    padding: 25px;
}

.card-contenido h3{
    font-size: 24px;
    color: #222;
    margin-bottom: 12px;
    text-align: center;
}

.card-contenido p{
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.btn-card{
    display: inline-block;
    padding: 12px 24px;
    background: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-card:hover{
    background: #8f6a42;
}

/* SECCIÓN DOBLE */
.contenedor-doble{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.imagen-doble img{
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.texto-doble h3{
    font-size: 34px;
    color: #222;
    margin-bottom: 20px;
}

.texto-doble p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
}

.btn-principal{
    display: inline-block;
    padding: 14px 28px;
    background: #222;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 600;
}

.btn-principal:hover{
    background: #b48b5e;
}

/* FOOTER */
.footer{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)), url("../img/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;
    font-size: 15px;
}

.footer ul{
    list-style: none;
    padding: 0;
}

.footer ul li{
    margin: 8px 0;
    color: #ddd;
    cursor: pointer;
}

.footer ul li:hover{
    color: #ffffff;
}

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;
}

/* BOTÓN 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;
    z-index: 1000;
}

.whatsapp-btn:hover{
    transform: scale(1.1);
    background: #20ba5a;
}

/* RESPONSIVE */
@media (max-width: 992px){
    .menu{
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .enlaces-menu{
        flex-wrap: wrap;
        justify-content: center;
    }

    .contenedor-cards{
        grid-template-columns: repeat(2, 1fr);
    }

    .contenedor-doble{
        grid-template-columns: 1fr;
    }

    .titulo-seccion h2{
        font-size: 32px;
    }

    body{
        padding-top: 180px;
    }
}

@media (max-width: 768px){
    .contenedor-cards{
        grid-template-columns: 1fr;
    }

    .seccion-hotel{
        padding: 60px 6%;
    }

    .titulo-hotel{
        font-size: 42px;
    }

    .subtitulo-hotel{
        font-size: 22px;
    }

    .titulo-seccion h2{
        font-size: 28px;
    }

    .texto-doble h3{
        font-size: 28px;
    }

    .card-hotel img{
        height: 220px;
    }

    body{
        padding-top: 220px;
    }
}

.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;
}
/* ===== DISEÑO PARA CELULARES ===== */

@media (max-width:768px){

.logo img{
width:120px;
}

.header{
flex-direction:column;
}

.redes{
margin-top:10px;
}

}