@charset "UTF-8";
@font-face {
  font-family: "Fineliner Script";
  src: url("./static/fuentes/Fineliner_Script.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Borgen";
  src: url("./static/fuentes/Borgen.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FangSong";
  src: url("./static/fuentes/simfang.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  font-family: "Borgen";
  font-weight: 400;
}

h2 {
  color: rgb(0, 1, 1);
  font-size: 2.9rem;
  padding: 0.5rem;
  font-family: "Fineliner Script";
  font-weight: 400;
  font-style: normal;
}

h3 {
  color: rgb(138, 124, 95);
  font-size: 2rem;
  font-weight: 300;
  padding: 0.5rem;
  font-family: "Fineliner Script";
  font-weight: 400;
  font-style: normal;
}

h4 {
  color: rgb(138, 124, 95);
  font-weight: 200;
  font-size: 20px;
  font-family: "Fineliner Script";
  font-weight: 400;
  font-style: normal;
}

h5 {
  font-family: "Fineliner Script";
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
    text-align: center;
  }
  h3 {
    font-size: 1.5rem;
    font-weight: 300;
    padding: 0.5rem;
    text-align: center;
  }
  h4 {
    text-align: center;
  }
}
html {
  scroll-behavior: smooth;
}

.header_main {
  width: 100%;
  height: 6rem;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-style: normal;
  z-index: 100;
}
.header_main .hamburger_button {
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  height: 100%;
  padding: 0 1rem;
  font-size: 2rem;
  background-color: transparent;
}
.header_main .hamburger_button p {
  font-size: 20px;
}
.header_main .hamburger_button:hover {
  color: rgb(0, 1, 1);
}
.header_main .menu_top_center {
  position: absolute;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translateX(-50%);
}
.header_main .menu_top_right {
  height: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.header_main .menu_top_right li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1px;
}
.header_main .menu_top_right li a {
  text-align: center;
  display: flex;
  flex-direction: row;
  border: solid 1px white;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  padding: 0 1rem;
  background-color: transparent;
}
.header_main .menu_top_right li a p {
  color: #fff;
  margin: 0.25rem;
}
@media screen and (max-width: 765px) {
  .header_main .menu_top_right li a {
    display: none;
  }
}
.header_main .menu_top_right li a:hover {
  background-color: rgba(255, 255, 255, 0.479);
}

.imagen_logo {
  width: 10rem;
}

.header_scroll {
  background-color: rgb(138, 124, 95);
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  z-index: 90;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s ease;
}
.header_scroll .hamburger_button {
  border: none;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
  height: 100%;
  padding: 0 1rem;
  font-size: 2rem;
}
.header_scroll .menu_top_center {
  position: absolute;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.header_scroll .menu_top_right {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.header_scroll .menu_top_right li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 1px;
}
.header_scroll .menu_top_right li a {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  background-color: transparent;
  padding: 0 1rem;
}
.header_scroll .menu_top_right li a p {
  color: #fff;
  margin: 0.25rem;
}

.header_scroll.active {
  opacity: 1;
  transform: translateY(0);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

@media screen and (max-width: 820px) {
  .nav_only_pc {
    display: none !important;
  }
  .nav_only_mobile {
    display: flex !important;
  }
  .header_main {
    padding: 0.25rem;
  }
  .header_scroll {
    padding: 0.8rem;
  }
  .menu_top_right ul li {
    padding: 0;
  }
}
@media screen and (min-width: 821px) {
  .nav_only_mobile {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .nav_only_mobile {
    display: none !important;
  }
  .hamburger_button {
    top: 1rem;
    left: 1rem;
  }
  .menu_left {
    width: 100vw;
    height: 110vh;
    gap: 6rem;
  }
}
.footer_main {
  position: relative;
  background-image: url("./static/img/seccion-16/fondo-piscina.png");
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  color: white; /* Para que el texto sea visible */
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.footer_main .brillo {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.747);
  z-index: 1;
}
.footer_main h2 {
  color: white;
}
.footer_main .footer_main_top {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer_main .footer_main_top .footer_main_top_title {
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem;
  margin-bottom: 6rem;
}
.footer_main .footer_main_top .footer_main_top_title h3 {
  color: #cbccd0;
}
.footer_main .footer_main_top .footer_main_top_title h4 {
  color: #fff;
}
.footer_main .footer_main_top .footer_main_top_logos {
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 80vw;
}
.footer_main .footer_main_top .footer_main_top_logos button {
  border: none;
  background-color: transparent;
}
.footer_main .footer_main_top .footer_main_top_logos .splide__slide {
  margin-top: 1.2rem;
}
.footer_main .footer_main_top .footer_main_top_logos .footer_main_top_logos_item {
  padding: 1rem;
  position: relative;
  height: 17rem;
  border: rgb(145, 156, 169) 2px solid;
  border-radius: 1rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer_main .footer_main_top .footer_main_top_logos .footer_main_top_logos_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer_main .footer_main_top .footer_main_top_logos .footer_main_top_logos_item .contenedor_año {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  position: absolute;
  top: -20px;
  color: black;
  background-color: white;
  padding: 0.5rem;
  font-weight: lighter;
  border-radius: 7px;
  font-size: 20px;
  right: 15px;
}
.footer_main .footer_main_top .footer_main_top_logos .footer_main_top_logos_item .contenedor_año img {
  width: 20px;
}
.footer_main .splide {
  width: 55vw;
}
@media screen and (max-width: 1375px) {
  .footer_main .splide {
    width: 70vw;
  }
}
.footer_main .footer_main_bottom {
  z-index: 3;
  margin: 5rem;
  background-color: rgba(128, 128, 128, 0.3);
  padding: 10rem 20rem;
}
.footer_main .footer_main_bottom .footer_main_bottom_contact {
  margin: 2rem;
}
.footer_main .footer_main_bottom .footer_main_bottom_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer_main .footer_main_bottom .footer_main_redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem;
}

@media (max-width: 768px) {
  .footer_main .footer_main_bottom {
    padding: 1rem 1rem;
  }
}
.whatsapp-custom {
  position: fixed;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 100;
  font-family: sans-serif;
  background-color: transparent;
  transition: transform 0.2s ease;
}

.whatsapp-custom:hover {
  transform: scale(1.05);
}

.wa-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  position: relative;
  left: 20px;
}

@media (max-width: 768px) {
  .whatsapp-custom {
    bottom: 60px;
    right: 20px;
  }
  .whatsapp-custom .wa-icon {
    left: 3px;
  }
  .whatsapp-custom .wa-text {
    padding: 0.5rem 1rem;
  }
  .whatsapp-custom .wa-text strong {
    font-size: 14px;
  }
  .whatsapp-custom .wa-text span {
    font-size: 12px;
  }
}
.reservar-mobile {
  display: none;
}

.maps-mobile {
  display: none;
}

@media screen and (max-width: 765px) {
  .reservar-mobile {
    position: fixed;
    bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
    background-color: transparent;
    transition: transform 0.2s ease;
    width: 100%;
    height: 50px;
    background-color: rgb(138, 124, 95);
    border: none;
  }
  .reservar-mobile h3 {
    font-size: 35px;
    color: white;
    font-weight: 700;
  }
  .maps-mobile {
    position: fixed;
    bottom: 130px;
    right: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 100;
    border-radius: 50%;
    background-color: rgb(138, 124, 95);
    font-family: sans-serif;
    transition: transform 0.2s ease;
  }
}
.menu_left {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 900;
}

.menu_left.open {
  transform: translateX(0);
}

.menu_left {
  position: fixed;
  font-weight: 400;
  font-style: normal;
  height: 50rem;
  display: flex;
  flex-direction: column;
  background-color: rgb(138, 124, 95);
  padding: 2rem;
  gap: 2rem;
  height: 100%;
}
.menu_left .contenedor_close_menu {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  flex-direction: row;
  justify-content: end;
}
.menu_left .close_menu {
  background-color: rgb(138, 124, 95);
  color: rgb(242, 241, 238);
  font-size: 2rem;
  border: none;
  width: 2rem;
  font-weight: lighter;
  cursor: pointer;
}
.menu_left .menu_left_top {
  display: flex;
  height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.menu_left .menu_left_top .contenedor_idioma {
  display: flex;
  background-color: rgb(242, 241, 238);
  border: solid white 2px;
  border-radius: 10px;
}
.menu_left .menu_left_top .idioma {
  position: relative;
  display: flex;
  justify-content: center;
  border-color: white;
  border-width: 3px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  align-items: center;
  background-color: rgb(138, 124, 95);
  padding-left: 10px;
  padding-right: 5px;
}
.menu_left .menu_left_top .idioma img {
  width: 2rem;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu_left .menu_left_top .idioma .text_idioma {
  color: #fff;
  font-size: medium;
  font-weight: bold;
}
.menu_left .menu_left_top .cambiar_idioma {
  display: flex;
  justify-content: center;
  border-color: white;
  align-items: center;
  border: none;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  background-color: rgb(138, 124, 95);
  border-width: 3px;
  padding: 10px;
  border-left: solid wheat 2px;
  cursor: pointer;
}
.menu_left .menu_left_top .cambiar_idioma img {
  width: 2rem;
  height: wrem;
}
.menu_left li {
  color: #fff;
}
.menu_left ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}
.menu_left ul li {
  padding: 10px;
  font-size: 26px;
  font-weight: bold;
}
.menu_left ul li a {
  color: rgb(242, 241, 238);
  text-decoration: none;
}
.menu_left ul li a:hover {
  color: rgb(0, 1, 1);
  font-family: "Fineliner Script";
}
.menu_left .menu_left_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border-radius: 0.5rem;
  border: 2px solid #fff;
}

a.menu_left_list_item, a.menu_left_list_item_3 {
  text-decoration: none;
}
.menu_left .menu_left_list .menu_left_list_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 15px;
  border-right: solid #fff;
}
@media screen and (max-width: 400px) {
  .menu_left .menu_left_list .menu_left_list_item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.menu_left .menu_left_list .menu_left_list_item img {
  width: 2rem;
}
.menu_left .menu_left_list .menu_left_list_item p {
  color: #fff;
  margin: 2px;
  text-align: center;
}
.menu_left .menu_left_list .menu_left_list_item_3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.menu_left .menu_left_list .menu_left_list_item_3 a {
  color: rgb(242, 241, 238);
}
.menu_left .menu_left_list .menu_left_list_item_3 img {
  width: 2rem;
}
.menu_left .menu_left_list .menu_left_list_item_3 p {
  color: #fff;
  margin: 2px;
  text-align: center;
}
.menu_left .menu_left_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.menu_left .lista_idiomas {
  position: absolute;
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 103%;
  bottom: -180%;
  left: -2px;
  color: #fff;
  font-size: medium;
  font-weight: bold;
  flex-direction: column;
  background-color: rgb(138, 124, 95);
  border-left: 2px solid #fff;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  gap: 7px;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}
.menu_left .lista_idiomas .opcion_idioma {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  padding-left: 10px;
  padding-right: 5px;
  cursor: pointer;
}
.menu_left .lista_idiomas .opcion_idioma span {
  padding-left: 5px;
}
.menu_left .lista_idiomas .opcion_idioma img {
  width: 2rem;
  padding: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu_left .lista_idiomas .opcion_idioma:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu_left .lista_idiomas.activo {
  display: flex;
}

.modulo_1 {
  position: relative;
  color: white; /* Para que el texto sea visible */
  text-align: center;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.modulo_1 .boton_slider_down {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  transform: translate(0px, 350px);
  background-color: transparent;
  z-index: 5;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 765px) {
  .modulo_1 .boton_slider_down {
    transform: translate(0px, 300px);
  }
}
@media screen and (max-width: 393px) {
  .modulo_1 .boton_slider_down {
    transform: translate(0px, 300px);
  }
}
.modulo_1 .brillo {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.411);
  z-index: 1;
}
.modulo_1 .modulo_1_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-backdrop-filter: brightness(50%);
          backdrop-filter: brightness(50%);
  background-color: rgba(0, 0, 0, 0.2);
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.modulo_1 .text {
  font-size: 1.5rem;
  z-index: 3;
  align-content: center;
  color: #fff;
}
.modulo_1 .division {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 2rem;
}
.modulo_1 .division .division_1 {
  z-index: 3;
  align-content: center;
}
.modulo_1 .division .division_2 {
  z-index: 3;
  align-content: center;
}
.modulo_1 .division .line {
  height: 50px;
  width: 200px;
}
.modulo_1 .division .line-style {
  stroke: white;
  stroke-width: 2px;
}
.modulo_1 .text-2 {
  font-size: 64px;
  z-index: 3;
  color: white;
}

#slider-imagenes {
  display: none;
}

.contenedor-contador-imagen {
  position: absolute;
  bottom: 50%;
  right: 20px;
  background-color: transparent;
  color: white;
  font-size: 20px;
  z-index: 10;
  font-weight: lighter;
}

.contador-slider {
  position: relative;
}

.line_contador {
  position: absolute;
  width: 100%;
  left: 50%;
}
.line_contador .line-style-contador {
  stroke: white;
}

@media (max-width: 768px) {
  .modulo_1 .text {
    font-size: 2.5rem;
    color: #fff;
  }
  .modulo_1 .text-2 {
    font-size: 3rem;
  }
  .modulo_1 .division {
    gap: 1rem;
  }
  .modulo_1 .division .line {
    height: 50px;
    width: 50px;
  }
}
.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(360deg);
  cursor: pointer;
}

.arrow span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid white;
  border-right: 5px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
.modulo_2 {
  background-image: url("./static/img/seccion-2/bienvenida.jpg");
  background-size: cover; /* Asegura que la imagen cubra todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  position: relative;
}

.modulo_2_informacion {
  position: absolute;
  top: -2.5%;
  left: 15%;
  transform: translateX(-50%);
  z-index: 50;
  background-color: rgb(242, 241, 238);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(0, 1, 1);
  border: solid 2px rgb(138, 124, 95);
  gap: 1rem;
  padding: 0 2rem;
}
.modulo_2_informacion .modulo_2_list {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .modulo_2_informacion {
    padding: 0 2rem;
    top: 0%;
    font-size: 0.75rem;
  }
  .modulo_2_informacion hr {
    display: none;
  }
  .modulo_2_informacion .modulo_2_list {
    display: none;
    gap: 2rem;
  }
}
.modulo_2_informacion button {
  background-color: transparent;
  border: rgb(138, 124, 95) 1px solid;
  color: rgb(138, 124, 95);
  padding: 0.5rem;
  margin: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
}
@media (max-width: 768px) {
  .modulo_2_informacion button {
    margin: 0.25rem;
  }
}
.modulo_2_informacion button:hover {
  background-color: #fff;
  color: rgb(0, 1, 1);
  transition: 0.75s;
}

@media screen and (max-width: 765px) {
  .modulo_2_informacion {
    display: none;
  }
}
.modulo_2_ventajas {
  background-color: rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  padding: 10rem;
}
@media (max-width: 768px) {
  .modulo_2_ventajas {
    grid-template-columns: 1fr;
    padding: 0.25rem;
    padding-top: 3.5rem;
  }
}

.modulo_2_text {
  grid-column: span 6;
  color: #fff;
  padding: 8rem;
}
@media (max-width: 768px) {
  .modulo_2_text {
    grid-column: span 1;
    padding: 0.25rem;
  }
}

.ventajas_container {
  grid-column: span 4;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .ventajas_container {
    grid-column: span 1;
    padding: 0.25rem;
  }
}
.ventajas_container .splide {
  width: 22.5rem;
}
.ventajas_container .splide__slide {
  background: rgba(255, 255, 255, 0); /* fondo translúcido */
  backdrop-filter: blur(10px); /* aplica desenfoque al fondo */
  -webkit-backdrop-filter: blur(10px); /* soporte en Safari */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  margin: 4rem 0;
  padding: 3rem 2rem;
}
.ventajas_container .ventajas {
  font-size: 30px;
  font-weight: bold;
  color: rgb(0, 1, 1);
  text-align: center;
  padding: 2rem;
}
.ventajas_container .title {
  font-size: 25px;
  font-weight: medium;
  color: rgb(242, 241, 238);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1153px) {
  .ventajas_container .title {
    font-size: 18px;
  }
}
.ventajas_container .description {
  font-size: 17px;
  text-align: center;
  font-weight: 600;
  color: rgb(0, 1, 1);
  line-height: 1.4;
  padding: 0 2rem;
}

p {
  font-weight: 600;
}

h2 {
  font-weight: 600;
}

.modulo_3 {
  background-color: #fff;
  position: relative;
}

.modulo_3_map {
  height: 80vh;
}
.modulo_3_map #map {
  height: 100%;
  width: 100%;
  z-index: 4;
}

.modulo_3_info {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 2rem;
  position: absolute;
  top: 15%;
  left: 5%;
  transform: translateX(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.modulo_3_info .line {
  height: 4px;
  color: rgb(138, 124, 95);
  background-color: rgb(138, 124, 95);
}
.modulo_3_info .formulario {
  background-color: rgb(138, 124, 95);
  color: #fff;
  padding: 2rem;
  border-radius: 20px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .modulo_3_info {
    display: none;
  }
}

.leaflet-popup-content-wrapper {
  border-radius: 30px !important;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
  padding: 0 !important;
  min-width: 320px !important;
  border-radius: 50% !important;
}
.leaflet-popup-content p {
  margin: 0 !important;
}

.custom-popup {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-radius: 30px;
}

.imagen_popup {
  width: 100%;
  height: 200px;
}
.imagen_popup img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.texto_popup {
  padding: 1rem;
}
.texto_popup .text_titulo {
  font-weight: bold;
  font-size: 17px;
}

.banner {
  position: relative;
  padding-bottom: 30%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1528px) {
  .banner {
    padding-bottom: 35%;
  }
}
@media screen and (max-width: 1300px) {
  .banner {
    padding-bottom: 45%;
  }
}
@media screen and (max-width: 1000px) {
  .banner {
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .banner {
    padding-bottom: 60%;
  }
}
@media screen and (max-width: 600px) {
  .banner {
    padding-bottom: 100%;
  }
}
@media screen and (max-width: 393px) {
  .banner {
    padding-bottom: 100%;
  }
}
.banner .brillo {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.507);
  z-index: 1;
}
.banner .brillo .banner_text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  inset: 0;
  align-items: center;
  color: white;
  font-size: 50px;
  width: 100%;
  gap: 1rem;
  z-index: 2;
}
@media screen and (max-width: 910px) {
  .banner .brillo .banner_text {
    font-size: 30px;
  }
}
@media screen and (max-width: 550px) {
  .banner .brillo .banner_text {
    font-size: 23px;
  }
}
@media screen and (max-width: 420px) {
  .banner .brillo .banner_text {
    font-size: 20px;
  }
}
.banner .brillo .banner_text .banner_titulo {
  color: white;
}
.banner .brillo .banner_text .banner_titulo_2 {
  font-size: 20px;
  color: white;
}
@media screen and (max-width: 420px) {
  .banner .brillo .banner_text .banner_titulo_2 {
    font-size: 14px;
  }
}
.banner .brillo .banner_text .play_video {
  background-color: transparent;
  border: none;
  margin-top: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 910px) {
  .banner .brillo .banner_text .play_video img {
    width: 50px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.videoembed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video_abierto {
  background-color: black;
  border: none;
  position: fixed;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
}
.video_abierto .video_abierto_container .cerrar_video {
  position: absolute;
  right: 20px;
  top: 20px;
  font-weight: bold;
  font-size: 20px;
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.video_abierto::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modulo_5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 5rem;
}
.modulo_5 .modulo_5_header {
  text-align: center;
  margin: 2rem;
}
.modulo_5 .modulo_5_button {
  border: none;
  background-color: rgb(0, 1, 1);
  color: #fff;
  font-size: 15px;
  padding: 1rem 3rem;
}
.modulo_5 .modulo_5_button:hover {
  background-color: white;
  color: rgb(0, 1, 1);
  border: solid 1px rgb(0, 1, 1);
}
.modulo_5 .modulo_5_galeria {
  width: 99vw;
}
.modulo_5 .modulo_5_galeria .splide__slide img {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modulo_5 .videoembed {
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modulo_5_br {
  position: absolute;
  top: 40%;
  left: 22%;
  background-color: transparent;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  z-index: 10;
  padding: 1rem;
}

.modulo_5_bl {
  position: absolute;
  top: 40%;
  right: 22%;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  background-color: transparent;
  border: none;
  z-index: 10;
  padding: 1rem;
}

@media (max-width: 1200px) {
  .modulo_5 {
    padding: 1rem;
  }
  .modulo_5_br,
  .modulo_5_bl {
    display: none;
  }
}
.modulo_6 {
  background-color: rgb(242, 241, 238);
  padding: 5rem 0;
}
.modulo_6 .modulo_6_header {
  text-align: center;
  margin-bottom: 3rem;
}
.modulo_6 .modulo_6_header h2,
.modulo_6 .modulo_6_header h3,
.modulo_6 .modulo_6_header h4 {
  margin: 0.5rem 0;
}
.modulo_6 .modulo_6_content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 100vh;
  font-weight: 400;
  font-style: normal;
}
.modulo_6 .modulo_6_item {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.modulo_6 .modulo_6_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.modulo_6 .modulo_6_item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  color: rgb(0, 1, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
}
.modulo_6 .modulo_6_item .overlay h5 {
  margin: 0.5rem 
}
.modulo_6 .modulo_6_item .overlay .modulo_6_item_content {
  z-index: 2;
}
.modulo_6 .modulo_6_item .overlay button {
  display: flex;
  gap: 1rem;
  background: transparent;
  color: rgb(0, 1, 1);
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  z-index: 2;
}
.modulo_6 .modulo_6_item .overlay button:hover {
  border-bottom: rgb(0, 1, 1) 2px solid;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .modulo_6 .modulo_6_content {
    grid-template-columns: 1fr;
    height: 200vh;
  }
}

.filtro {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}

.parent {
  display: grid;
  margin-top: 2rem;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0px;
}
@media screen and (max-width: 1000px) {
  .parent {
    display: flex;
    flex-direction: column;
  }
}

.div1 {
  grid-column: span 3/span 3;
}

.div2 {
  grid-column: span 3/span 3;
  grid-column-start: 4;
}

.div5 {
  grid-column: span 2/span 2;
  grid-row-start: 2;
}

.div6 {
  grid-column: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 2;
}

.div7 {
  grid-column: span 2/span 2;
  grid-column-start: 5;
  grid-row-start: 2;
}

.modulo_7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 6rem 2rem;
}
@media screen and (max-width: 768px) {
  .modulo_7 {
    padding: 1rem 2rem;
  }
}
.modulo_7 .modulo_7_header {
  text-align: center;
}

.contenedor_servicios {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  height: 500px;
  gap: 10px;
  margin-top: 3rem;
  overflow: hidden;
  position: relative;
}
.contenedor_servicios > div {
  flex: 1;
  border-radius: 0.5rem;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contenedor_servicios > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(138, 124, 95, 0.644);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.contenedor_servicios > div:nth-of-type(1) {
  background: url("./static/img/seccion-7/restaurante.png") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(2) {
  background: url("./static/img/seccion-7/imagen2.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(3) {
  background: url("./static/img/seccion-7/imagen3.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(4) {
  background: url("./static/img/seccion-7/imagen4.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(5) {
  background: url("./static/img/seccion-7/imagen5.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(6) {
  background: url("./static/img/seccion-7/imagen6.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(7) {
  background: url("./static/img/seccion-7/imagen7.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:nth-of-type(8) {
  background: url("./static/img/seccion-7/imagen8.jpeg") no-repeat 50%/cover;
}
.contenedor_servicios > div:hover::before {
  opacity: 1;
}
.contenedor_servicios > div .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 10px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 40%;
  align-items: center;
  padding: 15px;
  opacity: 0;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.5s ease-in-out, transform 0.5s 0.2s;
  visibility: hidden;
}
.contenedor_servicios > div .content .titulo {
  font-weight: bold;
  color: white;
  font-size: 40px;
}
.contenedor_servicios > div .content .decripcion {
  font-size: 30px;
  text-align: center;
}
.contenedor_servicios > div:hover {
  flex: 4;
}
.contenedor_servicios > div:hover .content {
  opacity: 1;
  transform: translatey(0%);
  visibility: visible;
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.carrusel_servicios {
  width: 100%;
  margin-top: 2rem;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.carrusel_servicios .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carrusel_servicios .card-servicio {
  width: 100%;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.carrusel_servicios .card-servicio img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.carrusel_servicios .card-servicio h2 {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1rem;
  background-color: transparent;
  border-radius: 8px;
  font-weight: bold;
  color: white;
  font-size: 40px;
}

.modulo_8 {
  background-color: rgb(243, 243, 246);
  display: flex;
  flex-direction: column;
  height: 65rem;
  gap: 3rem;
}
.modulo_8 .modulo_8_header {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}
.modulo_8 .modulo_8_header .header_titulo_1 {
  font-size: 50px;
  color: rgb(202, 204, 209);
  font-weight: lighter;
}
.modulo_8 .modulo_8_header .header_titulo_2 {
  font-size: 30px;
  color: black;
  font-weight: lighter;
}
.modulo_8 .splide__slide {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1014px) {
  .modulo_8 .splide__slide {
    margin-bottom: 20rem;
  }
}
.modulo_8 .contenedor_body_modulo8 {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 1rem;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1660px) {
  .modulo_8 .contenedor_body_modulo8 {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media (max-width: 1291px) {
  .modulo_8 .contenedor_body_modulo8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.modulo_8 .boton_izquierdo {
  border: none;
  background-color: transparent;
}
.modulo_8 .boton_derecho {
  border: none;
  background-color: transparent;
}
.modulo_8 .modulo_8_contenido {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1152px) {
  .modulo_8 .modulo_8_contenido {
    display: block;
  }
}
.modulo_8 .modulo_8_contenido .contenedor_imagen {
  width: 55rem;
  position: relative;
  height: 40rem;
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion {
  display: flex;
  position: absolute;
  transition: opacity 0.5s ease;
  bottom: -70px;
  right: -70px;
  flex-direction: column;
  justify-content: center;
  padding-right: 6rem;
  padding-left: 6rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #fff;
  width: 30rem;
  height: 25rem;
  gap: 1.5rem;
}
@media screen and (max-width: 1152px) {
  .modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion {
    right: -22px;
  }
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .logo_promocion {
  width: 55px;
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .text_descuento {
  font-size: 40px;
  color: rgb(0, 1, 1);
  font-weight: bold;
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .text_descuento_2 {
  font-size: 22px;
  color: rgb(0, 1, 1);
  font-weight: lighter;
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .contenedor_boton {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  margin: 0;
  padding: 0;
  z-index: 10;
  width: auto;
  display: flex;
  align-items: flex-end;
}
.contenedor_boton .boton {
  color: #fff !important;
  background: rgba(0,0,0,0.2);
  border-radius: 3px;
  padding: 0.5rem 1.2rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}
.contenedor_boton .boton:hover {
  background: rgba(0,0,0,0.4);
  transform: scale(1.07);
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .contenedor_boton .boton {
  padding: 1rem;
  width: 150px;
  cursor: pointer;
  border: none;
  background-color: rgb(138, 124, 95);
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .contenedor_boton .boton .contenido_boton {
  font-size: 13px;
  font-weight: lighter;
  color: rgb(242, 241, 238);
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .contenedor_boton .boton:hover {
  background-color: rgb(242, 241, 238);
  border: solid 1px rgb(138, 124, 95);
}
.modulo_8 .modulo_8_contenido .contenedor_imagen .contenido_promocion .contenedor_boton .boton:hover .contenido_boton {
  color: rgb(138, 124, 95);
}

#carrusel_ofertas {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 1014px) {
  .modulo_8 .modulo_8_contenido {
    padding-left: 0rem;
    padding-right: 0rem;
    display: block;
  }
  .modulo_8 .modulo_8_contenido .contenedor_imagen {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 30rem;
  }
  .modulo_8 .modulo_8_contenido .contenedor_imagen .imagen_descuento {
    position: absolute;
    transition: opacity 0.5s ease;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo {
    display: flex;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion {
    display: flex;
    position: absolute;
    transition: opacity 0.5s ease;
    bottom: -40%;
    right: 0;
    flex-direction: column;
    justify-content: center;
    padding-right: 6rem;
    padding-left: 6rem;
    background-color: white;
    width: 100%;
    height: 20rem;
    gap: 1.5rem;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .logo_promocion {
    width: 45px;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .text_descuento {
    font-size: 30px;
    color: rgb(0, 1, 1);
    font-weight: bold;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .text_descuento_2 {
    font-size: 12px;
    color: rgb(0, 1, 1);
    font-weight: lighter;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton .boton {
    padding: 1rem;
    width: 140px;
    cursor: pointer;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton .boton .contenido_boton {
    font-size: 15px;
    font-weight: lighter;
    color: white;
  }
  .modulo_8 .modulo_8_contenido .contenedor_botones_navegacion {
    width: 100%;
    bottom: -22%;
    left: 0%;
    gap: 1px;
  }
}
@media (max-width: 480px) {
  .modulo_8 .modulo_8_contenido {
    padding-left: 0rem;
    padding-right: 0rem;
    display: block;
  }
  .modulo_8 .modulo_8_contenido .contenedor_imagen {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 30rem;
  }
  .modulo_8 .modulo_8_contenido .contenedor_imagen .imagen_descuento {
    position: absolute;
    transition: opacity 0.5s ease;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo {
    display: flex;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion {
    display: flex;
    position: absolute;
    transition: opacity 0.5s ease;
    bottom: -40%;
    right: 0;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
    padding-left: 10px;
    background-color: white;
    width: 100%;
    height: 20rem;
    gap: 1.5rem;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .logo_promocion {
    width: 45px;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .text_descuento {
    font-size: 30px;
    color: rgb(0, 1, 1);
    font-weight: bold;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .text_descuento_2 {
    font-size: 12px;
    color: rgb(0, 1, 1);
    font-weight: lighter;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton .boton {
    padding: 1rem;
    width: 140px;
    cursor: pointer;
  }
  .modulo_8 .modulo_8_contenido .contenedor_responsivo .contenido_promocion .contenedor_boton .boton .contenido_boton {
    font-size: 15px;
    font-weight: lighter;
    color: white;
  }
  .modulo_8 .modulo_8_contenido .contenedor_botones_navegacion {
    width: 100%;
    bottom: -22%;
    left: 0%;
    gap: 1px;
  }
}
.modal_reseña {
  display: flex;
  flex-direction: row;
  justify-content: center;
  position: fixed;
  padding-top: 2rem;
  padding-bottom: 3rem;
  padding-left: 5rem;
  padding-right: 5rem;
  top: 50%;
  left: 50%;
  background-color: white;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  border: transparent;
  overflow-y: auto;
}
@media screen and (max-width: 752px) {
  .modal_reseña {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
}
.modal_reseña .cerrar_modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}
.modal_reseña .contenedor_body_modal {
  display: flex;
  flex-direction: row;
  margin-top: 3rem;
}
@media screen and (max-width: 1243px) {
  .modal_reseña .contenedor_body_modal {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1243px) {
  .modal_reseña .contenedor_body_modal .contenedor_puntajes {
    display: none;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: solid 1px rgb(148, 149, 148);
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  min-width: 30rem;
  min-height: 40rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 4rem;
  padding-right: 4rem;
  justify-content: center;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: solid 1px rgb(148, 149, 148);
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio .imagen_puntaje_descripcion {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio .imagen_puntaje_descripcion .imagen_puntaje img {
  width: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio .imagen_puntaje_descripcion .text_descripcion {
  font-size: 20px;
  font-weight: lighter;
  color: rgb(138, 124, 95);
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio .promedio {
  border: solid 1px rgb(138, 124, 95);
  border-radius: 10px;
  padding: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio .promedio .numero_promedio {
  color: rgb(138, 124, 95);
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes .puntajes .contenedor_body_puntajes .puntaje_promedio:last-child {
  border-bottom: none;
}
.modal_reseña .contenedor_body_modal .splide {
  width: 65vw;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive {
  display: none;
}
@media screen and (max-width: 1243px) {
  .modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive {
    display: block;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border: solid 1px rgb(138, 124, 95);
  border-radius: 20px;
  padding: 1rem;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel .imagen_puntaje_descripcion_carrusel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel .imagen_puntaje_descripcion_carrusel .imagen_puntaje_carrusel img {
  width: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel .imagen_puntaje_descripcion_carrusel .text_descripcion_carrusel {
  font-size: 15px;
  font-weight: lighter;
  color: rgb(138, 124, 95);
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel .promedio_carrusel {
  border: solid 1px rgb(138, 124, 95);
  border-radius: 10px;
  padding: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_puntajes_responsive .puntaje_promedio_carrusel .promedio_carrusel .numero_promedio_carrusel {
  color: rgb(138, 124, 95);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal {
  position: relative;
  width: 43rem;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  gap: 2rem;
  border: solid 1px rgb(148, 149, 148);
  border-radius: 10px;
}
@media screen and (max-width: 752px) {
  .modal_reseña .contenedor_body_modal .contenedor_reseña_modal {
    width: 93%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 450px) {
  .modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal {
  position: absolute;
  background-color: rgb(138, 124, 95);
  top: -40px;
  left: 38%;
  display: flex;
  gap: 0.5rem;
  min-width: 9rem;
  flex-direction: row;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  padding-right: 1rem;
  border-radius: 10px;
}
@media screen and (max-width: 752px) {
  .modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal {
    left: 30%;
  }
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .imagen_puntaje_modal {
  display: flex;
  align-items: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .imagen_puntaje_modal img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 40px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .promedio {
  display: flex;
  flex-direction: column;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .promedio .puntaje_promedio {
  display: flex;
  flex-direction: column;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .promedio .puntaje_promedio .puntaje_promedio_text {
  color: white;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_puntaje_reseña_modal .promedio .promedio_text {
  color: white;
  font-weight: lighter;
  font-size: 25px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_pais_cliente {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_pais_cliente .imagen_pais {
  display: flex;
  align-items: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_pais_cliente .imagen_pais img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 30px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_pais_cliente .nombre_cliente .nombre_cliente {
  font-size: 20px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_pais_cliente .nombre_cliente .nombre_pais {
  font-size: 15px;
  text-align: start;
  color: rgb(123, 122, 123);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo .imagen_habitacion {
  display: flex;
  align-items: start;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo .imagen_habitacion img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 20px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo .nombre_habitacion {
  display: flex;
  flex-direction: row;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo .nombre_habitacion .nombre_habitacion {
  font-size: 15px;
  text-align: start;
  font-weight: bold;
  color: rgb(122, 122, 122);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_cliente_habitacion .contenedor_habitacion_tipo .nombre_habitacion .tipo_habitacion {
  font-size: 15px;
  text-align: start;
  color: rgb(123, 122, 123);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_checkin_texto {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_checkin_texto .imagen_checkin {
  display: flex;
  align-items: start;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_checkin_texto .imagen_checkin img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 20px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_checkin_texto .checkin_texto .checkin {
  font-size: 17px;
  text-align: start;
  font-weight: bold;
  color: rgb(123, 122, 123);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_checkin_texto .checkin_texto .fecha_salida {
  font-size: 15px;
  text-align: start;
  color: rgb(123, 122, 123);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_reserva {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_reserva .imagen_reserva {
  display: flex;
  align-items: start;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_reserva .imagen_reserva img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 20px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_reserva .reserva_texto .reserva_texto {
  font-size: 15px;
  text-align: start;
  font-weight: bold;
  color: rgb(122, 122, 122);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_checkin .contenedor_checkin_reserva .contenedor_reserva .reserva_texto .numero_reserva {
  font-size: 15px;
  text-align: start;
  color: rgb(123, 122, 123);
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .comentario_titulo {
  font-size: 16px;
  font-weight: bold;
  color: black;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_positivo {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_positivo .imagen_positivo {
  display: flex;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_positivo .imagen_positivo img {
  height: 20px;
  display: flex;
  align-content: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_positivo .text_positivo {
  font-size: 16px;
  color: rgb(123, 122, 123);
  font-weight: bold;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_negativo {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_negativo .imagen_negativo {
  display: flex;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_negativo .imagen_negativo img {
  height: 20px;
  display: flex;
  align-content: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_comentario_huesped .contenedor_comentario_negativo .text_negativo {
  font-size: 16px;
  color: rgb(123, 122, 123);
  font-weight: lighter;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .respuesta_titulo {
  font-size: 16px;
  font-weight: bold;
  color: black;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .contenedor_respuesta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .contenedor_respuesta .imagen_respuesta {
  display: flex;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .contenedor_respuesta .imagen_respuesta img {
  height: 20px;
  display: flex;
  align-content: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .contenedor_respuesta .contenedor_respuesta_texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_respuesta_hotel .contenedor_respuesta .contenedor_respuesta_texto .respuesta_texto {
  font-size: 16px;
  color: rgb(123, 122, 123);
  font-weight: lighter;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_director {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: start;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_director img {
  height: 50px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_director .contenedor_nombre_director {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_director .contenedor_nombre_director .nombre_director {
  font-size: 18px;
}
.modal_reseña .contenedor_body_modal .contenedor_reseña_modal .contenedor_director .contenedor_nombre_director .nombre_cargo {
  font-size: 15px;
  text-align: start;
  color: rgb(123, 122, 123);
}

.modal_reseña::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal_reseña:not([open]) {
  display: none;
}

.modulo_9 {
  background-color: #f3f3f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modulo_9 .modulo_9_header {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  padding-bottom: 7rem;
}
.modulo_9 .ranking-carousel {
  width: 60vw;
}
.modulo_9 .reseñas-carousel {
  width: 83vw;
}
@media screen and (max-width: 820px) {
  .modulo_9 .reseñas-carousel {
    width: 53vw;
  }
}
@media screen and (max-width: 814px) {
  .modulo_9 .reseñas-carousel {
    width: 60vw;
  }
}
@media screen and (max-width: 690px) {
  .modulo_9 .reseñas-carousel {
    width: 65vw;
  }
}
@media screen and (max-width: 658px) {
  .modulo_9 .reseñas-carousel {
    width: 70vw;
  }
}
@media screen and (max-width: 589px) {
  .modulo_9 .reseñas-carousel {
    width: 90vw;
  }
}
.modulo_9 .splide__slide {
  background: transparent;
  /* padding: 40px 20px; */
  position: relative;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: none;
}
.modulo_9 .module_9_body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  background-color: rgb(242, 242, 246);
}
.modulo_9 .module_9_body .body_puntuacion {
  position: absolute;
  display: flex;
  top: -50px;
  min-height: 7rem;
  min-width: 20rem;
  background-color: white;
  flex-direction: row;
  justify-content: space-around;
  border: solid 2px rgb(138, 124, 95);
  align-items: center;
  border-radius: 10px;
}
.modulo_9 .module_9_body .body_puntuacion .imagen_puntuacion_izquierdo {
  position: absolute;
  left: 5px;
}
.modulo_9 .module_9_body .body_puntuacion .body_puntuacion_text {
  color: rgb(138, 124, 95);
  font-weight: bold;
  font-size: 70px;
}
.modulo_9 .module_9_body .body_puntuacion .imagen_puntuacion_derecho {
  position: absolute;
  right: 5px;
}
.modulo_9 .module_9_body .titulo_body {
  margin-top: 5rem;
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  color: black;
}
@media screen and (max-width: 530px) {
  .modulo_9 .module_9_body .titulo_body {
    font-size: 30px;
  }
}
.modulo_9 .module_9_body .titulo_body_2 {
  font-size: 30px;
  text-align: center;
  font-weight: lighter;
  color: black;
}
@media screen and (max-width: 530px) {
  .modulo_9 .module_9_body .titulo_body_2 {
    font-size: 20px;
  }
}
.modulo_9 .module_9_body .contenedor-carrusel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.modulo_9 .module_9_body .contenedor-carrusel .modulo_9_puntos_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0.5rem;
  border: rgb(138, 124, 95) 2px solid;
  border-radius: 1rem;
  color: rgb(138, 124, 95);
}
.modulo_9 .module_9_body .contenedor-carrusel .modulo_9_puntos_item .carrusel_puntuacion {
  font-size: 40px;
  font-weight: lighter;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .module_9_body .contenedor-carrusel .modulo_9_puntos_item .carrusel_puntuacion {
    font-size: 30px;
  }
}
.modulo_9 .module_9_body .contenedor-carrusel .modulo_9_puntos_item .carrusel_puntuacion_texto {
  font-size: 15px;
}
.modulo_9 .module_9_body .contenedor-carrusel .prevBtn-ranking,
.modulo_9 .module_9_body .contenedor-carrusel .nextBtn-ranking {
  border: none;
  margin: 1rem;
}
.modulo_9 .contenedor_reseñas {
  margin-top: 4rem;
  background-image: url(./static/img/seccion-9/fondo\ comentarios.png);
  width: 100%;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .prevBtn-reseña,
.modulo_9 .contenedor_reseñas .carrusel_reseñas .nextBtn-reseña {
  border: none;
  margin: 0.5rem;
  background-color: transparent;
}
@media screen and (max-width: 589px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .prevBtn-reseña,
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .nextBtn-reseña {
    display: none;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
  position: relative;
  width: 43rem;
  display: flex;
  flex-direction: column;
  background-color: white;
  padding: 2rem;
  gap: 3rem;
}
@media screen and (max-width: 430px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
    padding: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .reseña_puntuacion {
  position: absolute;
  display: flex;
  justify-content: center;
  background-color: rgb(138, 124, 95);
  border-radius: 10px;
  border: solid 2px rgb(138, 124, 95);
  padding: 0.5rem;
  min-width: 125px;
  min-height: 100px;
  top: -50px;
  left: 42%;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .reseña_puntuacion {
    left: 35%;
  }
}
@media screen and (max-width: 589px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .reseña_puntuacion {
    left: 35%;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .reseña_puntuacion .puntuacion {
  color: white;
  font-size: 50px;
  text-align: center;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais {
  display: flex;
  margin-top: 2rem;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 430px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .bandera img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 50px;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .bandera img {
    height: 40px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_cliente {
  font-size: 30px;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_cliente {
    font-size: 20px;
  }
}
@media screen and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_cliente {
    font-size: 15px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_pais {
  font-size: 20px;
  text-align: start;
  color: rgb(123, 122, 123);
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_pais {
    font-size: 15px;
  }
}
@media screen and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .pais .cliente .nombre_pais {
    font-size: 13px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in {
  font-size: 20px;
  color: rgb(123, 122, 123);
  font-weight: bold;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in {
    font-size: 17px;
  }
}
@media screen and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in {
    font-size: 15px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in-2 {
  font-size: 20px;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in-2 {
    font-size: 17px;
  }
}
@media screen and (max-width: 1669px) and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_pais .salida .check-in-2 {
    font-size: 15px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva .imagen_reseña {
  display: flex;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva .imagen_reseña img {
  height: 30px;
  display: flex;
  align-content: center;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva .imagen_reseña img {
    height: 23px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva .reseña_positiva_text {
  font-size: 23px;
  color: rgb(123, 122, 123);
  font-weight: bold;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_positiva .reseña_positiva_text {
    font-size: 17px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_negativa {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_negativa img {
  height: 30px;
  display: flex;
  align-content: center;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_negativa img {
    height: 23px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_negativa .reseña_negativa_text {
  font-size: 23px;
  color: rgb(123, 122, 123);
  font-weight: lighter;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .reseña_negativa .reseña_negativa_text {
    font-size: 17px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .ver_mas {
  border: none;
  font-size: 20px;
  color: rgb(0, 1, 1);
  background-color: transparent;
  text-align: start;
  margin-left: 50px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .ver_mas {
    font-size: 15px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_reseñas_clientes .ver_mas:hover {
  text-decoration: underline;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .separacion {
  background-color: rgb(197, 196, 197);
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .titulo_respuesta {
  font-size: 25px;
  font-weight: bold;
  color: black;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .titulo_respuesta {
    font-size: 17px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
@media screen and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta {
    gap: 0.5rem;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .imagen_respuesta {
  display: flex;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .imagen_respuesta img {
  height: 30px;
  display: flex;
  align-content: center;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .imagen_respuesta img {
    height: 23px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .respuesta_text {
  font-size: 23px;
  color: rgb(123, 122, 123);
  font-weight: lighter;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .respuesta_text {
    font-size: 17px;
  }
}
@media screen and (max-width: 393px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_respuesta .respuesta_text {
    font-size: 14px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .ver_mas_respuesta {
  border: none;
  font-size: 20px;
  color: rgb(0, 1, 1);
  background-color: transparent;
  text-align: start;
  margin-left: 50px;
  font-weight: 600;
  cursor: pointer;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .ver_mas_respuesta {
    font-size: 17px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .ver_mas_respuesta:hover {
  text-decoration: underline;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director {
  display: flex;
  margin-top: 1rem;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director img {
  display: flex;
  align-content: center;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director img {
    height: 35px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director .contenedor_nombre_director .nombre_director {
  font-size: 30px;
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director .contenedor_nombre_director .nombre_director {
    font-size: 20px;
  }
}
.modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director .contenedor_nombre_director .nombre_cargo {
  font-size: 20px;
  text-align: start;
  color: rgb(123, 122, 123);
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña .contenedor_respuesta_hotel .contenedor_director .contenedor_nombre_director .nombre_cargo {
    font-size: 17px;
  }
}
@media screen and (max-width: 1669px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
    width: 40rem;
  }
}
@media screen and (max-width: 1628px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
    width: 35rem;
  }
}
@media screen and (max-width: 1449px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
    width: 27rem;
  }
}
@media screen and (max-width: 1072px) {
  .modulo_9 .contenedor_reseñas .carrusel_reseñas .reseña {
    width: 100%;
  }
}
.modulo_9 .modulo_9_button {
  background-color: rgb(0, 1, 1);
  color: #fff;
  border: none;
  padding: 1.5rem 4rem;
  font-size: 1rem;
  margin-top: 3rem;
  text-align: start;
  cursor: pointer;
}
.modulo_9 .modulo_9_button:hover {
  background-color: white;
  color: rgb(0, 1, 1);
  border: solid 1px rgb(0, 1, 1);
}

@media (max-width: 768px) {
  .modulo_9 .modulo_9_comentarios {
    flex-direction: column;
  }
}
.modulo_10 {
  background-color: #f3f3f6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}
.modulo_10 .modulo_10_header {
  text-align: center;
  margin: 2rem;
}
.modulo_10 .modulo10_content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70%;
  gap: 2rem;
}
.modulo_10 .modulo10_content .splide {
  width: 70vw;
}
.modulo_10 .modulo10_content .modulo10_content_carousel .modulo10_content_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 190px;
  width: 265px;
  padding: 1rem;
  gap: 1rem;
  background-color: #fff;
  border: rgb(138, 124, 95) 1px solid;
  border-bottom: rgb(138, 124, 95) 8px solid;
  border-radius: 1rem;
}
.modulo_10 .modulo10_content .modulo10_content_carousel .modulo10_content_item span {
  color: rgb(0, 1, 1);
  font-weight: bold;
}
.modulo_10 .modulo10_content button {
  border: none;
  margin: 1rem;
}

.ranking {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
.ranking img {
  width: 20px;
}

@media (max-width: 768px) {
  #prevBtn-estadisticas {
    display: none;
  }
  #nextBtn-estadisticas {
    display: none;
  }
}
.modulo_11 {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modulo_11 .modulo_11_header {
  text-align: center;
  margin: 2rem;
}

h5 {
  font-size: 20px;
}

.modulo_11_content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.modulo_11_content .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  height: 100%;
}
.modulo_11_content .post .post_content {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  padding: 2rem;
  height: 100%;
}
.modulo_11_content .post .post_content button {
  background-color: transparent;
  color: #fff;
  border: none;
  border-bottom: #fff 1px solid;
}
.modulo_11_content .post ul {
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 4rem;
  padding: 1rem;
}

.modulo_11_reacciones {
  display: flex;
  flex-direction: row;
  justify-self: center;
  align-items: center;
  gap: 0.5rem;
}

.modulo_11_reacciones:hover {
  cursor: pointer;
  transform: scale(1.25);
  transition: all 0.3s ease;
}

.modulo_11_redes {
  width: 100%;
  background-color: #f3f3f6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}
.modulo_11_redes .modulo_11_redes_item {
  display: flex;
  padding: 1rem;
  gap: 3rem;
}

.post:hover .post_content {
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .post:hover .post_content {
    opacity: 0 !important;
  }
}
@media screen and (max-width: 500px) {
  .post {
    cursor: pointer;
  }
}
.modulo_11_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw;
  border-radius: 1rem;
  background-color: #fff;
  padding-right: 5rem;
  padding-left: 5rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border: none;
}
@media screen and (max-width: 925px) {
  .modulo_11_modal {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
}
@media screen and (max-width: 500px) {
  .modulo_11_modal {
    width: 95vw;
  }
}

.modulo_11_modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.contenedor_modal_11 {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.modulo_11_modal_button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: bold;
  z-index: 100;
  background-color: transparent;
  border: none;
  color: #252b41;
}

.modulo_11_modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .modulo_11_modal_header {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1000px) {
  .modulo_11_modal_header {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
  }
}
.modulo_11_modal_header .modulo_11_modal_header_text_1 {
  font-size: 2rem;
  font-weight: 700;
  color: #252b41;
}
@media screen and (max-width: 500px) {
  .modulo_11_modal_header .modulo_11_modal_header_text_1 {
    font-size: 1.5rem;
  }
}
.modulo_11_modal_header .modulo_11_modal_header_text_2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: #252b41;
}
@media screen and (max-width: 500px) {
  .modulo_11_modal_header .modulo_11_modal_header_text_2 {
    font-size: 1rem;
  }
}
.modulo_11_modal_header ul {
  background-color: rgb(155, 155, 155);
  display: flex;
  gap: 2rem;
  border-radius: 0.5rem;
  padding: 1rem 3rem;
}
@media screen and (max-width: 500px) {
  .modulo_11_modal_header ul {
    font-size: 1.5rem;
    width: 100%;
    justify-content: center;
  }
}

.modulo_11_modal_galeria {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  height: 60vh;
}
@media screen and (max-width: 1000px) {
  .modulo_11_modal_galeria {
    flex-direction: column; /* Cambia de fila a columna */
    height: auto;
  }
  .modulo_11_modal_galeria #thumbnail-slider2 {
    width: 100%;
    height: auto;
  }
  .modulo_11_modal_galeria #thumbnail-slider2 .splide__track {
    height: auto;
  }
  .modulo_11_modal_galeria #thumbnail-slider2 .splide__list {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem;
  }
  .modulo_11_modal_galeria #thumbnail-slider2 .splide__slide {
    height: auto;
    width: 100px;
  }
  .modulo_11_modal_galeria #thumbnail-slider2 img {
    height: 100px;
    width: 100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.modulo_11_modal_descripcion {
  font-size: 20px;
}
@media screen and (max-width: 500px) {
  .modulo_11_modal_descripcion {
    font-size: 14px;
  }
}

#main-slider2 {
  flex: 1;
  height: 100%;
}
#main-slider2 .splide__track {
  height: 100%;
}
#main-slider2 .splide__list {
  height: 100%;
}
#main-slider2 li {
  height: 100% !important;
}

#thumbnail-slider2 {
  width: 250px;
  height: 100%;
}
#thumbnail-slider2 .splide__track {
  height: 100%;
}

.modulo_12 {
  background-color: #fff;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.modulo_12 .modulo_12_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.modulo_12 .modulo_12_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin: 2rem 4rem;
}

.modulo_12_container {
  width: 99vw;
  height: 75vh;
}
@media screen and (max-width: 800px) {
  .modulo_12_container {
    height: 40vh;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 40rem;
  overflow: hidden;
}

.item {
  position: absolute;
  width: 70rem;
  height: 40rem;
  text-align: justify;
  border-radius: 10px;
  transition: 0.5s;
  left: calc(50% - 35rem);
  top: 0;
  padding-left: 5rem;
  padding-right: 5rem;
}

.item-content {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.modulo_12_content_button {
  background-color: transparent;
  border: white 2px solid;
  color: white;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
}

.modulo_12_content_button:hover {
  background-color: white;
  color: #000;
  transition: 0.75s;
}

.modulo_12_play_button {
  background-color: transparent;
  border: none;
  position: absolute;
  bottom: 10%;
  left: 80%;
  cursor: pointer;
}

#next {
  position: absolute;
  right: 50px;
  top: 30%;
}

#prev {
  position: absolute;
  left: 50px;
  top: 30%;
}

#prev,
#next {
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 20;
  filter: invert(1);
}

#prev:hover,
#next:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .modulo_12 {
    padding: 1rem;
  }
  .item {
    width: 80vw;
    height: 25rem;
    left: calc(50% - 40vw);
    padding: 1rem;
  }
  #next {
    right: 10px;
    top: 30%;
  }
  #prev {
    left: 10px;
    top: 30%;
  }
  .modulo_12_play_button {
    display: none;
  }
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-content > *:not(video) {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  padding: 2rem;
}

.video-overlay-content {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 500px) {
  .video-overlay-content {
    width: 100%;
  }
}

.video-overlay-content-text {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.contenedor_texto_lugares {
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; /* Centra verticalmente */
  width: 55%;
}
@media screen and (max-width: 800px) {
  .contenedor_texto_lugares {
    width: 100%;
  }
}

.texto_lugares {
  text-align: center;
  font-size: 21px;
}
@media screen and (max-width: 800px) {
  .texto_lugares {
    font-size: 15px;
  }
}

.video_abierto {
  background-color: black;
  border: none;
  position: fixed;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
}
.video_abierto .video_abierto_container .cerrar_video {
  position: absolute;
  right: 20px;
  top: 20px;
  font-weight: bold;
  font-size: 20px;
  color: black;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.video_abierto::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal_12_lugares {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw;
  border-radius: 1rem;
  padding: 2rem 5rem;
  border: none;
}

@media (max-width: 768px) {
  .modal_12_lugares {
    padding: 0.5rem;
    width: 90vw;
  }
}
.modal_12_lugares::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modal_12_lugares .contenedor_modal_lugares .header_modal_12_lugares {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 0 2rem 0;
}
.modal_12_lugares .contenedor_modal_lugares .cerrar_lugares_modulo12 {
  background-color: #252b41;
  color: white;
  border-radius: 100%;
  padding: 1rem;
}

.modal_12_lugares_descripcio .modal_12_lugares_descripcion_titulo {
  color: #252b41;
}
.modal_12_lugares_descripcio .modal_12_lugares_descripcion_texto {
  color: #252b41;
}

.modulo_13 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f3f3f6;
  gap: 3rem;
}
.modulo_13 .modulo_13_header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin: 2rem;
}
.modulo_13 .modulo_13_content {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2rem;
  padding-left: 10rem;
  padding-right: 10rem;
  margin-bottom: 7rem;
}
.modulo_13 .modulo_13_content .modulo_13_item_1 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  max-height: 18rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
.modulo_13 .modulo_13_content .contenedor_imagen {
  width: 40%;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.modulo_13 .modulo_13_content .modulo_13_item_2 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  max-height: 18rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
.modulo_13 .modulo_13_content .modulo_13_item_3 {
  position: relative;
  grid-column: span 2/span 2;
  grid-row: span 4/span 4;
  grid-column-start: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 930px) {
  .modulo_13 .modulo_13_content .modulo_13_item_3 {
    height: 13rem;
  }
}
.modulo_13 .modulo_13_content .modulo_13_item_3 img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.modulo_13 .modulo_13_content .modulo_13_item_4 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-row-start: 3;
  max-height: 18rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
.modulo_13 .modulo_13_content .modulo_13_item_5 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 3;
  grid-row-start: 3;
  max-height: 18rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}
.modulo_13 .modulo_13_content .modulo_13_item_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.modulo_13 .modulo_13_content .modulo_13_item_info .item_boton {
  border-radius: 0.5rem;
  border: solid 2px rgb(0, 1, 1);
  padding: 0.5rem 1.5rem;
  background-color: rgb(0, 1, 1);
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  font-family: "Borgen";
}
.modulo_13 .modulo_13_content .modulo_13_item_info .item_boton:hover {
  background-color: white;
  color: rgb(0, 1, 1);
}
.modulo_13 .modulo_13_content .modulo_13_item_info_destacado {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-color: white;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  max-width: 60%;
  max-height: 38%;
}
@media screen and (max-width: 1150px) {
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 930px) {
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado {
    display: flex;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-left: 0.5rem;
    padding-bottom: 0.5rem;
    padding-right: 0.5rem;
    position: inherit;
    max-height: 100%;
    align-items: start;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
  }
}
.modulo_13 .modulo_13_content .modulo_13_item_info_destacado .parrafo_titulo_destacado {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1559px) {
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado .parrafo_titulo_destacado {
    font-size: 19px;
  }
}
@media screen and (max-width: 500px) {
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado .parrafo_titulo_destacado {
    text-align: start;
  }
}
.modulo_13 .modulo_13_content .modulo_13_item_info_destacado .item_boton_destacado {
  border-radius: 0.5rem;
  border: solid 2px rgb(0, 1, 1);
  padding: 0.5rem 1.5rem;
  border: solid 1px rgb(0, 1, 1);
  background-color: rgb(0, 1, 1);
  font-size: 17px;
  cursor: pointer;
  color: white;
  font-family: "Borgen";
}
.modulo_13 .modulo_13_content .modulo_13_item_info_destacado .item_boton_destacado:hover {
  color: rgb(0, 1, 1);
  background-color: white;
}
.modulo_13 .descripcion_destacada_ocultable {
  display: block;
}
@media screen and (min-width: 930px) {
  .modulo_13 .descripcion_destacada_ocultable {
    display: none;
  }
}
.modulo_13 .parrafo_titulo {
  font-size: 23px;
  font-weight: bold;
  text-align: start;
}
.modulo_13 p {
  font-size: 15px;
  text-align: start;
  font-weight: lighter;
}
@media (max-width: 1260px) {
  .modulo_13 .modulo_13 .modulo_13_content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1600px) {
  .modulo_13 .modulo_13_content {
    padding-left: 8rem;
    padding-right: 8rem;
  }
  .modulo_13 .parrafo_titulo {
    font-size: 20px;
    font-weight: bold;
    text-align: start;
  }
  .modulo_13 p {
    font-size: 14px;
    text-align: start;
    font-weight: lighter;
  }
}
@media screen and (max-width: 1400px) {
  .modulo_13 .modulo_13_content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1150px) {
  .modulo_13 .modulo_13_content .modulo_13_item_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_info .item_boton {
    border-radius: 0.5rem;
    border: solid 2px rgb(0, 1, 1);
    padding: 0.5rem 1.5rem;
    background-color: rgb(0, 1, 1);
    font-size: 17px;
    color: #fff;
    cursor: pointer;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_1 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    max-height: 13rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    background-color: #fff;
    border-radius: 10px;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_2 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-column-start: 3;
    max-height: 13rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    background-color: #fff;
    border-radius: 10px;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_3 {
    position: relative;
    grid-column: span 2/span 2;
    grid-row: span 4/span 4;
    grid-column-start: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    background-color: #fff;
    border-radius: 10px;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_4 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-row-start: 3;
    max-height: 13rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    background-color: #fff;
    border-radius: 10px;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_5 {
    grid-column: span 2/span 2;
    grid-row: span 2/span 2;
    grid-column-start: 3;
    grid-row-start: 3;
    max-height: 13rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    display: flex;
    background-color: #fff;
    border-radius: 10px;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado .parrafo_titulo_destacado {
    font-size: 20px;
    font-weight: bold;
  }
  .modulo_13 .modulo_13_content .modulo_13_item_info_destacado .item_boton_destacado {
    border-radius: 0.5rem;
    border: solid 2px rgb(0, 1, 1);
    padding: 0.5rem 1.5rem;
    background-color: rgb(0, 1, 1);
    font-size: 15px;
    cursor: pointer;
    color: white;
  }
  .modulo_13 .modulo_13_content .parrafo_titulo {
    font-size: 20px;
    font-weight: bold;
    text-align: start;
  }
  .modulo_13 .modulo_13_content p {
    font-size: 14px;
    text-align: start;
    font-weight: lighter;
  }
}
@media screen and (max-width: 930px) {
  .modulo_13 .modulo_13_content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.modal_actividades {
  width: 85%;
  background-color: rgb(29, 29, 29);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  padding-right: 6rem;
  padding-left: 6rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
  border-radius: 20px;
}
@media screen and (max-width: 1375px) {
  .modal_actividades {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .modal_actividades {
    width: 100%;
  }
}
.modal_actividades .contenedor_modal {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.modal_actividades .contenedor_modal .contenedor_titulos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
.modal_actividades .contenedor_modal .contenedor_titulos .titulo_modal {
  font-weight: bold;
  font-size: 50px;
}
.modal_actividades .contenedor_modal .contenedor_titulos .subtitulo_modal {
  font-weight: lighter;
  font-size: 20px;
}
.modal_actividades .contenedor_modal .contenedor_carrusel_ubicacion {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
}
@media screen and (max-width: 930px) {
  .modal_actividades .contenedor_modal .contenedor_carrusel_ubicacion {
    display: flex;
    flex-direction: column;
  }
}
.modal_actividades .contenedor_modal .contenedor_carrusel_ubicacion .contenedor_carrusel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 10px;
  width: 75%;
}
@media screen and (max-width: 930px) {
  .modal_actividades .contenedor_modal .contenedor_carrusel_ubicacion .contenedor_carrusel {
    width: 100%;
  }
}
.modal_actividades .contenedor_modal .contenedor_carrusel_ubicacion .contenedor_carrusel .carrusel {
  background-color: rgb(62, 63, 63);
  border-radius: 10px;
}

#cerrar_actividades {
  position: absolute;
  background-color: transparent;
  font-weight: bold;
  font-size: 25px;
  color: white;
  border: none;
  right: 10px;
  top: 10px;
}

dialog[open] {
  display: block; /* Muestra el modal */
}

#main_slider {
  margin-bottom: 2rem;
}

#main-slider .splide__slide {
  height: 600px !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#main-slider .splide__slide img {
  width: 100%; /* Hace que las imágenes ocupen todo el contenedor */
  height: auto; /* Mantiene la relación de aspecto */
  -o-object-fit: cover;
     object-fit: cover; /* Asegura que la imagen cubra completamente el contenedor */
}

/* Ajustar el tamaño de las miniaturas */
#thumbnail-slider .splide__slide img {
  width: 100%; /* Las miniaturas deben ocupar todo el espacio disponible en su contenedor */
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Carrusel de miniaturas: tamaño y estilo */
#thumbnail-slider {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  padding-right: 3rem;
}

/* Estilo adicional para las miniaturas */
#thumbnail-slider .splide__slide {
  width: 200px !important; /* Ancho de las miniaturas */
  height: 100px !important; /* Altura de las miniaturas */
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

#thumbnail-slider .splide__slide:hover {
  opacity: 1;
}

/* Estilo para la clase 'grande' en el carrusel principal */
.splide__slide.grande img {
  width: 100%; /* Garantiza que las imágenes grandes ocupen el 100% del contenedor */
  height: 500px; /* Ajusta la altura de las imágenes principales para hacerlas más grandes */
}

.contenedor_ubicacion {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  width: 25%;
  height: 40%;
  background-color: rgb(62, 63, 63);
}
@media screen and (max-width: 930px) {
  .contenedor_ubicacion {
    width: 100%;
  }
}
.contenedor_ubicacion .contenedor_texto_ubicacion {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contenedor_ubicacion .contenedor_texto_ubicacion .titulo_ubicacion {
  font-size: 23px;
  color: white;
  font-weight: bold;
}
@media screen and (max-width: 1375px) {
  .contenedor_ubicacion .contenedor_texto_ubicacion .titulo_ubicacion {
    font-size: 15px;
  }
}
@media screen and (max-width: 930px) {
  .contenedor_ubicacion .contenedor_texto_ubicacion .titulo_ubicacion {
    font-size: 20px;
  }
}
.contenedor_ubicacion .contenedor_texto_ubicacion .descripcion {
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 1375px) {
  .contenedor_ubicacion .contenedor_texto_ubicacion .descripcion {
    font-size: 14px;
  }
}
@media screen and (max-width: 930px) {
  .contenedor_ubicacion .contenedor_texto_ubicacion .descripcion {
    font-size: 18px;
  }
}
.contenedor_ubicacion .contenedor_texto_ubicacion .descripcion p {
  margin-bottom: 5px;
}
.contenedor_ubicacion .contenedor_mapa {
  height: 200px;
}
.contenedor_ubicacion .contenedor_mapa img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 930px) {
  .contenedor_ubicacion .contenedor_mapa img {
    -o-object-fit: fill;
       object-fit: fill;
  }
}

.descripcion_actividades {
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
@media screen and (max-width: 930px) {
  .descripcion_actividades {
    padding-left: 0;
    padding-right: 0;
  }
}
.descripcion_actividades .descripcion_titulo {
  font-weight: bold;
  font-size: 30px;
}
.descripcion_actividades .texto_descripcion {
  font-weight: lighter;
  font-size: 18px;
}

.modal_actividades::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

.modulo_14 {
  position: relative;
  background-image: url("./static/img/seccion-14/foto-fondo-registro.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.modulo_14::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.modulo_14 .contenedor_texto,
.modulo_14 .modulo_14_checkbox,
.modulo_14 form,
.modulo_14 button {
  position: relative;
  z-index: 1;
}
.modulo_14 h2 {
  color: white;
}
.modulo_14 label {
  color: white;
  font-family: "Borgen";
}
.modulo_14 .contenedor_texto {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.modulo_14 .contenedor_texto .modulo_14_title_1 {
  font-size: 40px;
  font-weight: bold;
}
.modulo_14 .contenedor_texto .modulo_14_title_2 {
  font-size: 20px;
}
@media screen and (max-width: 765px) {
  .modulo_14 .contenedor_texto .modulo_14_title_2 {
    text-align: center;
  }
}
.modulo_14 p {
  color: #fff;
}
.modulo_14 form {
  display: grid;
  grid-template-columns: 300px 300px;
  gap: 1rem;
  padding: 3rem;
}
.modulo_14 form input {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: none;
}
.modulo_14 .contenedor_formulario {
  display: flex;
  flex-direction: column;
}
.modulo_14 .contenedor_formulario .modulo_14_checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 3rem;
  padding-bottom: 3rem;
  font-weight: bold;
}
.modulo_14 .boton_enviar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 820px) {
  .modulo_14 .boton_enviar {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.modulo_14 .boton_enviar button {
  border-radius: 0.5rem;
  border: none;
  font-size: 20px;
  cursor: pointer;
  padding: 1.5rem 3rem;
  background-color: rgb(138, 124, 95);
  color: white;
  border: solid 2px rgb(138, 124, 95);
  font-family: "Borgen";
}
.modulo_14 .boton_enviar button:hover {
  background-color: white;
  color: rgb(138, 124, 95);
}

@media (max-width: 1024px) {
  .modulo_14 {
    flex-direction: column;
    padding: 2rem;
  }
  .modulo_14 form {
    grid-template-columns: 1fr;
  }
}
.modulo_15 {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 6rem 0;
}
.modulo_15 .modulo_15_header {
  text-align: center;
  margin: 2rem;
}
.modulo_15 .modulo_15_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modulo_15 .modulo_15_content button {
  border: none;
  background: transparent;
  margin: 1rem;
}
.modulo_15 .modulo_15_content .splide__track {
  width: 70vw;
}
@media screen and (max-width: 820px) {
  .modulo_15 .modulo_15_content .splide__track {
    width: 85vw;
  }
}
.modulo_15 .modulo_15_content .modulo_15_content_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: rgb(138, 124, 95) 1px solid;
  border-bottom: 5px solid rgb(138, 124, 95);
  border-radius: 0.5rem;
  padding: 0rem 3.5rem;
  padding: 1rem;
}
.modulo_15 .modulo_15_content .modulo_15_content_item a {
  color: #ff6d5e;
  text-decoration: none;
}
.modulo_15 .modulo_15_content .modulo_15_content_item img {
  margin: 0.5rem;
  height: 4rem;
}

@media (max-width: 768px) {
  .modulo_15 .modulo_15_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
  .modulo_15 .modulo_15_content button {
    display: none;
  }
}
.header_ubicacion {
  position: relative;
  background-image: url("./static/routes/ubicacion.png");
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 35vh;
}

.ubicacion {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ubicacion {
    margin: 3rem 2rem;
  }
}
@media screen and (max-width: 480px) {
  .ubicacion {
    margin: 2rem 1rem;
  }
}
.ubicacion h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .ubicacion h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .ubicacion h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.ubicacion .ubicacion_text {
  padding: 1rem 8rem 0 8rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .ubicacion .ubicacion_text {
    padding: 1rem 2rem 0 2rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .ubicacion .ubicacion_text {
    padding: 1rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

.ubicacion_mapa {
  width: 100vw;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .ubicacion_mapa {
    height: 50vh;
    margin: 1.5rem 0;
  }
}
@media screen and (max-width: 480px) {
  .ubicacion_mapa {
    height: 40vh;
    margin: 1rem 0;
  }
}

.mapa {
  width: 80%;
  height: 100%;
  border: 2px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mapa {
    width: 90%;
    border-width: 1px;
  }
}
@media screen and (max-width: 480px) {
  .mapa {
    width: 95%;
    margin: 0 1rem;
  }
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.header_apartamentos {
  position: relative;
  background-image: url("./static/img/seccion-8/foto-promocion.png");
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 35vh;
}

.header_contacto {
  position: relative;
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 35vh;
}

.contacto_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 5rem 10rem 0 10rem;
  text-align: center;
}
@media (max-width: 768px) {
  .contacto_info {
    margin: 3rem 5rem 0 5rem;
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .contacto_info {
    margin: 2rem 1rem 0 1rem;
    gap: 1rem;
  }
}
.contacto_info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contacto_info h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .contacto_info h2 {
    font-size: 1.5rem;
  }
}
.contacto_info p {
  line-height: 1.6;
  max-width: 800px;
}
@media (max-width: 768px) {
  .contacto_info p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .contacto_info p {
    font-size: 0.9rem;
    text-align: left;
  }
}

.contacto_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 5rem 0;
  max-width: 1000px;
  margin: 5rem auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .contacto_form {
    margin: 3rem auto;
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .contacto_form {
    margin: 2rem auto;
    padding: 0 0.5rem;
  }
}

.contacto_button {
  background-color: rgb(138, 124, 95);
  color: #fff;
  padding: 1rem 4rem;
  margin: 1rem;
  border: rgb(138, 124, 95) 2px solid;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .contacto_button {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 200px;
  }
}
.contacto_button:hover {
  background-color: #fff;
  color: rgb(138, 124, 95);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[type=text], input[type=email] {
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgb(138, 124, 95);
  width: 100%;
  min-width: 250px;
  font-size: 1rem;
}
@media (max-width: 480px) {
  input[type=text], input[type=email] {
    padding: 0.8rem;
    font-size: 0.95rem;
    min-width: 100%;
  }
}
input[type=text]:focus, input[type=email]:focus {
  outline: none;
  border: 2px solid rgb(138, 124, 95);
  transition: 0.3s;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder {
  color: rgb(138, 124, 95);
}
input[type=text]::placeholder, input[type=email]::placeholder {
  color: rgb(138, 124, 95);
}

input[type=checkbox] {
  width: auto;
  min-width: auto;
}

.form_fields_container {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
}
@media (max-width: 768px) {
  .form_fields_container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.form_inputs_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.checkbox_container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
  max-width: 800px;
  text-align: left;
}
.checkbox_container input[type=checkbox] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.checkbox_container label {
  line-height: 1.4;
  font-size: 0.95rem;
}
@media (max-width: 480px) {
  .checkbox_container label {
    font-size: 0.9rem;
  }
}

textarea {
  width: 100%;
  min-width: 300px;
  height: 150px;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgb(138, 124, 95);
  resize: vertical;
  font-family: inherit;
}
@media (max-width: 768px) {
  textarea {
    min-width: 100%;
    height: 120px;
  }
}
@media (max-width: 480px) {
  textarea {
    height: 100px;
    padding: 0.8rem;
  }
}
textarea:focus {
  outline: none;
  border: 2px solid rgb(138, 124, 95);
  transition: 0.3s;
}
textarea::-moz-placeholder {
  color: rgb(138, 124, 95);
}
textarea::placeholder {
  color: rgb(138, 124, 95);
}

.header_fidelizate {
  position: relative;
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 35vh;
}

.fidelizate_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 5rem 10rem 0 10rem;
}
@media (max-width: 768px) {
  .fidelizate_info {
    margin: 2rem 1rem 0 1rem;
    gap: 1rem;
  }
}

.fidelizate_form_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 5rem 10rem;
}
@media (max-width: 768px) {
  .fidelizate_form_container {
    grid-template-columns: 1fr;
    margin: 2rem 1rem;
    gap: 1rem;
  }
}

.fidelizate_form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 5rem 0;
}
@media (max-width: 768px) {
  .fidelizate_form {
    margin: 2rem 0;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}
.fidelizate_form input[type=text],
.fidelizate_form input[type=email],
.fidelizate_form input[type=tel],
.fidelizate_form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.fidelizate_form input[type=text]:focus,
.fidelizate_form input[type=email]:focus,
.fidelizate_form input[type=tel]:focus,
.fidelizate_form select:focus {
  outline: none;
  border-color: rgb(138, 124, 95);
}
.fidelizate_form input[type=text]::-moz-placeholder, .fidelizate_form input[type=email]::-moz-placeholder, .fidelizate_form input[type=tel]::-moz-placeholder, .fidelizate_form select::-moz-placeholder {
  color: #999;
  font-size: 16px;
}
.fidelizate_form input[type=text]::placeholder,
.fidelizate_form input[type=email]::placeholder,
.fidelizate_form input[type=tel]::placeholder,
.fidelizate_form select::placeholder {
  color: #999;
  font-size: 16px;
}
.fidelizate_form .form_row {
  display: flex;
  gap: 1rem;
  width: 100%;
  max-width: 600px;
  align-items: center;
}
.fidelizate_form .form_row input,
.fidelizate_form .form_row select {
  flex: 1;
}
.fidelizate_form .form_row .date_label {
  min-width: 120px;
  font-weight: bold;
  color: #333;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 768px) {
  .fidelizate_form .form_row:not(.date_row) {
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
  }
}
.fidelizate_form .form_row.date_row {
  align-items: center;
}
.fidelizate_form .form_row.date_row .date_label {
  margin-right: 1rem;
}
.fidelizate_form .form_row.date_row .date_selects {
  display: flex;
  gap: 0.5rem;
  flex: 1;
}
.fidelizate_form .form_row.date_row .date_selects select {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .fidelizate_form .form_row.date_row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .fidelizate_form .form_row.date_row .date_label {
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 13px;
    min-width: auto;
  }
  .fidelizate_form .form_row.date_row .date_selects {
    gap: 0.5rem;
  }
  .fidelizate_form .form_row.date_row .date_selects select {
    flex: 1;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .fidelizate_form .form_row {
    gap: 0.3rem;
  }
  .fidelizate_form .form_row input,
  .fidelizate_form .form_row select {
    font-size: 14px;
    padding: 10px 12px;
  }
}
.fidelizate_form .checkbox_container {
  width: 100%;
  max-width: 600px;
}
.fidelizate_form .checkbox_container .checkbox_item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.fidelizate_form .checkbox_container .checkbox_item input[type=checkbox] {
  width: auto;
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.fidelizate_form .checkbox_container .checkbox_item label {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 768px) {
  .fidelizate_form .checkbox_container .checkbox_item {
    margin-bottom: 1.5rem;
  }
  .fidelizate_form .checkbox_container .checkbox_item label {
    font-size: 13px;
    line-height: 1.3;
  }
}
.fidelizate_form .recaptcha_container {
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}
.fidelizate_form .legal_text {
  width: 100%;
  max-width: 600px;
  margin-top: 2rem;
}
.fidelizate_form .legal_text p {
  font-size: 12px;
  line-height: 1.4;
  color: #666;
  text-align: center;
  margin: 0;
}
.fidelizate_form .legal_text p strong {
  color: #333;
  font-weight: bold;
}
@media (max-width: 768px) {
  .fidelizate_form .legal_text {
    margin-top: 1.5rem;
  }
  .fidelizate_form .legal_text p {
    font-size: 11px;
    line-height: 1.3;
    text-align: left;
    padding: 0 0.5rem;
  }
}
@media (max-width: 480px) {
  .fidelizate_form .legal_text p {
    font-size: 10px;
    line-height: 1.2;
  }
}

.fidelizate_button {
  background-color: rgb(138, 124, 95);
  color: #fff;
  padding: 1rem 4rem;
  margin: 1rem;
  border: rgb(138, 124, 95) 2px solid;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.fidelizate_button:hover {
  background-color: #fff;
  color: rgb(138, 124, 95);
  transition: 0.3s;
}
@media (max-width: 768px) {
  .fidelizate_button {
    width: 100%;
    max-width: 300px;
    padding: 12px 2rem;
    margin: 1.5rem 0;
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .fidelizate_button {
    padding: 10px 1.5rem;
    font-size: 14px;
  }
}

.fidelizate_info_2 {
  background-color: rgb(138, 124, 95);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .fidelizate_info_2 {
    padding: 2rem 1rem;
    gap: 0.5rem;
  }
  .fidelizate_info_2 p {
    font-size: 14px;
    text-align: center;
  }
  .fidelizate_info_2 ul {
    padding-left: 1rem;
  }
  .fidelizate_info_2 ul li p {
    font-size: 13px;
  }
}

.header_servicios {
  position: relative;
  background-image: url("./static/routes/servicios.jpg");
  background-size: cover; /* Ajusta la imagen para cubrir todo el div */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 35vh;
}

.header_opiniones {
  position: relative;
  background-image: url("./static/routes/opiniones.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 35vh;
  overflow: hidden;
}
.header_opiniones .overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(138, 124, 95, 0.45);
  z-index: 2;
  pointer-events: none;
}

.seccion_opiniones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  margin: 2rem;
  text-align: center;
}

.seccion_opiniones_header {
  margin: 2rem;
}

.seccion_opiniones_contenido {
  margin: 2rem 20rem;
}.modulo_6_item {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.modulo_6_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.modulo_6_item .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.85) 100%);
  color: #fff !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 2;
}

.modulo_6_item .overlay .modulo_6_item_content {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 1.2rem;
  z-index: 3;
  width: auto;
  max-width: 90%;
  transition: transform 0.25s cubic-bezier(.4,1.3,.6,1), box-shadow 0.25s;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.12);
  transform-origin: left bottom;
}


.modulo_6_item:hover .overlay .modulo_6_item_content {
  transform: scale(1.22);
  box-shadow: 0 12px 48px 0 rgba(0,0,0,0.25);
}




.modulo_6_item .overlay h5,
.modulo_6_item .overlay .modulo_6_item_content h5,
.modulo_6_item .overlay button,
.modulo_6_item .overlay a,
.modulo_6_item .overlay span,
.modulo_6_item .overlay p {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  margin: 0.2rem 0 0.2rem 0;
}
.modulo_6_item .overlay .modulo_6_item_content h5,
.modulo_6_item .overlay h5 {
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), color 0.3s;
}

.modulo_6_item .overlay .btn-ver-habitacion {
  font-family: 'Fineliner Script', cursive, sans-serif;

  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  background: rgba(0,0,0,0.45);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.6em 1.6em 0.6em 1.1em;
  font-size: 1.08rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: none;
  text-shadow: 0 1px 2px rgba(0,0,0,0.25);
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: all 0.22s cubic-bezier(.4,2,.6,1);
  z-index: 4;
}

.modulo_6_item .overlay .btn-ver-habitacion::after {
  content: '\2192';
  display: inline-block;
  font-size: 1.2em;
  margin-left: 0.5em;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1);
}

.modulo_6_item .overlay .btn-ver-habitacion:hover, .modulo_6_item .overlay .btn-ver-habitacion:focus {
  background: rgba(0,0,0,0.65);
  color: #fff !important;
  filter: brightness(1.12);
  transform: scale(1.09);
}

.modulo_6_item .overlay .btn-ver-habitacion:hover::after, .modulo_6_item .overlay .btn-ver-habitacion:focus::after {
  transform: translateX(6px);
}

  display: inline-block;
  background: linear-gradient(90deg, #f7c873 0%, #b48a4a 100%);
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18), 0 1.5px 5px rgba(180,138,74,0.10);
  padding: 0.7rem 2.2rem;
  font-size: 1.05rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.18);
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
  cursor: pointer;
  outline: none;
  transition: all 0.28s cubic-bezier(.4,2,.6,1), box-shadow 0.28s, background 0.28s;
  z-index: 4;
}

.modulo_6_item .overlay .btn-ver-habitacion:hover, .modulo_6_item .overlay .btn-ver-habitacion:focus {
  background: linear-gradient(90deg, #ffd88b 0%, #b48a4a 100%);
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.28), 0 2px 8px rgba(180,138,74,0.15);
  border-color: #fff;
  filter: brightness(1.07) saturate(1.15);
  text-shadow: 0 2px 8px rgba(0,0,0,0.28);
}

  transition: transform 0.3s cubic-bezier(.4,2,.6,1), background 0.3s, color 0.3s;
}

.modulo_6_item:hover .overlay .modulo_6_item_content h5,
.modulo_6_item:hover .overlay h5,
.modulo_6_item:hover .overlay .btn-ver-habitacion {
  transform: scale(1.08);
  color: #fff !important;
  z-index: 3;
}



.modulo_6_item .overlay button {
  display: flex;
  gap: 1rem;
  background: rgba(0,0,0,0.2);
  color: #fff !important;
  text-decoration: none;
  font-weight: bold;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
  z-index: 2;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  margin-top: 0.5rem;
}
.modulo_6_item .overlay button:hover {
  border-bottom: #fff 2px solid;
  font-size: 1rem;
  background: rgba(0,0,0,0.4);
}
.modulo_6_item .overlay button img {
  filter: brightness(0) invert(1);
}