@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Montserrat-BlackItalic";
  src: url("Fonts/Montserrat-BlackItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Black";
  src: url("Fonts/Montserrat-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Thin";
  src: url("Fonts/Montserrat-Thin.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("Fonts/Montserrat-Bold.ttf") format("truetype");
}
:root {
  --white-color: #fff;
  --dark-color: #222;
  --body-bg-color: #fff;
  --section-bg-color: #202834;
  --navigation-item-hover-color: #3b5378;
  --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  --box-shadow: 0 5px 25px rgb(0 0 0 /20%);
  --scroll-bar-color: #fff;
  --scroll-thumb-color: #282f4e;
  --scroll-thumb-hover-color: #454f6b;
}

html {
  font-size: 20px; /* Tamaño de fuente base en píxeles */
}

header {
  z-index: 999;
  position: absolute;
  width: 100%;
  height: 6rem;
  justify-content: center;
}

#BtnWhatsapp {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 10;
  background: #59CE72;
  border-radius: 50%;
  width: 1px; /* Ancho inicial */
  height: 1px; /* Altura inicial */
  cursor: pointer;
  transition: width 1s, height 1s;
}

#BtnWhatsapp.expanded {
  width: 60px; /* Ancho al hacer scroll */
  height: 60px; /* Altura al hacer scroll */
}

#BtnWhatsapp a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none; /* Si deseas quitar el subrayado */
  opacity: 0; /* Inicialmente oculto */
  transition: opacity 0.5s; /* Transición suave para la opacidad */
}

#BtnWhatsapp.expanded a {
  opacity: 1; /* Mostrar el icono cuando se expande el contenedor */
}

#BtnWhatsapp a i {
  color: white;
  font-size: 2rem;
}

#BtnWhatsapp:hover {
  background: #215C54;
  transition: background 0.6s; /* Solo transición para el color de fondo */
}

.Encabezado {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  /* Puedes usar 'space-around' en lugar de 'space-between' si quieres un poco más de espacio */
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  padding-right: 48px;
}

.MenuEncabezado {
  position: relative;
  top: 0.4rem;
}

.mostrar-menu,
.ocultar-menu {
  font-size: 7.5rem;
  display: none;
}

.mostrar-menu {
  order: 1;
  color: rgba(0, 0, 0, 0.8);
  font-weight: bold;
}

.ocultar-menu {
  color: #ffffff;
  position: relative;
  top: 0px;
  font-weight: bold;
}

#check {
  display: none;
}

.LogoEncabezado {
  position: relative;
  top: 10px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.LogoEncabezado {
  position: relative;
  top: 10px;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.LogoEncabezado img {
  max-width: 100%;
  max-height: 100%;
}

nav {
  background-color: none;
}

nav ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

nav li {
  position: relative;
}

nav a {
  display: block;
  padding: 11px;
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  font-family: Arial, Helvetica, sans-serif;
}

nav a:hover,
nav a:focus {
  text-decoration: underline;
}

/* Estilos para la lista desplegable */
nav ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.452); /* Cambio de color de fondo a negro */
  color: white; /* Cambio de color de las letras a blanco */
  padding: 0;
  margin: 0;
  border: 1px solid none;
  z-index: 1;
  text-align: center;
}

nav ul ul li {
  width: 100%;
  border-top: 1px solid #cccccc;
}

nav ul li:hover > ul {
  display: inline-block;
}

.section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.home {
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ajusta la altura según tus necesidades */
}

.bg-slider {
  z-index: 777;
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.bg-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vh;
}

.bg-slider .swiper-slide img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.swiper-slide .text-content {
  position: absolute;
  top: 20%;
  color: #69292a;
  transition: 0.3s ease;
  line-height: 1;
}

#TextBox {
  position: absolute;
  z-index: 778;
  display: flex;
  flex-direction: column;
  bottom: 0;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 500;
  font-size: 0.9rem;
  text-shadow: var(--text-shadow);
  color: var(--white-color);
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--);
  line-height: normal;
  bottom: -100%;
  animation: slideIn 1.3s forwards;
}

#TextHome {
  max-width: 1280px;
}

