/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Roboto';
  src: url('font/Roboto-Light.ttf') format('ttf '),
       url('font/Roboto-Bold.ttf') format('ttf '),
       url('font/Roboto-Regular.ttf') format('ttf ');
  font-weight: normal;
  font-style: normal;
}


html, body  {
font-family: 'Roboto', sans-serif
  overflow-x: hidden;
  max-width: 100%;
}


input, select, textarea, button {
  font-size: 16px !important; /* evita zoom en móviles al hacer focus */
}


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #C8D725; /* Color de fondo del preloader */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


/* Para navegadores basados en WebKit (Chrome, Safari, Edge Chromium) */
::-webkit-scrollbar {
  width: 8px;       /* ancho del scroll vertical */
  height: 8px;      /* altura del scroll horizontal */
}

::-webkit-scrollbar-track {
  background: #C8D725; /* color de fondo de la pista */
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #C8D725; /* color del scroll */
  border-radius: 8px;
  border: 2px solid #C8D725; /* espacio entre el scroll y la pista */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #C8D725; /* color al pasar el mouse */
}

/* Firefox soporta estas propiedades */
* {
  scrollbar-width: thin;              /* "auto" | "thin" | "none" */
  scrollbar-color: #C8D725; #C8D725;   /* thumb | track */
}


.titu   {
  font-family: 'Roboto', sans-serif;
  font-size:32px;
  margin-top:13px;
  margin-bottom: 5px;
  margin-left:25px;
  font-weight: 300;
  text-decoration:none;
  
}
  
.titufo   {
  font-family: 'Roboto', sans-serif;
  width:400px;
  font-size:32px;
  margin-top:13px;
  margin-bottom: 5px;
  margin-left:0px;
  font-weight: 300;
  color:#fff;
  text-decoration:none;
  
}

.logo {
  position: absolute;
  width: 100vw; /* Ocupa todo el ancho de la pantalla */
  height: 100vh; /* Ocupa toda la altura de la pantalla */
  object-fit: contain; /* Ajusta la imagen para que no se deforme */
  animation: expandLogo 16s ease-in-out forwards; /* Animación del logo */
}


.go {
  position: absolute;
  margin-top:-130%;
  margin-left:-55%;
  width: 100px; /* Ocupa todo el ancho de la pantalla */

}


.explore {
  position: absolute;
  margin-top:-100%;
  margin-left:-50%;
  width: 130px; /* Ocupa todo el ancho de la pantalla */


}

@keyframes expandLogo {
  0% {
      transform: scale(0); /* Logo en su tamaño original */
  }
  100% {
      transform: scale(90); /* El logo se expande a llenar toda la pantalla */
  }
}

/* Ocultar el preloader una vez cargada la página */
.loaded #preloader {
  display: none;
}
/* Reset de márgenes y rellenos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Reset de márgenes y rellenos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}





/* Estilos generales para la barra de navegación */
.navbar-minimalista {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box; /* Asegura que el padding y border no afecten el ancho */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow-x: hidden; /* Evita que se desborde horizontalmente */
    white-space: nowrap; /* Impide que el contenido se divida en varias líneas */
}

/* Para pantallas pequeñas y dispositivos móviles */
@media (max-width: 768px) {
    .navbar-minimalista {
        padding: 10px 15px; /* Ajustar el padding para dispositivos móviles */
        justify-content: space-between; /* Mantener los elementos en una línea */
    }

    /* Si el contenido sigue saliendo de la pantalla, reducir los márgenes */
    .navbar-minimalista .logo, .navbar-minimalista .menu {
        font-size: 14px; /* Reducir tamaño de fuente para evitar el desbordamiento */
    }
}

/* Para evitar que los elementos se desborden */
.navbar-minimalista .logo,
.navbar-minimalista .menu {
    overflow: hidden; 
    text-overflow: ellipsis; /* Mostrar puntos suspensivos si el contenido es largo */
    white-space: nowrap; /* Asegura que los elementos no se partan en múltiples líneas */
}

/* Asegura que los enlaces o el logo no se desborden */
.navbar-minimalista a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Previene el desbordamiento horizontal en toda la página */
body {
    overflow-x: hidden; /* Evita el desbordamiento horizontal en toda la página */
}







/* Logo */
.logo-minimalista .logo-img {
  width: 180px; /* Ajusta el tamaño del logo */
  height: auto;
}

/* Enlace de WhatsApp */
.whatsapp-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Espacio entre el icono y el texto */
}

.whatsapp-enlace {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: 300; /* Fuente más ligera */
  text-decoration: none;
}

.whatsapp-icono {
  width: 22px;
  height: 22px;
}

.whatsapp-texto {
  margin-left: 5px;
}

/* Iconos de redes sociales */
.iconos-redes {
  margin-letf:3%;
  display: flex;
  gap: 15px; /* Espacio entre los iconos */
  justify-content: center;
  text-align: center;
}

.icono-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.icono-social:hover img {
  transform: scale(1.1); /* Efecto al pasar el mouse */
}

/* Estilo general del body */
body {
  font-family: 'Roboto', sans-serif;
  padding-top: 60px; /* Ajuste para no tapar contenido con la navbar fija */
}
.swiper-container {
  width: 100%;
  height: 100vh;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}










/* Wpp boton ingferior fixet */
.whatsapp-float {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background-color:rgb(20, 232, 97);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}









/*BOTON OSCURO O BLANCO EN MOVIL EN NAV */ 
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch #input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2196f3;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 0;
  overflow: hidden;
}

.sun-moon {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: yellow;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

#input:checked + .slider {
  background-color: black;
}

#input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

#input:checked + .slider .sun-moon {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: white;
  -webkit-animation: rotate-center 0.6s ease-in-out both;
  animation: rotate-center 0.6s ease-in-out both;
}

.moon-dot {
  opacity: 0;
  transition: 0.4s;
  fill: gray;
}

#input:checked + .slider .sun-moon .moon-dot {
  opacity: 1;
}

.slider.round {
  border-radius: 34px;
}

.slider.round .sun-moon {
  border-radius: 50%;
}

#moon-dot-1 {
  left: 10px;
  top: 3px;
  position: absolute;
  width: 6px;
  height: 6px;
  z-index: 4;
}

#moon-dot-2 {
  left: 2px;
  top: 10px;
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 4;
}

#moon-dot-3 {
  left: 16px;
  top: 18px;
  position: absolute;
  width: 3px;
  height: 3px;
  z-index: 4;
}

#light-ray-1 {
  left: -8px;
  top: -8px;
  position: absolute;
  width: 43px;
  height: 43px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-2 {
  left: -50%;
  top: -50%;
  position: absolute;
  width: 55px;
  height: 55px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

#light-ray-3 {
  left: -18px;
  top: -18px;
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: -1;
  fill: white;
  opacity: 10%;
}

.cloud-light {
  position: absolute;
  fill: #eee;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.cloud-dark {
  position: absolute;
  fill: #ccc;
  animation-name: cloud-move;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  animation-delay: 1s;
}

#cloud-1 {
  left: 30px;
  top: 15px;
  width: 40px;
}

#cloud-2 {
  left: 44px;
  top: 10px;
  width: 20px;
}

#cloud-3 {
  left: 18px;
  top: 24px;
  width: 30px;
}

#cloud-4 {
  left: 36px;
  top: 18px;
  width: 40px;
}

#cloud-5 {
  left: 48px;
  top: 14px;
  width: 20px;
}

#cloud-6 {
  left: 22px;
  top: 26px;
  width: 30px;
}

@keyframes cloud-move {
  0% {
    transform: translateX(0px);
  }

  40% {
    transform: translateX(4px);
  }

  80% {
    transform: translateX(-4px);
  }

  100% {
    transform: translateX(0px);
  }
}

.stars {
  transform: translateY(-32px);
  opacity: 0;
  transition: 0.4s;
}

.star {
  fill: white;
  position: absolute;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  animation-name: star-twinkle;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

#input:checked + .slider .stars {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

#star-1 {
  width: 20px;
  top: 2px;
  left: 3px;
  animation-delay: 0.3s;
}

#star-2 {
  width: 6px;
  top: 16px;
  left: 3px;
}

#star-3 {
  width: 12px;
  top: 20px;
  left: 10px;
  animation-delay: 0.6s;
}

#star-4 {
  width: 18px;
  top: 0px;
  left: 18px;
  animation-delay: 1.3s;
}

@keyframes star-twinkle {
  0% {
    transform: scale(1);
  }

  40% {
    transform: scale(1.2);
  }

  80% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}





 
/*Slider incio*/  
  .promo-banner {
      background-color: #black;
      padding: 20px;
      border-radius: 10px;
      max-width: 100%;
      text-align: left;
      margin-left:left;
  }
  
  .promo-content h1 {
      font-size: 24px;
      margin-bottom: 10px;
      color: #fff;
  }
  
  .promo-content p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #fff;
  }
  
  .phone-form {
      display: flex;
      justify-content: center;
      gap: 10px;
  }
  
  .phone-form input {
      padding: 10px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      width: 60%;
  }
  
  .phone-form button {
      padding: 10px 20px;
      font-size: 16px;
      background-color:rgb(255, 255, 255);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }
  
  .phone-form button:hover {
      background-color:rgb(255, 255, 255);
  }













  


  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  .q-main {
      font-family: 'Roboto', sans-serif;
      background-color: black;
      color: white;
  }
  .q-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: left;
      justify-content: left;
  }
  .q-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
  }


  .q-content {
      position: absolute;
      left: 10%;
      max-width: 800px;
      text-align: left;
  }
  .q-content h1 {
      margin-top:300px;
      font-size: 4.5em;
      font-weight: bold;
      text-align: left;
  }
  .q-content p {
      font-size: 1.1em;
      margin-top: 30px;
      text-align: left;
      font-weight: 50;
  }
  .q-call-button {
      margin-top: 0px;
      background-color: #cddc39;
      padding: 3px 3px;
      text-align:center;
      border-radius: 10px;
      display: inline-block;
      text-decoration: none;
      color: #fff;
      width:70px;
      font-weight: ;
      font-size: 1.2em;
  }