@keyframes slideIn {
  to {
    bottom: 0; /* Desplaza el div hacia la posición deseada */
  }
}
#TextCenter {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}

#Title {
  font-size: 1.4rem;
  padding-top: 15px;
  padding-bottom: 5px;
}

.LeerMas-btn {
  position: relative;
  border: 1px solid black;
  outline: none;
  background: var(--white-color);
  color: black;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  cursor: pointer; /* Comienza con opacidad 0 para que no sea visible */
  transition: opacity 1s, transform 1s;
}

.LeerMas-btn i {
  font-size: 1.3rem;
  transition: 0.3s ease;
  position: relative;
  top: 1px;
}

.LeerMas-btn:hover {
  color: #fff;
  background-color: #000000;
}

.LeerMas-btn:hover i {
  transform: translateX(8px);
  color: #fff;
}

.Gallery {
  position: relative;
  top: -20px;
  max-width: 50%;
  max-height: 100%;
}

.container-img {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px;
  grid-gap: 15px;
}

.container-img .box-img figure {
  width: 100%;
  height: 100%;
}

.container-img .box-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container-img .box-img:nth-child(1) {
  grid-column-start: span 2;
}

.container-img .box-img:nth-child(4) {
  grid-row-start: span 2;
}

.hidden5 {
  display: none; /* Agrega posicionamiento relativo al contenedor */
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  background-color: #0d1e00;
  min-height: -moz-fit-content;
  min-height: fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: hidden;
}

.hidden5 img {
  opacity: 0.65;
  width: 100%;
  height: auto;
  max-height: 1000px;
}

.Textohidden5 {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1280px; /* Ajusta el ancho máximo según tus necesidades */
  margin: 0 auto;
  gap: 15px;
  /* Agrega margen automático para centrar horizontalmente */
}

.Textohidden5 h1 {
  font-family: "Montserrat-Bold";
  font-size: 2rem; /* Agrega margen automático para centrar horizontalmente */
}

.Textohidden5 .ListaFAQ {
  border: none;
  outline: none;
  background: whitesmoke;
  color: var(--section-bg-color);
  padding: 8px 25px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  position: relative;
  top: 10px;
  margin-top: 10px;
}

.Textohidden5 .ListaFAQ .QBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Textohidden5 .ListaFAQ .QBtn h2, .Textohidden5 .ListaFAQ .QBtn h3, .Textohidden4 .ListaFAQ .QBtn h4, .Textohidden4 .ListaFAQ .QBtn h5, .Textohidden4 .ListaFAQ .QBtn h6 {
  text-align: left;
  font-size: 1.2rem;
  color: black;
  font-family: Arial, "Helvetica", sans-serif;
  position: relative;
  bottom: 10px;
}

.Textohidden5 .ListaFAQ .QBtn i {
  font-size: 1.2rem;
  color: black;
}

.DesplegarFAQ {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

.hiddens {
  display: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}

.visible {
  display: block;
  opacity: 1;
}

#hiddenFAQ5, #hiddenFAQ4, #hiddenFAQ3, #hiddenFAQ2, #hiddenFAQ1 {
  margin-top: 10px;
  margin-bottom: 5px;
  border-radius: 10px;
  position: relative;
  text-align: left;
  background-color: var(--dark-color);
  font-size: 1rem;
  font-family: Arial, "Helvetica", sans-serif;
  padding: 10px;
  color: var(--white-color);
}

#HFAQText {
  color: var(--white-color);
}

#ContainerAlojamientoB {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ContainerBtnReserva {
  display: flex;
  justify-content: center;
  max-width: 1280px; /* Ajusta el ancho máximo según tus necesidades */
  margin: 0 auto;
  text-decoration: none;
  position: relative;
  margin-top: 10px; /* Agrega margen automático para centrar horizontalmente */
}

#BirdIcon {
  height: 80px;
  padding-top: 15px;
  padding-bottom: 15px;
}

#AegleIcon {
  height: 80px;
  padding-top: 15px;
  padding-bottom: 15px;
}

#BeardIcon {
  height: 80px;
}