.q-icon {
  display: flex;
  flex-wrap: nowrap; /* 👈 evita que pasen a segunda línea */
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  overflow-x: auto; /* 👈 permite scroll horizontal en pantallas pequeñas */
  padding: 10px;
  box-sizing: border-box;
  scrollbar-width: none; /* Firefox oculta la barra */
}

.q-icon::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.q-icon a,
.q-icon button.translate-btn {
  flex: 0 0 auto; /* 👈 evita que se estiren o achiquen */
  display: flex;
  justify-content: center;
  align-items: center;
}

.q-icon img {
  max-width: 70px;
  height: auto;
  transition: transform 0.3s ease;
}

.q-icon img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}




  .picon{
      position:absolute;
      margin-top:-200px;
      margin-left: 335px;
      width:10px;
      text-align:center;
      align-items:center;
      gap: 4px;
  }

  @media (max-width: 608px) {
      .q-content {
          left: 5%;
          max-width: 90%;
          text-align: left;
      }
      .q-content h1 {
          font-size: 2.4em;
          margin-top: 270px;
          font-weight: 50;
      }
      .q-content p {
          font-size: 16px;
          margin-top:100px;
      }
      .q-icon {
          display: flex;
          align-items: center;
          justify-content: center;
  
      }
      .picon{
          position:absolute;
          margin-top:100px;
          margin-left: 195px;
          width:50px;
          text-align:center;
          align-items:center;
          gap: 4px;
          
  }





  .w-card {
      margin-left:0.5%;
      margin-top:3%;
      width: 99%;
      height: 575px;
      position: relative;
  }
  

  .w-background1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/guatapeb.jpeg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }

    .w-background2 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/graff.jpg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }


    .w-background3 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/napoles.jpg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }


    .w-background4 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/santa.jpg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }

    .w-background5 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/rio.jpg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }

    .w-background6 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/mede.jpeg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }

    .w-background7 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.986) 100%),
        url('../img/cafe.jpeg');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      z-index: 0;
    }

    

  .w-button-1 {
      width: 80px;
      height: 37px;
      position: absolute;
      background: #C8D725;
      border-radius: 12px;
      left: 300px;
      top: 45px;
  }
  
  .w-button-2 {
      width: 229px;
      height: 37px;
      position: absolute;
      background: #C8D725;
      border-radius: 12px;
      left: 22px;
      top: 45px;
  }
  
  .w-description {
      width: 338px;
      position: absolute;
      color: white;
      font-size: 13px;
      font-family: font-family: 'Roboto', sans-serif;;
      font-weight: 200;
      word-wrap: break-word;
      left: 28px;
      top: 480px;
  }
  
  .w-price {
      position: absolute;
      color: white;
      font-size: 16px;
      font-family: font-family: 'Roboto', sans-serif;
      font-weight: 100;
      word-wrap: break-word;
      left: 340px;
      top: 54px;
  }
  
  .w-title {
      position: absolute;
      color: white;
      font-size: 16px;
      font-family: font-family: 'Roboto', sans-serif;
      font-weight: 300;
      word-wrap: break-word;
      left: 61px;
      top: 54px;
  }
  
  .w-icon-1 {
      position: absolute;
      left: 32px;
      top:50px;
  }
  
  .w-icon-2 {
      width: 24px;
      height: 24px;
      position: absolute;
      left: 308px;
      top: 51px;
  }
  
  .w-content {
      width: 379px;
      height: 131px;
      position: absolute;
      left: 23px;
      top: 327px;
  }
  
  .w-content-background {
      width: 149px;
      height: 131px;

  }
  
  .w-content-price {
      position: absolute;
      color: white;
      font-size: 13px;
      font-family:font-family: 'Roboto', sans-serif;
      font-weight: 300;
      word-wrap: break-word;
      left: 260px;
      top: 8px;
  }
  
  .w-content-icon-1, .w-content-icon-2, .w-content-icon-3, .w-content-icon-4 {
      width: 36px;
      height: 35px;
      position: absolute;
      background: rgba(13.39, 0.04, 0.04, 0.67);
      border-radius: 9999px;
  }
  
  .w-content-icon-1 {
      left: 221px;
      top: 40px;
  }
  
  .w-content-icon-2 {
      left: 262px;
      top: 40px;
  }
  
  .w-content-icon-3 {
      left: 221px;
      top: 0px;
  }
  
  .w-content-icon-4 {
      left: 303px;
      top: 40px;
  }
  
  .w-content-icon-5, .w-content-icon-6 {
      position: absolute;
  }
  
  .w-content-icon-5 {
      left: 226px;
      top: 45px;
  }
  
  .w-content-icon-6 {
      left: 266.89px;
      top: 44.75px;
  }
  
  .w-content-button {
      width: 41px;
      height: 41px;
      position: absolute;
      background: #C8D725;
      border-radius: 9999px;
      left: 221px;
      top: 90px;
  }
  
  .w-content-reserve {
      position: absolute;
      padding: 10px;
      width: 95px;
      height: 37px;
      background: #C8D725;
      border-radius: 11px;
      color: white;
      font-size: 16px;
      font-weight: 10;
      word-wrap: break-word;
      left: 274px;
      top: 92px;
  }
  
  .w-content-distance {
      width: 65px;
      position: absolute;
      color: black;
      font-size: 16px;
      font-family: font-family: 'Roboto', sans-serif;
      font-weight: 400;
      line-height: 20px;
      word-wrap: break-word;
      left: 20px;
      top: 96px;
  }
  
  .w-content-icon-7, .w-content-icon-8 {
      width: 22px;
      height: 22px;
      margin-top:2px;
      position: absolute;
  }
  
  .w-content-icon-7 {
      left: 310px;
      top: 46px;
  }
  
  .w-content-icon-8 {
      left: 227px;
      top: 6px;
  }
  
  .w-availability {
      width: 114px;
      height: 31px;
      position: absolute;
      text-align: center;
      color: black;
  
      font-size: 12px;
     font-family: 'Roboto', sans-serif;
      font-weight: 100;
      line-height: 36px;
      word-wrap: break-word;
      left: 34px;
      top: 394px;
  }

  
  
  
  
  
  
  
  
  
  
  
  
  