#HotelIcon {
  height: 90px;
}

#ListIcon {
  height: 90px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.Reserva-btn {
  border: none;
  outline: none;
  background: var(--white-color);
  color: var(--dark-color);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 25px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  top: 10px;
}

.Reserva-btn:hover {
  background-color: #000000;
  color: #fff;
}

footer {
  /* Estilos para el footer en general */
  background-color: #157139;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

#CenterFooter {
  padding-top: 60px;
  padding-left: 10px;
  padding-right: 10px;
  max-width: 1280px;
  display: flex;
  gap: 5%;
  line-height: 0.9rem;
}

#CenterFooter h7 { /* Eliminar márgenes por defecto */
  font-size: 1.2rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, "Helvetica", sans-serif;
  font-weight: bold;
  text-decoration: none;
}

#CenterFooter h7 a, #CenterFooter p a { /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #000000;
}

#CenterFooter h7 a:hover, #CenterFooter p a:hover { /* Eliminar márgenes por defecto */
  text-decoration: none;
  color: #ffffff;
}

#CenterFooter h8 { /* Eliminar márgenes por defecto */
  font-size: 0.8rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, "Helvetica", sans-serif;
}

#TextHF { /* Eliminar márgenes por defecto */
  font-size: 0.9rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, "Helvetica", sans-serif;
}

.HoursFooter {
  text-align: left;
  min-width: 30%;
}

.ContactFooter {
  text-align: left;
  min-width: 20%;
}

#Copyright { /* Eliminar márgenes por defecto */
  font-size: 0.7rem; /* Tamaño de fuente deseado */
  color: #000000; /* Color de texto deseado */
  font-family: Arial, "Helvetica", sans-serif;
  margin-top: 35px;
  margin-bottom: 10px;
}