.accordion {
  max-width: 800px;
  margin-top:20px;

  margin: 0 auto;
}

.accordion-item {
  border-bottom: 0.5px solid #ddd;
}

.accordion-checkbox {
  display: none;
}

.accordion-header {
  display: block;
  padding: 15px;
  background-color: #fff;
  cursor: pointer;
  font-weight: 100;
  position: relative;
}

.accordion-header::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 12px;
  line-height: 20px;
}

.accordion-checkbox:checked + .accordion-header::after {
  content: '-';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #fff;
  padding: 0 15px;
}

.accordion-checkbox:checked ~ .accordion-content {
  max-height: 100px; /* Ajusta este valor según el contenido */
  padding: 15px;
}

  
  
  
  
  
  

.footer-container {
  width: 100%;
  font-size:14px;
  height: 1320px;
  position: relative;
  background: #343434;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color:#fff;
}

.footer-section {
  font-size:13px;
  font-weight: 300;
  word-wrap: break-word;
  color:#fff;
}

.title {
  font-size:13px;
  font-weight: 400;
  color:#fff;
}

.section1 {
  font-size:13px;
  width: 154px;
  color:#fff;
}

.section2 {
  font-size:13px;
  width: 100%;
  color:#fff;
}

.section3 {
  font-size:13px;
  width: 114px;
  color:#fff;
}

.section4 {
  font-size:13px;
  width: 65px;
  color:#fff;
}

.section5 {
  font-size:13px;
  width: 65px;
  color:#fff;
}

.section6 {
  font-size:13px;
  width: 160px;
  color:#fff;
}

.year {
  font-size: 55px;
  font-weight: 400;
  color:#fff;
}

.text {
  text-decoration:none;
}





/* Contenedor principal */
      .T-apoyos-container {
          text-align: center;
          padding: 20px;
          font-family: 'Roboto', sans-serif;
      }

      .T-apoyos-container h2 {
          font-size: 24px;
          margin-bottom: 20px;
      }

      /* Contenedor del carrusel */
      .T-slider-container {
          width: 100%;
          overflow: hidden;
          position: relative;
          background: #fff;
          padding: 10px 0;
      }

      /* Carrusel en movimiento */
      .T-logos-slider {
          display: flex;
          gap: 50px;
          width: fit-content;
          animation: T-slide 15s linear infinite;
      }

      /* Animación del carrusel */
      @keyframes T-slide {
          from { transform: translateX(0); }
          to { transform: translateX(-100%); }
      }

      /* Contenedor de logos */
      .T-logos-slider img {
          width: 100px; /* Ajusta el tamaño de los logos */
          height: auto;
          object-fit: contain;
          filter: grayscale(100%); /* Convierte los logos a escala de grises */
          transition: filter 0.3s ease-in-out;
      }

      /* Efecto al pasar el mouse sobre los logos */
      .T-logos-slider img:hover {
          filter: grayscale(0%); /* Vuelve a color al pasar el mouse */
      }

      /* Clonación para efecto infinito */
      .T-logos-wrapper {
          display: flex;
          flex-wrap: nowrap;
      }
  
  
  
  
  
  

/* Fondo del modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Mostrar cuando está activo */
.modal.active {
  display: flex;
}

/* Contenedor del contenido */
.modal-content {
  background: #fff;
  padding: 25px 20px;
  border-radius: 24px;
  max-width: 398px;
  width: 90%;
  position: relative;
  font-family: sans-serif;
}

  
  
.custom-select {
  appearance: none;
  -webkit-appearance: none; /* Safari & iOS */
  -moz-appearance: none;
  background-color: #fff;
  color: #333;
  text-decoration: none;
      margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 14px;
  height: 44px;
  font-size: 16px;
  width: 100%;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23333'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}



        



        .skeleton {
          background: linear-gradient(-90deg, #eee 0%, #f5f5f5 50%, #eee 100%);
          background-size: 400% 400%;
          animation: shimmer 1.2s ease-in-out infinite;
          border-radius: 10px;
        }
        
        @keyframes shimmer {
          0% { background-position: 100% 0; }
          100% { background-position: -100% 0; }
        }
        
        .w-card-skeleton {
          width: 100%;
          max-width: 350px;
          padding: 1rem;
          margin: auto;
        }
        
        .skeleton-bg {
          height: 180px;
          margin-bottom: 1rem;
        }
        
        .skeleton-title {
          height: 20px;
          width: 60%;
          margin-bottom: 0.5rem;
        }
        
        .skeleton-text {
          height: 16px;
          width: 90%;
          margin-bottom: 0.5rem;
        }
        
        .skeleton-button {
          height: 35px;
          width: 120px;
        }
        

        






        .q-animate-in {
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.8s ease;
        }
        
        .q-animate-in.visible {
          opacity: 1;
          transform: translateY(0);
        }
        




        .share-toast {
          position: fixed;
          bottom: 40px;
          left: 50%;
          transform: translateX(-50%);
          background: #4caf50;
          color: white;
          padding: 10px 20px;
          border-radius: 8px;
          font-size: 14px;
          z-index: 9999;
          opacity: 0;
          pointer-events: none;
          transition: opacity 0.3s ease;
        }
        
        .share-toast.visible {
          opacity: 1;
          pointer-events: auto;
        }
        
        .share-toast.hidden {
          display: none;
        }
        








.q-testimonials-mobile {
width: 100%;
overflow: hidden;
font-family: sans-serif;
background: #fff;
padding: 20px 0;
}

.q-slider-mobile {
display: flex;
width: calc(70vw * 15); /* 15 reseñas */
animation: slideMobile 80s linear infinite; /* 8s por reseña aprox */
}

.q-review-mobile {
width: 100vw;
flex-shrink: 0;
padding: 0 20px;
font-size: 15px;
color: #333;
text-align: left;
box-sizing: border-box;
line-height: 1.6;
}

/* Animación automática para 15 reseñas */
@keyframes slideMobile {
0% { transform: translateX(0vw); }
6.66% { transform: translateX(0vw); }

13.33% { transform: translateX(-100vw); }
20%    { transform: translateX(-100vw); }

26.66% { transform: translateX(-200vw); }
33.33% { transform: translateX(-200vw); }

40%    { transform: translateX(-300vw); }
46.66% { transform: translateX(-300vw); }

53.33% { transform: translateX(-400vw); }
60%    { transform: translateX(-400vw); }

66.66% { transform: translateX(-500vw); }
73.33% { transform: translateX(-500vw); }

80%    { transform: translateX(-600vw); }
86.66% { transform: translateX(-600vw); }

93.33% { transform: translateX(-700vw); }
100%   { transform: translateX(-700vw); }
}


.q-review-invite {
text-align: center;
padding: 20px 15px;
font-size: 15px;
color: black;
background-color: #fff;
border-top: 0.5px solid #ddd;
font-weight: 500;
line-height: 1.5;
}

.q-review-invite a {
display: inline-block;
margin-top: 10px;
color: #313131;
text-decoration: none;
font-weight: bold;
transition: color 0.3s ease;
}

.q-review-invite a:hover {
color: black;
}







.group-214,
.group-214 * {
  box-sizing: border-box;
}
.group-214 {
  height: 36px;
  position: relative;
}
.group-213 {
  width: 395px;
  height: 36px;
  position: static;
}
.ellipse-36 {
  background: rgba(13, 0, 0, 0.67);
  border-radius: 50%;
  width: 36px;
  height: 35px;
  position: absolute;
  left: 237px;
  top: 0px;
}
.ellipse-37 {
  background: rgba(13, 0, 0, 0.67);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 278px;
  top: 0px;
}
.ellipse-38 {
  background: rgba(13, 0, 0, 0.67);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 319px;
  top: 0px;
}
.vuesax-linear-map {
  width: 25px;
  height: 24px;
  position: absolute;
  left: 242px;
  top: 5px;
}
.vuesax-linear-map2 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}
.vuesax-linear-shield-tick {
  width: 24.46px;
  height: 24.46px;
  position: absolute;
  left: 282.89px;
  top: 4.75px;
  overflow: visible;
}
.ellipse-40 {
  background: #c8d725;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 193px;
  top: 0px;
}
.vuesax-linear-whatsapp {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 198px;
  top: 4px;
}
.vuesax-linear-whatsapp2 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}
.ellipse-39 {
  background: rgba(13, 0, 0, 0.67);
  border-radius: 50%;
  width: 36px;
  height: 35px;
  position: absolute;
  left: 359px;
  top: 1px;
}
.compartir-icno-1 {
  width: 20px;
  height: 19px;
  position: absolute;
  left: 366px;
  top: 10px;
  object-fit: cover;
  aspect-ratio: 20/19;
}
.traducir-1 {
  width: 23px;
  height: 23px;
  position: absolute;
  left: 326px;
  top: 6px;
  object-fit: cover;
  aspect-ratio: 1;
}
.preguntas-frecuentes {
  color: var(--primary-color, #1a1a1a);
  text-align: center;
  font-family: "Roboto-Light", sans-serif;
  font-size: 15px;
  line-height: 36px;
  font-weight: 300;
  position: absolute;
  left: 0px;
  top: 4px;
  width: 163px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
}



















.group-218,
.group-218 * {
  box-sizing: border-box;
}
.group-218 {
  height: 140px;
  position: relative;
}
.rectangle-272 {
  background: #373737;
  border-radius: 16px;
  width: 96%;
  height: 140px;
  position: absolute;
  left: 10px;
  top: 0px;
}
._1-adulto {
  color: #ffffff;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 45px;
  top:75px;
}
._1-nino {
  color: #ffffff;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 175px;
  top: 75px;
}
._1-infante {
  color: #ffffff;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 310px;
  top: 75px;
}
._99-000 {
  color: #c8d725;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  left: 45px;
  top: 42px;
}
._99-0002 {
  color: #c8d725;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  left: 175px;
  top: 42px;
}
._13-000 {
  color: #c8d725;
  text-align: left;
  font-family: "Roboto-Light", sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  left: 310px;
  top: 42px;
}



.group-1000 * {
  box-sizing: border-box;
}
.group-1000 {
  height: 57px;
  position: relative;
}
.rectangle-1000 {
  background: #c8d725;
  border-radius: 12px;
  width: 96%;
  height: 57px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.reser {
  color: #ffffff;
  text-align: center;
  font-family: "Roboto-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 42%;
  top: 19px;
  width: 68.29px;
}



.group-222,
.group-222 * {
  box-sizing: border-box;
}
.group-222 {
  height: 134px;
  position: relative;
}
.parque-poblado-7-10-am {
  color: #060606;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 25px;
  top: 10px;
}
.estacion-estadio-7-50-am {
  color: #060606;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 25px;
  top: 61px;
}
.centro-medellin-7-50-am {
  color: #060606;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 25px;
  top: 107px;
}
.group-219 {
  width: 103px;
  height: 38.66px;
  position: static;
}
.rectangle-247 {
  background: #c8d725;
  border-radius: 12px;
  width: 103px;
  height: 38.66px;
  position: absolute;
  left: 282px;
  top: 0px;
}
.group-220 {
  width: 103px;
  height: 38.66px;
  position: static;
}
.rectangle-2472 {
  background: #c8d725;
  border-radius: 12px;
  width: 103px;
  height: 38.66px;
  position: absolute;
  left: 282px;
  top: 48px;
}
.group-221 {
  width: 103px;
  height: 38.66px;
  position: static;
}
.rectangle-2473 {
  background: #c8d725;
  border-radius: 12px;
  width: 103px;
  height: 38.66px;
  position: absolute;
  left: 282px;
  top: 95px;
}
.ellipse-36 {
  background: rgba(13, 0, 0, 0.67);
  border-radius: 50%;
  width: 36px;
  height: 35px;
  position: absolute;
  left: 237px;
  top: 0px;
}
.vuesax-linear-map {
  width: 25px;
  height: 24px;
  position: absolute;
  left: 242px;
  top: 5px;
}
.vuesax-linear-map2 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}
.ellipse-40 {

  border-radius: 50%;
  width: 36px;
  height: 35px;
  position: absolute;
  left: 237px;
  top: 51px;
}
.vuesax-linear-map3 {
  width: 25px;
  height: 24px;
  position: absolute;
  left: 242px;
  top: 56px;
}
.vuesax-linear-map4 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}
.ellipse-41 {

  border-radius: 50%;
  width: 36px;
  height: 35px;
  position: absolute;
  left: 237px;
  top: 99px;
}
.vuesax-linear-map5 {
  width: 25px;
  height: 24px;
  position: absolute;
  left: 242px;
  top: 104px;
}
.vuesax-linear-map6 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}
.ver-mapa {
  color: #343232;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 300px;
  top: 11px;
}
.ver-mapa2 {
  color: #343232;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 300px;
  top: 59px;
}
.ver-mapa3 {
  color: #343232;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
  position: absolute;
  left: 300px;
  top: 106px;
}
