@media (max-width: 1023px) {
  html {
    font-size: 20px;
  }
  #BtnWhatsapp {
    z-index: 2;
    right: 10px;
    bottom: 10px;
  }
  #BtnWhatsapp.expanded {
    width: 50px; /* Ancho al hacer scroll */
    height: 50px; /* Altura al hacer scroll */
  }
  #BtnWhatsapp a i {
    font-size: 1.5rem;
  }
  .home {
    justify-content: center;
    align-items: center;
    height: 40vh; /* Ajusta la altura según tus necesidades */
  }
  .bg-slider {
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 40vh;
  }
  .bg-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 40vh;
  }
  .bg-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #TextBox {
    position: relative;
    z-index: 1;
    display: flex;
    background: white;
    text-align: left;
    padding-left: 5px;
    padding-right: 5px;
    justify-content: left;
    align-items: left;
    left: -100%;
    animation: slideIn 1.2s forwards;
  }
  @keyframes slideIn {
    to {
      left: 0; /* Desplaza el div hacia la posición deseada */
    }
  }
  #Title {
    font-size: 1.8rem;
    color: #157139;
    text-align: left;
    font-family: "Montserrat-Bold";
    line-height: 1.5rem;
    position: relative;
    display: flex;
    top: 0;
  }
  #TextCenter {
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: left;
    align-items: normal;
    display: flex;
    flex-direction: column;
  }
  .LeerMas-btn {
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 0.9rem;
  }
  .LeerMas-btn i {
    font-size: 1.5rem;
    transition: 0.3s ease;
    position: relative;
    top: 0px;
  }
  #TextHome {
    color: black;
    line-height: 1.4rem;
    font-size: 0.9rem;
  }
  .hidden5 {
    display: none; /* Agrega posicionamiento relativo al contenedor */
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    background-color: #0d1e00;
    max-height: -moz-max-content;
    max-height: max-content;
    min-height: 100vh;
  }
  .Textohidden5 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px; /* Ajusta el ancho máximo según tus necesidades */
    margin: 0 auto;
    gap: 15px;
    padding-bottom: 25px;
    padding-top: 10px; /* Agrega margen automático para centrar horizontalmente */
  }
  .Textohidden5 h1 {
    font-size: 1.8rem;
  }
  .hidden5 img {
    display: none;
  }
  #ContainerAlojamientoB {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer {
    /* Estilos para el footer en general */
    background-color: #157139;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  #CenterFooter {
    padding-top: 0px;
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 5%;
    align-content: center;
    justify-content: center;
    margin-left: 5px;
    margin-right: 5px;
    flex-direction: column;
    line-height: 0.9rem;
  }
  #FirstDiv {
    order: 2; /* Cambia el orden para que aparezca después */
  }
  #SecondDiv {
    order: 1;
    margin-top: 10px; /* Cambia el orden para que aparezca antes */
  }
  #ThirdDiv {
    order: 3; /* Cambia el orden para que aparezca antes */
  }
  #CenterFooter h7 { /* Eliminar márgenes por defecto */
    font-size: 0.9rem; /* Tamaño de fuente deseado */
    color: #000000; /* Color de texto deseado */
    font-family: Arial, "Helvetica", sans-serif;
    font-weight: bold;
    text-decoration: none;
  }
  #CenterFooter h7 a, #CenterFooter p a { /* Eliminar márgenes por defecto */
    text-decoration: none;
    color: #000000;
  }
  #CenterFooter h7 a:hover, #CenterFooter p a:hover { /* Eliminar márgenes por defecto */
    text-decoration: none;
    color: #ffffff;
    text-align: center;
  }
  footer #CenterFooter h8 { /* Eliminar márgenes por defecto */
    font-size: 0.6rem; /* Tamaño de fuente deseado */
    color: #000000; /* Color de texto deseado */
    font-family: Arial, "Helvetica", sans-serif;
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }
  #TextHF { /* Eliminar márgenes por defecto */
    font-size: 0.8rem; /* Tamaño de fuente deseado */
    color: #000000; /* Color de texto deseado */
    font-family: Arial, "Helvetica", sans-serif;
    text-align: center;
  }
  .HoursFooter {
    text-align: center;
    min-width: 40%;
  }
  .ContactFooter {
    text-align: center;
    min-width: 50%;
  }
  #Copyright { /* Eliminar márgenes por defecto */
    font-size: 0.5rem; /* Tamaño de fuente deseado */
    color: #000000; /* Color de texto deseado */
    font-family: Arial, "Helvetica", sans-serif;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .TextoSectionParallax1 {
    z-index: 0;
  }
  header {
    min-height: 35vh;
    position: absolute;
  }
  .mostrar-menu,
  .ocultar-menu {
    display: block;
    font-size: 5rem;
  }
  .mostrar-menu {
    position: relative;
    top: -10px;
  }
  .ocultar-menu {
    position: absolute;
    top: -24px;
    right: 10px;
  }
  .menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    right: -100%;
    top: 0;
    text-align: center;
    padding: 60px 0px;
    z-index: 999;
    transition: 0.8s;
  }
  nav a {
    color: rgb(255, 255, 255);
  }
  nav ul {
    flex-direction: column;
  }
  nav ul ul {
    position: static;
    display: none;
    margin-top: 5px;
  }
  nav ul ul li {
    border-top: none;
    background-color: rgba(0, 0, 0, 0.4);
    color: rgb(143, 143, 143);
  }
  nav a:hover {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
  }
  /* Estilos para mostrar/ocultar el menú desplegable */
  #check:checked ~ .menu {
    right: 0;
    align-items: center;
  }
  .icono-idioma {
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url("IdiomaBlanco.png");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .menu a {
    font-size: 1.5rem;
  }
  .Encabezado {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    -o-object-position: center;
       object-position: center;
    height: 75px;
    padding-left: 10px;
    padding-right: 10px;
    max-width: 100vw;
  }
  .LogoEncabezado {
    position: relative;
    top: 0px;
    right: -3px;
    height: 230px;
    width: 127px;
  }
}
@media (max-height: 425px) {
  html {
    font-size: 16px;
  }
  .menu a {
    font-size: 1rem;
  }
  .icono-idioma {
    width: 1rem;
    height: 1rem;
  }
  .ocultar-menu {
    position: absolute;
    top: -14px;
    right: 4px;
  }
}/*# sourceMappingURL=Alojamiento.css.map */