.group-223,
.group-223 * {
  box-sizing: border-box;
}
.group-223 {
  height: 551px;
  position: relative;
}
.group-216 {
  width: 100%;
  height: 551px;
  position: static;
}
.rectangle-248 {
  background: #373737;
  border-radius: 16px;
  width:96%;
  height: 551px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.que-incluye {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 36px;
  font-weight: 500;
  position: absolute;
  left: 20px;
  top: 39px;
  width: 260px;
  height: 42px;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  line-height: 0undefined;
  font-weight: 300;
  position: absolute;
  left: 23px;
  top: 108px;
  width: 333px;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia-span {
  color: #ffffff;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia-span2 {
  color: #ffffff;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
}














.group-224,
.group-224 * {
  box-sizing: border-box;
}
.group-224 {
  height: 592px;
  position: relative;
}
.group-217 {
  width: 430px;
  height: 592px;
  position: static;
}
.rectangle-249 {
  background: #373737;
  border-radius: 16px;
  width: 96%;
  height: 592px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.recomendaciones-viaje {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Medium", sans-serif;
  font-size: 36px;
  font-weight: 500;
  position: absolute;
  left: 20px;
  top: 39px;
  width: 352px;
  height: 42px;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  line-height: 0undefined;
  font-weight: 300;
  position: absolute;
  left: 23px;
  top: 163px;
  width: 333px;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia-span {
  color: #ffffff;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  font-weight: 300;
}
.un-destino-unico-aca-tomaras-las-fotos-mas-bonitas-de-tu-viaje-con-seguridad-transporte-ida-y-vuelta-desayuno-almuerzo-visita-al-pueblo-del-pe-ol-visita-a-la-r-plica-del-antiguo-pe-ol-tour-en-barco-visita-a-la-piedra-del-pe-ol-no-incluye-ascenso-visita-al-municipio-de-guatap-calle-de-los-recuerdos-plaza-de-los-z-calos-malec-n-parque-central-iglesia-gu-a-acompa-ante-tarjeta-de-asistencia-span2 {
  color: #ffffff;
  font-family: "Inter-Light", sans-serif;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
}








.responsive-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* relación 16:9 */
  height: 0;
  left: 0;
  overflow: hidden;
  border-radius: 12px;
}

.responsive-video video {
  position: absolute;
  top: 0;
  left: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
}














.group-225,
.group-225 * {
  box-sizing: border-box;
}
.group-225 {
  height: 596px;
  position: relative;
}
.rectangle-273 {
  background-image: url(../img/b-guatape.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-245 {
  background-image: url(../img/g1.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-246 {
  background-image: url(../img/g2.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-243 {
  background-image: url(../img/g3.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-274 {
  background-image: url(../img/g4.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-275 {
  background-image: url(../img/g5.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-241 {
  background-image: url(../img/g6.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}










.group-f2225 * {
  box-sizing: border-box;
}
.group-f2225 {
  height: 596px;
  position: relative;
}
.rectangle-f2273 {
  background-image: url(../img/f0.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.f2reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-f2245 {
  background-image: url(../img/f3.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-f2246 {
  background-image: url(../img/f2.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-f2243 {
  background-image: url(../img/f5.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-f2274 {
  background-image: url(../img/f4.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-f2275 {
  background-image: url(../img/f1.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-f2241 {
  background-image: url(../img/f6.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}










.group-f3225 * {
  box-sizing: border-box;
}
.group-f3225 {
  height: 596px;
  position: relative;
}
.rectangle-f3273 {
  background-image: url(../img/n0.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.f3reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-f3245 {
  background-image: url(../img/n1.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-f3246 {
  background-image: url(../img/n2.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-f3243 {
  background-image: url(../img/n3.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-f3274 {
  background-image: url(../img/n4.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-f3275 {
  background-image: url(../img/n5.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-f3241 {
  background-image: url(../img/n6.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}













.group-s3225 * {
  box-sizing: border-box;
}
.group-s3225 {
  height: 596px;
  position: relative;
}
.rectangle-s3273 {
  background-image: url(../img/s0.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.s3reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-s3245 {
  background-image: url(../img/s1.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-s3246 {
  background-image: url(../img/s2.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-s3243 {
  background-image: url(../img/s3.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-s3274 {
  background-image: url(../img/s4.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-s3275 {
  background-image: url(../img/s5.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-s3241 {
  background-image: url(../img/s6.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}















.group-r3225 * {
  box-sizing: border-box;
}
.group-r3225 {
  height: 596px;
  position: relative;
}
.rectangle-r3273 {
  background-image: url(../img/r0.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.r3reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-r3245 {
  background-image: url(../img/r1.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-r3246 {
  background-image: url(../img/r2.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-r3243 {
  background-image: url(../img/r3.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-r3274 {
  background-image: url(../img/r5.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-r3275 {
  background-image: url(../img/r6.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-r3241 {
  background-image: url(../img/r4.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}








.group-m3225 * {
  box-sizing: border-box;
}
.group-m3225 {
  height: 596px;
  position: relative;
}
.rectangle-m3273 {
  background-image: url(../img/m0.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.m3reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-m3245 {
  background-image: url(../img/m1.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-m3246 {
  background-image: url(../img/m2.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-m3243 {
  background-image: url(../img/m3.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-m3274 {
  background-image: url(../img/m4.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-m3275 {
  background-image: url(../img/m5.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-m3241 {
  background-image: url(../img/m6.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}

















.group-c3225 * {
  box-sizing: border-box;
}
.group-c3225 {
  height: 596px;
  position: relative;
}
.rectangle-c3273 {
  background-image: url(../img/o0.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 16px;
  width: 96%;
  height: 299px;
  position: absolute;
  left: 10px;
  top: 0px;
}
.c3reservar {
  color: #ffffff;
  text-align: left;
  font-family: "Inter-Light", sans-serif;
  font-size: 16px;
  font-weight: 300;
  position: absolute;
  left: 174px;
  top: 432px;
  width: 68px;
  height: 19px;
}
.rectangle-c3245 {
  background-image: url(../img/o1.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 135px;
  position: absolute;
  left: 10px;
  top: 461px;
}
.rectangle-c3246 {
  background-image: url(../img/o2.webp);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 150px;
  top: 461px;
}
.rectangle-c3243 {
  background-image: url(../img/o3.jpeg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 150px;
  top: 318px;
}
.rectangle-c3274 {
  background-image: url(../img/o5.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 135px;
  position: absolute;
  left: 288px;
  top: 460px;
}
.rectangle-c3275 {
  background-image: url(../img/o6.png);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 131px;
  height: 136px;
  position: absolute;
  left: 288px;
  top: 317px;
}
.rectangle-c3241 {
  background-image: url(../img/o4.jpg);
  background-size: cover;         /* Rellena todo el cuadro */
  background-position: center;    /* Centrada */
  background-repeat: no-repeat;   /* Evita repeticiones */
  border-radius: 32px;
  width: 132px;
  height: 136px;
  position: absolute;
  left: 10px;
  top: 318px;
}














.Tview-button {
    position:absolute;
    z-index:99999999;
    margin-left:66%;
    margin-top:10%;
    background-color: #b6d100; /* Verde lima */
    border-radius: 15px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

  .Tview-button svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
  }




 .Ttour-button {
    position:absolute;
    z-index:99999999;
    margin-left:3%;
    margin-top:10%; 
    background-color: #b6d100; /* Verde lima */
    border-radius: 15px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }

  .Ttour-button svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
  }
  
  
  
  
  .g-botones {
    position:absolute;
    z-index:99999999;
    margin-left:53%;
    margin-top:76%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: Arial, sans-serif;
    color: white;
  }

  .g-icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
  }

  .g-icon-group {
    display: flex;
    gap: 15px;
  }

  .g-icon-circle {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .g-icon-circle svg {
    width: 24px;
    height: 24px;
  }

  .g-reserva {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
  }
  
.g-link {
  text-decoration: none;
  color: inherit;
}

  .g-whatsapp {
    background-color: black;
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .g {
    background-color: #b6d100;
    border-radius: 15px;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
  }
  
  
  
  
  
  
.gvamos {
  position: relative;
  z-index: 1000; /* o incluso menos, como 10 */

    margin-top: 10px;
    background-color: #cddc39;
    padding: 11px 3px;
    text-align: center;
    border-radius: 10px;
    display: inline-flex; /* Cambiado de inline-block a inline-flex */
    align-items: center; /* Alinea verticalmente el contenido */
    justify-content: center; /* Centra horizontalmente */
    gap: 6px; /* Espacio entre el texto y el ícono */
    text-decoration: none;
    color: #fff;
    width: 190px;
    height: 40px;
    font-size: 14px;
}

/* Estilo para el ícono Lottie */
.gvamos dotlottie-player {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 0;
}






.payment-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background-color: #fff;
  
}

.payment-row p {
    font-size: 16px;
    margin: 0;
 
}

.payment-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-icons img {
    width: 40px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.payment-icons img:hover {
    filter: grayscale(0%);
}

