:root {
  --azul-principal: #012555;
  --boton-color: #012555;
  --boton-texto: white;
  --boton-borde-hover: #012555;
  --boton-fondo-hover: white;
  --boton-texto-hover: #012555;
  --icon-color: white;
  --icon-border-color: white;
  --azul-secundario: #0140a3;
  --azul-terciario: #0251bb;
  --azul-oscuro: #001a3f;
  --gris-borde: #e1e5ee;
  --texto-oscuro: #2a2a2a;
  --texto-gris: #6b7280;

  /******PARA EL HOTEL VIGGIATORE PALETA DE COLORES*******/
  --color-dark-blue: #162231;
  --color-medium-gray: #797979;
  --color-light-gray: #c2c2c2;
  --color-white: #ffffff;
  --color-light-blue: #e9f3ff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
html {
  font-family: "Segoe UI", sans-serif;
  height: 100%;
  scroll-behavior: smooth;
  background-color: var(--white);
  width: 100%;

  margin: 0;
  padding: 0;
}
section {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--white);
}

header {
  width: 100%;
}
/**************herovideo***********/ /* HERO SECTION WITH VIDEO */
/************** HERO SLIDER ***********/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efecto de zoom suave en las imágenes */
.swiper-slide-active img {
  transform: scale(1.05);
}

/* Efecto de superposición para mejorar legibilidad del texto */
.swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Animación de texto para el título */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-content {
  position: absolute;
  bottom: 30%;
  left: 10%;
  color: white;
  z-index: 2;
  max-width: 600px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}

.swiper-slide-active .slide-content {
  opacity: 1;
}

.slide-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2a3a4e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Personalización de los botones de navegación */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
  color: white !important;
  width: 60px !important;
  height: 60px !important;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}

/* Personalización de la paginación */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.3);
}

/* MENU BUTTON TOP LEFT */
.menu-button {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 20;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button img {
  width: 32px;
  filter: brightness(0) invert(1);
}

.menu-button a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

/* RESERVE BUTTON TOP RIGHT */
.btn-reservar-top {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 20;
  background-color: var(--color-dark-blue);
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.btn-reservar-top i {
  font-size: 16px;
}

/* ICON BAR AT BOTTOM */
.icon-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 15px 0;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.icon-container {
  display: flex;
  gap: 40px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  font-size: 12px;
  gap: 5px;
}

.icon-item img {
  width: 24px;
  filter: brightness(0) invert(1);
}

/* NAVBAR THAT APPEARS ON SCROLL */
.navbar {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background-color: #162231c4;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 80px;
  transition: top 0.3s ease;
  z-index: 100;
}
.navbar ::after {
  background-color: #ffffff;
}
.navbar.show {
  top: 0;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar .logo-navbar {
  height: 50px;
  width: auto;
}

.navbar a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-white);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar .btn-reservar {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
}

.navbar .menu-hamburger {
  display: none;
  cursor: pointer;
}

/* MENU OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-blue);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.menu-overlay.active {
  display: flex;
}

.menu-left {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu-right {
  width: 50%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s ease;
}

.close-menu {
  position: absolute;
  top: 30px;
  right: 30px;
  color: var(--color-white);
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.menu-logo {
  width: 150px;
  margin-bottom: 40px;
}

.menu-links {
  list-style: none;
}

.menu-links li {
  margin-bottom: 25px;
}

.menu-links a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: var(--color-light-gray);
}

.menu-links img {
  width: 24px;
  filter: brightness(0) invert(1);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.social-icons a {
  color: var(--color-white);
  font-size: 20px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .navbar {
    padding: 0 20px;
  }

  .nav-left a:not(.menu-hamburger),
  .nav-right a:not(.btn-reservar) {
    display: none;
  }

  .navbar .menu-hamburger {
    display: block;
  }

  .menu-left {
    width: 100%;
    padding: 40px;
  }

  .menu-right {
    display: none;
  }

  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .icon-container {
    gap: 20px;
  }

  .icon-item {
    font-size: 10px;
  }

  .icon-item img {
    width: 18px;
  }

  .menu-links a {
    font-size: 20px;
  }

  .slide-content {
    left: 5%;
    bottom: 25%;
  }

  .slide-title {
    font-size: 2rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .menu-button,
  .btn-reservar-top {
    top: 20px;
  }

  .menu-button {
    left: 20px;
  }

  .btn-reservar-top {
    right: 20px;
    padding: 8px 15px;
    font-size: 12px;
  }

  .icon-container {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 10px;
  }

  .icon-item {
    min-width: 60px;
  }

  .menu-left {
    padding: 30px 20px;
  }

  .menu-links a {
    font-size: 18px;
  }

  .menu-logo {
    width: 120px;
    margin-bottom: 30px;
  }

  .slide-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 1500px) {
  .menu-button img {
    width: 56px;
  }
  .btn-reservar-top {
    font-size: 20px;
  }
  .icon-item {
    font-size: 24px;
    margin-right: 25px;
  }
  .icon-item img {
    width: 42px;
  }
  .navbar a {
    font-size: 22px;
  }
  .navbar {
    height: 100px;
  }
  .navbar .logo-navbar {
    height: 90px;
  }
  /****** MENU OVERLAY */
  .social-icons {
    gap: 35px;
  }
  .social-icons a {
    font-size: 24px;
  }
  .close-menu {
    color: var(--color-white);
    font-size: 50px;
  }

  .slide-title {
    font-size: 4.5rem;
  }

  .slide-subtitle {
    font-size: 2rem;
  }
}

/***************************Seccion de informacion***********************/
.info-slider-container {
  position: relative;
  width: 100vw;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

/* Background Images */
.info-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.info-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
/* Capa oscura encima de la imagen */
.info-background-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.76); /* 0.2 es un oscurecimiento leve */
  pointer-events: none; /* para que no bloquee clics */
  z-index: 2;
}
.info-background-image.active {
  opacity: 1;
}

/* Vector Overlay */
.info-overlay-vector {
  position: absolute;
  top: 0;
  right: 0;
  /*width: 62%;*/
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.info-overlay-vector svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Content Layout */
.info-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
}

/* Slider Section */
.info-slider-section {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  left: 10%;
}

.info-main-slider {
  width: 100%;
  max-width: 900px;
  height: auto;
  position: relative;
}

.info-slide-container {
  position: relative;
  width: 100%;
  height: 400px;
  max-height: 70vh;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.info-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.info-slide-image.active {
  opacity: 1;
}

/* Text Section */
.info-text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 5rem;
  color: white;
  z-index: 4;
}

.info-hotel-title {
  font-family: "Gloock", serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.9;
  margin-bottom: 2.5rem;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.3s forwards;
}

.info-subtitle {
  font-family: "Prociono", serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.6s forwards;
}

.info-description {
  font-family: "Tiro Devanagari Hindi", serif;
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  max-width: 480px;
  text-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out 0.9s forwards;
}

/* Navigation */
.info-navigation {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: none;
}

.info-nav-dots {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.info-nav-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.info-nav-dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.info-nav-dot.active {
  background: white;
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Arrow Navigation */
.info-nav-arrows {
  position: absolute;
  bottom: 50%;
  left: 2rem;
  right: 2rem;
  z-index: 5;
  pointer-events: none;
}

.info-nav-arrow {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
  display: none; /***************desaparece los botones del slider****************/
}

.info-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.info-nav-arrow-prev {
  left: 0;
}

.info-nav-arrow-next {
  right: 0;
}

.info-nav-arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 2px solid white;
  border-bottom: none;
  border-left: none;
}

.info-nav-arrow-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.info-nav-arrow-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .info-overlay-vector {
    width: 68%;
  }
}

@media (max-width: 992px) {
  .info-content-wrapper {
    flex-direction: column;
  }

  .info-slider-section {
    height: 55%;
    padding: 1.5rem;
  }

  .info-text-section {
    height: 45%;
    padding: 2rem 1.5rem;
  }

  .info-overlay-vector {
    width: 100%;
    height: 45%;
    bottom: 0;
    top: auto;
  }

  .info-overlay-vector svg {
    transform: rotate(180deg) scaleX(-1);
  }

  .info-slide-container {
    height: 350px;
  }

  .info-nav-arrows {
    display: none;
  }
}

@media (max-width: 768px) {
  .info-slider-container {
    min-height: 500px;
  }

  .info-slide-container {
    height: 280px;
  }

  .info-text-section {
    padding: 1.5rem 1rem;
  }

  .info-navigation {
    bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .info-slide-container {
    height: 220px;
  }

  .info-slider-section {
    padding: 1rem;
  }

  .info-text-section {
    padding: 1rem;
  }

  .info-hotel-title {
    margin-bottom: 1.5rem;
  }

  .info-subtitle {
    margin-bottom: 1.5rem;
  }
}

/* Loading states */
.info-slide-image,
.info-background-image {
  background-color: rgba(0, 0, 0, 0.1);
}
/*************************************SECCION DE HABITACIONES*********************************/
.hab-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
}

/* Título principal */
.hab-main-title {
  font-family: "Gloock", serif;
  font-size: 48px;
  color: #000000;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
@media (min-width: 1200px) {
  .hab-main-title {
    top: 100px;
    width: 40%;
  }
}

.hab-main-title.active {
  opacity: 1;
  transform: translateX(0);
}

.hab-main-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 300px;
  height: 2px;
  background-color: #162231;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease 0.3s;
}

.hab-main-title.active::after {
  transform: scaleX(1);
}

/* Slider */
.hab-slider {
  width: 100%;
  height: 700px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

/* Slides */
.hab-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  transform: translateX(50px);
}

.hab-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

/* Contenido de texto */
.hab-text-content {
  width: 30%;
  padding-left: 60px;
  position: relative;
  color: #000;
  bottom: 5%;
}

/* Línea vertical */
.hab-vertical-line {
  position: absolute;
  left: 40px;
  top: 0;
  height: 0;
  width: 5px;
  background-color: #162231;
  transform-origin: top;
  transition: height 0.8s ease 0.4s;
}

.hab-slide.active .hab-vertical-line {
  height: 400px;
}

/* Título de la habitación */
.hab-room-title {
  font-family: "Prociono", serif;
  font-size: 40px;
  margin-bottom: 30px;
  color: #162231;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.6s;
  text-align: left;
}

.hab-slide.active .hab-room-title {
  opacity: 1;
  transform: translateY(0);
}

/* Descripción */
.hab-room-description {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.8s;
}

.hab-slide.active .hab-room-description {
  opacity: 1;
  transform: translateY(0);
}

/* Botón */
.hab-room-button {
  width: 252px;
  height: 79px;
  background-color: #162231;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: "Abhaya Libre", serif;
  font-weight: 800;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.47);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 1s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hab-slide.active .hab-room-button {
  opacity: 1;
  transform: translateY(0);
}

.hab-room-button:hover {
  background-color: #1e2a3d;
  transform: translateY(-2px) !important;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.47);
}

/* Contenedor de imagen */
.hab-image-container {
  width: 55%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Imagen */
.hab-room-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.2s;
}

.hab-slide.active .hab-room-image {
  opacity: 1;
  transform: scale(1);
}

/* Flechas de navegación */
.hab-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 160px;
  background-color: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.54);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.63);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hab-slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
  transform: translateY(-50%) scale(1.05);
}

.hab-slider-arrow.prev {
  left: 0;
  border-radius: 0 100px 100px 0;
}
@media (min-width: 1200px) {
  .hab-slider-arrow.prev {
    left: 45%;
  }
}
.hab-slider-arrow.next {
  right: 0;
  border-radius: 100px 0 0 100px;
}

/* Icono de tipo de habitación */
.hab-room-type-icon {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 50px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.6s ease 1.2s;
}

.hab-slide.active .hab-room-type-icon {
  opacity: 1;
}

/* Puntos de navegación */
.hab-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.hab-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(22, 34, 49, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hab-slider-dot.active {
  background-color: #162231;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .hab-slider {
    height: 600px;
  }

  .hab-text-content {
    width: 45%;
    padding-left: 40px;
  }

  .hab-image-container {
    width: 50%;
  }
}

@media (max-width: 992px) {
  .hab-slider {
    height: 500px;
  }

  .hab-main-title {
    font-size: 36px;
  }

  .hab-room-title {
    font-size: 32px;
  }

  .hab-room-description {
    font-size: 20px;
  }

  .hab-room-button {
    width: 220px;
    height: 70px;
    font-size: 24px;
  }
  .hab-text-content {
    padding: 20px 50px !important;
  }
}

@media (max-width: 768px) {
  .hab-slider {
    height: auto;
    min-height: 700px;
    flex-direction: column;
  }

  .hab-slide {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 40px;
  }

  .hab-text-content,
  .hab-image-container {
    width: 100%;
    padding: 0 30px;
  }

  .hab-image-container {
    height: 400px;
    margin-top: 40px;
  }

  .hab-vertical-line {
    left: 30px;
  }

  .hab-slider-arrow {
    width: 50px;
    height: 120px;
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .hab-main-title {
    font-size: 28px;
    padding-left: 15px;
  }

  .hab-main-title::after {
    left: 15px;
    width: 200px;
  }

  .hab-room-title {
    font-size: 26px;
  }

  .hab-room-description {
    font-size: 18px;
  }

  .hab-room-button {
    width: 180px;
    height: 60px;
    font-size: 20px;
  }

  .hab-image-container {
    height: 300px;
  }

  .hab-room-type-icon {
    font-size: 40px;
    bottom: 20px;
    left: 20px;
  }
}
/***********************Servicios***********************/
/* Contenedor principal de servicios */
.servicios-container {
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
}

/* Encabezado de servicios */
.servicios-header {
  width: 100%;
  background-color: #162231;
  padding: 40px 0 70px;
  /*position: relative;*/
  z-index: 10;
  margin-bottom: 2%;
}

.servicios-titulo {
  color: #fff;
  font-size: 52px;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Gloock", serif;
  font-weight: 400;
}

.servicios-nav {
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.servicios-lista {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 60px;
  position: relative;
}

.servicios-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.servicios-item.active {
  color: #fff;
}

.servicios-linea-indicadora {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #fff;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 3px;
}

.servicios-linea-separadora {
  width: 80%;
  height: 2px;
  background-color: #fff;
  margin: 30px auto 0;
  opacity: 0.2;
}

/* Contenido de servicios */
.servicios-contenido {
  display: flex;
  padding: 50px 100px;
  position: relative;
  margin-top: -50px;
  min-height: 600px;
}

.servicios-imagen-container {
  width: 60%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.servicios-imagen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.servicios-info {
  width: 40%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.servicios-nombre {
  font-size: 46px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: #162231;
}

.servicios-horario {
  font-size: 24px;
  margin-bottom: 30px;
  font-family: "Tiro Devanagari Hindi", serif;
  color: #555;
}

.servicios-descripcion {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 40px;
  font-family: "Charis SIL", serif;
  color: #333;
}

.servicios-boton {
  background-color: #162231;
  color: #fff;
  border: none;
  padding: 15px 40px;
  font-size: 28px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

.servicios-boton:hover {
  background-color: #1a2a3a;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.servicios-boton i {
  font-size: 20px;
}

/* Transiciones */
.servicios-seccion {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.servicios-seccion.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
}

.servicios-seccion.exit {
  opacity: 0;
  transform: translateX(-20px);
}

.servicios-seccion.enter {
  opacity: 0;
  transform: translateX(20px);
}

.servicios-seccion.active.enter {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Modal */
.servicios-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.servicios-modal.show {
  opacity: 1;
}

.servicios-modal-contenido {
  background-color: #fff;
  width: 80%;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  padding: 40px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.servicios-modal.show .servicios-modal-contenido {
  transform: scale(1);
}

.servicios-modal-cerrar {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #162231;
  transition: transform 0.2s ease;
}

.servicios-modal-cerrar:hover {
  transform: rotate(90deg);
}

.servicios-modal-titulo {
  font-size: 36px;
  margin-bottom: 30px;
  text-align: center;
  color: #162231;
}

.servicios-slider {
  width: 100%;
  position: relative;
}

.servicios-slide {
  display: none;
  text-align: center;
}

.servicios-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.servicios-slide img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.servicios-slider-controles {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.servicios-slider-btn {
  background-color: #162231;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
}

.servicios-slider-btn:hover {
  background-color: #1a2a3a;
  transform: scale(1.1);
}

/* Responsive */
@media (min-width: 1501px) {
  .servicios-contenido {
    padding: 60px 120px;
  }

  .servicios-imagen-container {
    height: 550px;
  }

  .servicios-info {
    padding: 50px;
  }
}

@media (max-width: 1500px) and (min-width: 1201px) {
  .servicios-contenido {
    padding: 50px 80px;
  }

  .servicios-info {
    padding: 30px;
  }

  .servicios-nombre {
    font-size: 40px;
  }

  .servicios-descripcion,
  .servicios-horario {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .servicios-contenido {
    flex-direction: column;
    padding: 50px 60px;
    min-height: auto;
  }

  .servicios-imagen-container {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
  }

  .servicios-info {
    width: 100%;
    padding: 0;
    align-items: center;
    text-align: center;
  }

  .servicios-lista {
    flex-wrap: wrap;
    gap: 30px;
  }

  .servicios-nombre {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .servicios-header {
    padding: 30px 0 80px;
  }

  .servicios-titulo {
    font-size: 42px;
  }

  .servicios-item {
    font-size: 28px;
  }

  .servicios-contenido {
    padding: 40px;
  }

  .servicios-imagen-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .servicios-titulo {
    font-size: 36px;
  }

  .servicios-item {
    font-size: 24px;
  }

  .servicios-contenido {
    padding: 30px;
  }

  .servicios-imagen-container {
    height: 300px;
  }

  .servicios-nombre {
    font-size: 32px;
  }

  .servicios-descripcion,
  .servicios-horario {
    font-size: 20px;
  }

  .servicios-boton {
    font-size: 22px;
    padding: 12px 30px;
  }

  .servicios-modal-contenido {
    width: 90%;
    padding: 30px;
  }

  .servicios-modal-titulo {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .servicios-header {
    padding: 25px 0 70px;
  }

  .servicios-titulo {
    font-size: 32px;
  }

  .servicios-lista {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .servicios-item {
    font-size: 18px;
    width: 45%;
    padding-bottom: 8px;
  }

  .servicios-contenido {
    padding: 25px 20px;
    flex-direction: column-reverse; /* Cambio importante para móviles */
  }

  .servicios-imagen-container {
    height: 250px;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .servicios-nombre {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .servicios-descripcion,
  .servicios-horario {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .servicios-boton {
    font-size: 20px;
    padding: 10px 25px;
    margin: 0 auto;
  }

  .servicios-modal-contenido {
    width: 95%;
    padding: 20px;
  }

  .servicios-modal-titulo {
    font-size: 26px;
  }

  .servicios-slide img {
    max-height: 300px;
  }
}

@media (max-width: 480px) {
  .servicios-lista {
    gap: 10px;
  }

  .servicios-item {
    font-size: 16px;
    width: 45%;
  }

  .servicios-imagen-container {
    height: 200px;
  }

  .servicios-nombre {
    font-size: 24px;
  }

  .servicios-descripcion,
  .servicios-horario {
    font-size: 16px;
  }

  .servicios-boton {
    font-size: 18px;
  }
}
/************************Estilo para sala de reuniones**************************/
.sala-container {
  width: 100%;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755196598/a71827f4-872e-4aaf-b2fe-62e74b5baeef.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* hace que se mueva con scroll */
  padding: 20px;
  box-sizing: border-box;
}

.sala-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}
.sala-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sala-content.sala-visible {
  opacity: 1;
  transform: translateY(0);
}

.sala-title {
  font-family: "Gloock", serif;
  font-size: 4rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sala-subtitle {
  font-family: "Prociono", serif;
  font-size: 2rem;
  color: white;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
}

.sala-more {
  display: inline-block;
  font-family: "Abhaya Libre", serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  margin-top: 50px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  text-decoration: none;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 8px;
  background-color: rgba(22, 34, 49, 0.7);
}

.sala-content.sala-visible .sala-more {
  opacity: 1;
  transform: translateY(0);
}

.sala-more:hover {
  background-color: rgba(22, 34, 49, 0.9);
}

/* Efecto de salida al hacer scroll */
.sala-content.sala-exit {
  /*opacity: 0;*/
  transform: translateY(-50px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animación optimizada para el fondo */
@keyframes sala-bg-move {
  0%,
  100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 20% 20%;
  }
}

.sala-container {
  animation: sala-bg-move 40s infinite ease-in-out;
  will-change: background-position;
}

/* Estilos para el modal mejorado */
.sala-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.sala-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.sala-modal-content {
  position: relative;
  z-index: 1001;
  width: 80%;
  max-width: 1000px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sala-modal-content.sala-active {
  opacity: 1;
  transform: scale(1);
}

.sala-modal-text {
  flex: 1;
  padding: 50px;
  color: #162231;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sala-modal-image {
  flex: 1;
  background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755196598/a71827f4-872e-4aaf-b2fe-62e74b5baeef.png");
  background-size: cover;
  background-position: center;
}

.sala-modal-title {
  font-family: "Prociono", serif;
  font-size: 3rem;
  margin-bottom: 20px;
  color: #162231;
  line-height: 1.2;
}

.sala-modal-subtitle {
  font-family: "Prociono", serif;
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #162231;
}

.sala-modal-time {
  font-family: "Prociono", serif;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #162231;
}

.sala-modal-description {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #162231;
  max-width: 500px;
}

.sala-modal-button {
  display: inline-block;
  font-family: "Abhaya Libre", serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  background-color: #162231;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sala-modal-button:hover {
  background-color: #1a2b3d;
}

.sala-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #555;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
}

.sala-modal-close:hover {
  color: #333;
}

@media (max-width: 992px) {
  .sala-modal-content {
    flex-direction: column;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
  }

  .sala-modal-image {
    height: 250px;
  }

  .sala-title {
    font-size: 3rem;
  }

  .sala-subtitle {
    font-size: 1.6rem;
  }

  .sala-modal-title {
    font-size: 2.2rem;
  }

  .sala-modal-subtitle {
    font-size: 1.4rem;
  }

  .sala-modal-time {
    font-size: 1.5rem;
  }

  .sala-modal-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .sala-title {
    font-size: 2.5rem;
  }

  .sala-subtitle {
    font-size: 1.3rem;
  }

  .sala-more {
    font-size: 1.2rem;
    padding: 10px 20px;
  }

  .sala-modal-text {
    padding: 30px 20px;
  }

  .sala-modal-button {
    font-size: 1.2rem;
    padding: 10px 30px;
  }
}
/**********************Turismo******************************/
.turismo-section-container {
  padding: 80px 0;
  padding-bottom: 5px;
  background: #ffffff;
  min-height: 100vh;
  overflow: hidden;
}
.turismo-section {
  width: 100%;
  height: 80vh;
  display: flex;

  justify-content: center;
  position: relative;

  padding: 2rem;
}

.turismo-container {
  width: 85%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  max-height: 800px;
}

.turismo-slider {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.turismo-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.turismo-slide.active {
  opacity: 1;
}

.turismo-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

.turismo-glass-panel {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 350px;
  height: 280px;
  background: rgba(41, 39, 39, 0.671);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.288);
  border-radius: 20px;
  padding: 40px 30px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-50%) translateX(-50px);
  animation: slideInGlass 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes slideInGlass {
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.turismo-glass-title {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.turismo-glass-description {
  font-family: "Charis SIL", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.turismo-slide-title {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
  color: white;
  font-family: "Charis SIL", serif;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.turismo-slide.active .turismo-slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.turismo-navigation {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 15;
}

.turismo-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.turismo-dot.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.turismo-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turismo-arrows:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.turismo-prev {
  left: 20px;
}

.turismo-next {
  right: 20px;
}

.turismo-loading-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  z-index: 20;
  transform: scaleX(0);
  transform-origin: left;
  animation: loadingProgress 5s linear infinite;
}

@keyframes loadingProgress {
  0% {
    transform: scaleX(0);
  }
  95% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}

/* TABLET STYLES */
@media (max-width: 1024px) and (min-width: 769px) {
  .turismo-container {
    width: 90%;
    height: 65%;
  }

  .turismo-glass-panel {
    left: 30px;
    width: 320px;
    height: 250px;
    padding: 30px 25px;
  }

  .turismo-glass-title {
    font-size: 2rem;
    margin-bottom: 18px;
  }

  .turismo-glass-description {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .turismo-slide-title {
    font-size: 1.6rem;
    bottom: 25px;
    right: 25px;
  }

  .turismo-arrows {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .turismo-section {
    padding: 1rem;
    height: 100vh;
  }

  .turismo-container {
    width: 100%;
    height: 80%;
    max-height: none;
  }

  .turismo-slider {
    border-radius: 15px;
  }

  .turismo-glass-panel {
    left: 20px;
    top: 30px;
    transform: none;
    width: calc(100% - 40px);
    max-width: 300px;
    height: auto;
    min-height: 180px;
    padding: 25px 20px;
    animation: slideInGlassMobile 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s
      forwards;
  }

  @keyframes slideInGlassMobile {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .turismo-glass-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    line-height: 1.1;
  }

  .turismo-glass-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .turismo-slide-title {
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
    left: 20px;
    text-align: right;
    line-height: 1.2;
  }

  .turismo-arrows {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .turismo-prev {
    left: 15px;
  }

  .turismo-next {
    right: 15px;
  }

  .turismo-navigation {
    bottom: 15px;
    gap: 8px;
  }

  .turismo-dot {
    width: 10px;
    height: 10px;
  }
}

/* SMALL MOBILE STYLES */
@media (max-width: 480px) {
  .turismo-section {
    padding: 0.5rem;
  }

  .turismo-container {
    width: 100%;
    height: 85%;
  }

  .turismo-glass-panel {
    left: 15px;
    top: 20px;
    width: calc(100% - 30px);
    max-width: 280px;
    min-height: 160px;
    padding: 20px 15px;
  }

  .turismo-glass-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .turismo-glass-description {
    font-size: 0.8rem;
  }

  .turismo-slide-title {
    font-size: 1rem;
    bottom: 15px;
    right: 15px;
    left: 15px;
  }

  .turismo-arrows {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .turismo-prev {
    left: 10px;
  }

  .turismo-next {
    right: 10px;
  }

  .turismo-navigation {
    bottom: 10px;
    gap: 6px;
  }

  .turismo-dot {
    width: 8px;
    height: 8px;
  }
}

/* LANDSCAPE MOBILE */
@media (max-width: 768px) and (orientation: landscape) {
  .turismo-section {
    height: 100vh;
  }

  .turismo-container {
    height: 90%;
  }

  .turismo-glass-panel {
    left: 20px;
    top: 20px;
    width: 280px;
    height: auto;
    min-height: 140px;
    padding: 20px 15px;
  }

  .turismo-glass-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .turismo-glass-description {
    font-size: 0.75rem;
    line-height: 1.3;
  }

  .turismo-slide-title {
    font-size: 1.1rem;
    bottom: 15px;
    right: 15px;
  }
}
/***********************Paquetes*****************************/
.pq-section {
  padding: 10px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f4f5f7 100%);
  min-height: 100vh;
  overflow: hidden;
  padding-top: 20px !important;
}

.pq-container {
  max-width: 1600px;
  margin: 0 auto;
}

.pq-header {
  text-align: center;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(30px);
  animation: pq-fadeInUp 1s ease forwards;
}

.pq-title {
  font-family: "Gloock", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; /* el ::after tomará el ancho del título */
  /* No fijamos width, así se adapta al ancho del texto */
}
.pq-title {
  font-family: "Gloock", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #000;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.pq-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%; /* centro inicial */
  width: 180px !important; /* empieza chiquita */
  height: 2px;
  background: #000;
  border-radius: 2px;
  transform: translateX(-50%); /* mantener centrado */
  animation: pq-lineExpand 1.5s ease forwards;
}

@keyframes pq-lineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%; /* se expande el doble de su tamaño */
  }
}
.pq-description {
  font-family: "Charis SIL", serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #7f8c8d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  animation: pq-fadeIn 1s ease 1s forwards;
}

.pq-gallery {
  display: flex;
  height: 650px;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(50px);
  animation: pq-fadeInUp 1s ease 1.5s forwards;
}

.pq-card {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.pq-card:hover {
  flex: 2.5;
}

.pq-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pq-card:hover .pq-card-image {
  transform: scale(1.1);
}

.pq-card-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(231, 77, 60, 0.219);
  backdrop-filter: blur(10px);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Gloock", serif;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 8px 25px rgba(32, 31, 31, 0.4);
  transition: all 0.4s ease;
  z-index: 10;
}

.pq-card:hover .pq-card-number {
  top: 20px;
  left: 20px;
  transform: translate(0, 0);
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
}

.pq-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 25px;
  transform: translateY(100%);
  transition: transform 0.4s ease 0.2s;

  display: flex; /* usamos flexbox */
  flex-direction: column; /* columna vertical */
  align-items: center; /* centra horizontalmente */
}

.pq-card-title,
.pq-card-text,
.pq-card-link {
  max-width: 70%; /* ancho reducido, ajustable */
  text-align: center; /* centrar el texto */
}

.pq-card:hover .pq-card-overlay {
  transform: translateY(0);
}

.pq-card-title {
  font-family: "Gloock", serif;
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 8px;
  font-weight: 600;
}

.pq-card-text {
  font-family: "Charis SIL", serif;
  font-size: 1.1rem;
  color: #525858;
  line-height: 1.5;
  margin-bottom: 15px;
}

.pq-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000a4;
  text-decoration: none;
  font-family: "Charis SIL", serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.pq-card-link:hover {
  color: #c0392b;
  transform: translateX(5px);
}

.pq-card-link i {
  transition: transform 0.3s ease;
}

.pq-card-link:hover i {
  transform: translateX(3px);
}

/* Animaciones */
@keyframes pq-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pq-fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes pq-lineExpand {
  to {
    width: 400px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pq-gallery {
    height: 450px;
  }

  .pq-card-title {
    font-size: 1.2rem;
  }

  .pq-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .pq-section {
    padding: 60px 15px;
  }

  .pq-header {
    margin-bottom: 50px;
  }

  .pq-gallery {
    flex-direction: column;
    height: auto;
    gap: 15px;
  }

  .pq-card {
    height: 250px;
    flex: none;
  }

  .pq-card:hover {
    flex: none;
    transform: scale(1.02);
  }

  .pq-card-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .pq-card:hover .pq-card-number {
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .pq-card-overlay {
    position: relative;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.98);
    margin-top: -80px;
    border-radius: 15px 15px 0 0;
  }

  .pq-card-title {
    font-size: 1.1rem;
  }

  .pq-card-text {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .pq-card {
    height: 220px;
  }

  .pq-card-overlay {
    padding: 20px;
    margin-top: -70px;
  }

  .pq-card-title {
    font-size: 1rem;
  }

  .pq-card-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .pq-card-link {
    font-size: 0.85rem;
  }
}

/* Efectos adicionales para mejorar la experiencia */
.pq-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(231, 76, 60, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.pq-card:hover::before {
  opacity: 1;
}

/* Animación de entrada escalonada para las cartas */
.pq-card:nth-child(1) {
  animation-delay: 0.2s;
}
.pq-card:nth-child(2) {
  animation-delay: 0.4s;
}
.pq-card:nth-child(3) {
  animation-delay: 0.6s;
}
.pq-card:nth-child(4) {
  animation-delay: 0.8s;
}

/*****************************Seccion de testimonio****************************/
/* Contenedor principal */
.test-section-container {
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.test-section {
  width: 100%;
  /*max-width: 1200px;*/
  padding: 40px 20px;
  background-color: #162231;
  color: white;
  position: relative;
  overflow: hidden;
}

/* Título */
.test-title {
  text-align: center;
  font-size: 48px;
  margin-bottom: 50px;
  color: white;
  font-family: "Gloock-Regular", serif;
}

/* Contenedor de testimonios - DESKTOP */
.test-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Tarjeta de testimonio - DESKTOP */
.test-card {
  width: 30%;
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
}

.test-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cabecera del testimonio */
.test-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.test-flag {
  width: 40px;
  height: 25px;
  margin-right: 15px;
  border-radius: 3px;
}

.test-person {
  flex-grow: 1;
}

.test-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.test-country {
  font-size: 16px;
  opacity: 0.8;
}

/* Texto del testimonio */
.test-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-style: italic;
}

/* Estrellas de valoración */
.test-stars {
  display: flex;
  gap: 5px;
  justify-content: center;
}

.test-star {
  color: #ffd700;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.test-star:hover {
  transform: scale(1.2);
  color: white;
}

/* ---------------------------------- */
/* DISEÑO PARA TABLETS (768px - 1024px) */
/* ---------------------------------- */
@media (max-width: 1024px) {
  .test-section {
    padding: 30px 20px;
  }

  .test-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    overflow: visible;
    padding-bottom: 0;
  }

  .test-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    margin-right: 0;
    scroll-snap-align: none;
  }

  .test-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .indicators {
    display: none !important;
  }
}

/* ---------------------------------- */
/* DISEÑO PARA MÓVILES (hasta 767px) */
/* ---------------------------------- */
@media (max-width: 767px) {
  .test-section {
    padding: 30px 15px;
  }

  .test-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    margin-bottom: 10px;
    gap: 15px;
  }

  .test-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
    margin-right: 0;
    margin-bottom: 0;
    width: 85%;
    max-width: 85%;
    opacity: 1;
    transform: none;
  }

  .test-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  /* Ocultar barra de scroll */
  .test-container::-webkit-scrollbar {
    display: none;
  }

  /* Indicadores del slider */
  .indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
  }

  .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .indicator.active {
    background-color: #ffd700;
  }
}

/* ---------------------------------- */
/* ANIMACIONES */
/* ---------------------------------- */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutToRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideInMobile {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/**************************Seccion de ubicacion****************************/
/* Sección de ubicación */
.ubi-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 20px;
}

/* Contenedor principal */
.ubi-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

/* Contenedor principal del contenido */
.ubi-content-wrapper {
  display: flex;
  width: 100%;
  gap: 40px;
  align-items: flex-start;
}

/* Contenedor del mapa con efecto premium */
.ubi-map-container {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
  border: 1px solid #eaeaea;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  background: white;
}

.ubi-map-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.25);
}

/* Marco decorativo para el mapa */
.ubi-map-frame {
  position: relative;
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}

.ubi-map-frame:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  pointer-events: none;
}

/* Mapa con estilo moderno */
.ubi-map {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
  filter: grayscale(15%) contrast(105%) saturate(110%);
  transition: filter 0.4s ease;
}

.ubi-map-container:hover .ubi-map {
  filter: grayscale(0%) contrast(100%) saturate(100%);
}

/* Panel de información */
.ubi-info-panel {
  width: 350px;
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.ubi-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.ubi-hotel-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--azul-oscuro),
    var(--azul-terciario)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
  font-size: 24px;
  font-weight: bold;
}

.ubi-hotel-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
}

.ubi-hotel-location {
  font-size: 0.9rem;
  color: #777;
  margin-top: 3px;
}

/* Lista de características */
.ubi-features-list {
  list-style: none;
  margin-bottom: 30px;
}

.ubi-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.ubi-feature-icon {
  width: 40px;
  height: 40px;
  background: #f8f8f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--azul-oscuro);
  font-size: 16px;
}

.ubi-feature-text {
  flex: 1;
  font-size: 0.95rem;
  color: #555;
}

/* Botón de acción */
.ubi-action-btn {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    135deg,
    var(--azul-oscuro),
    var(--azul-terciario)
  );
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  text-decoration: none;
}

.ubi-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.ubi-action-btn i {
  margin-left: 8px;
}

/* Etiqueta GPS con estilo moderno */
.ubi-gps-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.ubi-gps-text {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  background: #f8f8f8;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ubi-gps-text:hover {
  transform: scale(1.05);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.ubi-gps-text:before {
  content: "📍";
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Elementos decorativos */
.ubi-decoration {
  position: absolute;
  z-index: -1;
  opacity: 0.7;
}

.ubi-circle-1 {
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(78, 205, 196, 0.1) 0%,
    rgba(78, 205, 196, 0) 70%
  );
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.ubi-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 107, 107, 0) 70%
  );
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
}

/* Efecto de onda en el panel */
.ubi-wave-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 0% 100%);
  }
}

/* Responsive design */
@media (max-width: 1200px) {
  .ubi-content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .ubi-info-panel {
    width: 100%;
    max-width: 600px;
  }

  .ubi-map {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .ubi-section {
    padding: 70px 15px;
  }

  .ubi-title {
    font-size: 2.5rem;
  }

  .ubi-subtitle {
    font-size: 1rem;
  }

  .ubi-map {
    height: 400px;
  }

  .ubi-info-panel {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .ubi-title {
    font-size: 2rem;
  }

  .ubi-map {
    height: 350px;
  }

  .ubi-hotel-logo {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .ubi-hotel-name {
    font-size: 1.2rem;
  }

  .ubi-gps-text {
    font-size: 1rem;
    padding: 10px 25px;
  }
}
/****************************FOOTER****************************/
.footer-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #162231;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  /*height: 60vh;*/
  overflow: hidden;
}

.footer-main {
  display: flex;
  height: 100%;
  position: relative;
}

/* Fondo azul completo */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #162231;
  z-index: 0;
}

/* Sección izquierda - Logo y contacto - MÁS GRANDE */
.footer-left {
  background: #ffffff;
  padding: 25px 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 50%;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 18px;
}

.footer-contact-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 18px;
  text-align: center;
}

.footer-contact-info {
  width: 100%;
  /* max-width: 300px;*/
}
.footer-logo,
.footer-contact-title,
.footer-contact-info {
  position: relative;
  left: 10%;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 12px;
  position: relative;
  left: 10%;
}

.footer-contact-icon {
  font-size: 16px;
  color: #333;
  margin-top: 3px;
  min-width: 16px;
}

.footer-contact-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Sección media - Imagen con efecto diagonal - MÁS PEQUEÑA */
.footer-middle-container {
  position: absolute;
  top: 0;
  left: 60%;
  width: 20%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  transform: skewX(-15deg);
  transform-origin: top left;
}

.footer-middle {
  width: 100%;
  height: 100%;
  background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1754918677/84086788-294d-4eb5-82eb-85b2d5dc29be.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transform: skewX(15deg);
  transform-origin: top left;
  margin-left: -20%;
  width: 140%;
}

.footer-middle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(105, 105, 105, 0.5);
  z-index: 1;
}

.footer-middle::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

/* Sección derecha - Métodos de pago y redes sociales - MÁS PEQUEÑA */
.footer-right {
  background: #162231;
  padding: 25px 25px;
  color: white;
  display: flex;
  flex-direction: column;
  width: 20%;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  transform: skewX(-15deg);
  transform-origin: top right;
  z-index: 2;
}

.footer-right-content {
  transform: skewX(15deg);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 40px;
  justify-content: center;
  align-items: end;
}

.footer-payment-section {
  margin-bottom: 25px;
}

.footer-payment-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-payment-methods {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-payment-icon {
  width: 70px;
  height: 40px;
  object-fit: contain;
  background: white;
  padding: 2px;
  border-radius: 3px;
}

.footer-social-section {
  margin-top: auto;
}

.footer-social-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-social-title .footer-highlight {
  color: #4a90e2;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social-item:hover {
  color: #4a90e2;
  transform: translateX(3px);
}

.footer-social-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-facebook {
  background: #1877f2;
}

.footer-tiktok {
  background: #ff0050;
}

.footer-whatsapp {
  background: #25d366;
}

/* Efecto de borde diagonal */
.footer-diagonal-edge {
  position: absolute;
  top: 0;
  left: 42%;
  width: 20%;
  height: 100%;
  background: white;
  transform: skewX(-15deg);
  transform-origin: top left;
  z-index: 111;
}

/* Línea separadora */
.footer-separator {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffffff 50%,
    transparent 100%
  );
  margin: 0;
  position: relative;
  z-index: 4;
}

/* Footer copyright */
.footer-copyright {
  background: #162231;
  padding: 12px 35px;
  text-align: center;
  position: relative;
  z-index: 4;
}

.footer-copyright-text {
  color: #ffffff;
  font-size: 13px;
}

/* Responsive - Tablets (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-container {
    height: auto;
  }

  .footer-left {
    width: 50%;
    padding: 20px 30px;
  }

  .footer-middle-container {
    left: 65%;
    width: 15%;
  }

  .footer-right {
    width: 15%;
    padding: 15px;
  }

  .footer-right-content {
    padding: 20px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-contact-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-contact-text {
    font-size: 13px;
  }

  .footer-contact-item {
    left: 5%;
    gap: 8px;
  }

  .footer-payment-title,
  .footer-social-title {
    font-size: 14px;
  }

  .footer-payment-icon {
    width: 40px;
    height: 25px;
  }

  .footer-social-item {
    font-size: 13px;
  }
}

/* Responsive - Móviles (hasta 767px) */
@media (max-width: 767px) {
  .footer-container {
    height: auto;
    min-height: auto;
  }

  .footer-main {
    flex-direction: column;
    height: auto;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    position: relative;
    transform: none;
    padding: 20px;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    padding: 25px 20px;
  }

  .footer-right-content {
    transform: none;
    padding: 20px;
    align-items: center;
    width: 100%;
  }

  .footer-middle-container {
    position: relative;
    width: 100%;
    left: 0;
    height: 180px;
    transform: none;
    order: 2;
  }

  .footer-middle {
    transform: none;
    margin-left: 0;
    width: 100%;
  }

  .footer-diagonal-edge {
    display: none;
  }

  .footer-background {
    display: none;
  }

  .footer-left {
    order: 1;
    background: #ffffff;
  }

  .footer-right {
    order: 3;
    background: #162231;
  }

  .footer-logo {
    width: 140px;
    margin-bottom: 15px;
  }

  .footer-contact-title {
    font-size: 16px;
    margin-bottom: 15px;
    width: 100%;
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-contact-item {
    flex-direction: column;
    align-items: center;
    left: 0;
    gap: 5px;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }

  .footer-contact-icon {
    margin-top: 0;
    font-size: 14px;
  }

  .footer-contact-text {
    font-size: 13px;
    max-width: 250px;
  }

  .footer-social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-payment-methods {
    justify-content: center;
  }

  .footer-payment-title,
  .footer-social-title {
    font-size: 15px;
    text-align: center;
  }

  .footer-payment-icon {
    width: 40px;
    height: 25px;
  }

  .footer-social-item {
    font-size: 13px;
    flex-direction: column;
    gap: 5px;
  }

  .footer-social-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer-copyright {
    padding: 12px 20px;
  }

  .footer-copyright-text {
    font-size: 12px;
  }
}

/* Ajustes adicionales para móviles muy pequeños */
@media (max-width: 480px) {
  .footer-left,
  .footer-right {
    padding: 18px 15px;
  }

  .footer-right-content {
    padding: 15px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-contact-title,
  .footer-payment-title,
  .footer-social-title {
    font-size: 15px;
  }

  .footer-contact-text {
    font-size: 12px;
  }

  .footer-social-item {
    font-size: 12px;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-copyright-text {
    font-size: 11px;
  }
}
/********************************************** Sector de habitaciones*********************************************/
/* Contenedor principal */
.habHero-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Sección superior con imagen */
.habHero-top {
  height: 60vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755614743/217f5207-3b0d-4dc4-9079-6d68d52c7687.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
/* Sección superior con imagen */
.habHero-top-paquetes {
  height: 60vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755707348/b59884e1-5519-48cd-8d68-9c47612310f4.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
/* Texto "Estilo y Confort" */
.habHero-title-container {
  text-align: center;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.habHero-title {
  font-family: "Gloock", serif;
  font-size: 5rem;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 2rem;
  letter-spacing: 2px;
}

/* Icono de flecha */
.habHero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 1.2s ease 1s;
}

.habHero-scroll-icon {
  width: 40px;
  height: 40px;
  filter: invert(1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

/* Sección inferior con información - Efectos mejorados */
.habHero-bottom {
  height: 40vh;
  background-color: #162231;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}

.habHero-content {
  max-width: 1000px;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.habHero-room-title {
  font-family: "Gloock", serif;
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

.habHero-room-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.35em;
  white-space: nowrap;
}

.habHero-room-title .word:last-child {
  margin-right: 0;
}

.habHero-room-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.habHero-room-title .space {
  display: inline-block;
  width: 0.35em;
}

.habHero-description {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* Estados de animación */
.animated .habHero-title-container {
  transform: translateY(0);
  opacity: 1;
}

.animated .habHero-scroll-indicator {
  opacity: 1;
}

.reveal .habHero-content {
  opacity: 1;
  transform: translateY(0);
}

.reveal .habHero-room-title .char {
  opacity: 1;
  transform: translateY(0);
}

.reveal .habHero-description {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries para Responsividad */

/* Tablets */
@media (max-width: 1024px) {
  .habHero-title {
    font-size: 3.5rem;
  }

  .habHero-room-title {
    font-size: 2.8rem;
  }

  .habHero-description {
    font-size: 1.3rem;
  }
}

/* Móviles */
@media (max-width: 768px) {
  .habHero-container {
    height: auto;
    min-height: 100vh;
  }

  .habHero-top {
    height: 50vh;
  }

  .habHero-bottom {
    height: auto;
    padding: 50px 20px;
  }

  .habHero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .habHero-room-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .habHero-description {
    font-size: 1.1rem;
  }

  .habHero-scroll-icon {
    width: 30px;
    height: 30px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .habHero-title {
    font-size: 2rem;
  }

  .habHero-room-title {
    font-size: 1.7rem;
  }

  .habHero-description {
    font-size: 1rem;
  }

  .habHero-bottom {
    padding: 40px 15px;
  }
}
/********************************Seccion hab Info*************************************/
.habInfo-container {
  max-width: 1446px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Slider Styles */
.habInfo-slider-section {
  position: relative;
  height: 600px;
  margin-bottom: 60px;
  overflow-x: clip;
}

.habInfo-slider-container {
  position: relative;
  width: 100%;
  height: 588px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}

.habInfo-slide {
  position: relative;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, width, height;
}

.habInfo-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.habInfo-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

/* Side slides (left and right) */
.habInfo-slide-side {
  width: 236px;
  height: 580px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.habInfo-slide-side:hover {
  transform: scale(1.02);
}

.habInfo-slide-side .habInfo-slide-overlay {
  opacity: 1;
}

/* Center slide (active) */
.habInfo-slide-center {
  width: 794px;
  height: 588px;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.habInfo-slide-center .habInfo-slide-overlay {
  opacity: 0;
}

/* Zoom icon for center image */
.habInfo-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.habInfo-slide-center:hover .habInfo-zoom-icon {
  opacity: 1;
  transform: scale(1.1);
}

.habInfo-zoom-icon:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.15);
}

/* Modal Styles */
.habInfo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.habInfo-modal.active {
  opacity: 1;
  visibility: visible;
}

.habInfo-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.habInfo-modal.active .habInfo-modal-content {
  transform: scale(1);
}

.habInfo-modal-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.habInfo-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.habInfo-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.habInfo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.habInfo-modal-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.habInfo-modal-nav.prev {
  left: 30px;
}

.habInfo-modal-nav.next {
  right: 30px;
}

/* Custom pagination */
.habInfo-pagination {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.habInfo-pagination-bullet {
  width: 18px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #162231;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.habInfo-pagination-bullet.active {
  background-color: #162231;
}

/* Navigation arrows */
.habInfo-nav-prev,
.habInfo-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 66px;
  background: rgba(22, 34, 49, 0.8);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.habInfo-nav-prev:hover,
.habInfo-nav-next:hover {
  background: rgba(22, 34, 49, 1);
  transform: translateY(-50%) scale(1.05);
}

.habInfo-nav-prev {
  left: 0;
}

.habInfo-nav-next {
  right: 0;
}

/* Section title */
.habInfo-section-title {
  font-family: "Gloock", serif;
  font-size: 40px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: habInfo-fadeInUp 1s ease forwards 0.3s;
}

.habInfo-divider {
  width: 454px;
  height: 2px;
  background: #000;
  margin: 0 auto 40px;
  opacity: 0;
  transform: scaleX(0);
  animation: habInfo-expandLine 1s ease forwards 0.6s;
}

/* Features section */
.habInfo-features {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto 60px;
  gap: 40px;
}

.habInfo-features-column {
  flex: 1;
}

.habInfo-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateX(-30px);
}

.habInfo-features-column:nth-child(2) .habInfo-feature-item {
  transform: translateX(30px);
}

.habInfo-feature-item:nth-child(1) {
  animation: habInfo-slideIn 0.8s ease forwards 0.9s;
}
.habInfo-feature-item:nth-child(2) {
  animation: habInfo-slideIn 0.8s ease forwards 1.1s;
}
.habInfo-feature-item:nth-child(3) {
  animation: habInfo-slideIn 0.8s ease forwards 1.3s;
}

.habInfo-feature-icon {
  width: 57px;
  height: 58px;
  background: linear-gradient(0deg, #162231 0%, #162231 100%);
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.habInfo-feature-icon i {
  color: white;
  font-size: 24px;
}

.habInfo-feature-text {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 32px;
  color: #000;
  font-weight: 400;
}

/* Information section */
.habInfo-info-section {
  max-width: 961px;
  margin: 0 auto;
  position: relative;
}

.habInfo-info-divider {
  width: 100%;
  height: 3px;
  background: #000;
  margin-bottom: 30px;
}

.habInfo-info-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  animation: habInfo-fadeInUp 0.8s ease forwards 1.5s;
}

.habInfo-info-toggle {
  width: 60px;
  height: 57px;
  background: none;
  border: none;
  font-size: 30px;
  color: #000;
  margin-right: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.habInfo-info-toggle i {
  transition: transform 0.3s ease;
}

.habInfo-info-toggle.active i {
  transform: rotate(180deg);
}

.habInfo-info-title {
  font-family: "Gloock", serif;
  font-size: 40px;
  color: #000;
  font-weight: 400;
}

.habInfo-info-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 30px;
}

.habInfo-info-content.active {
  max-height: 300px;
  margin-bottom: 40px;
}

.habInfo-info-grid {
  display: flex;
  gap: 60px;
  padding: 30px 0;
}

.habInfo-info-column {
  flex: 1;
}

.habInfo-info-column h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #162231;
}

.habInfo-info-column ul {
  list-style: none;
}

.habInfo-info-column li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.habInfo-info-column li:before {
  content: "• ";
  color: #162231;
  margin-right: 8px;
}

.habInfo-info-divider-bottom {
  width: 100%;
  height: 4px;
  background: #000;
  margin-bottom: 40px;
}

/* Reserve button */
.habInfo-reserve-section {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: habInfo-fadeInUp 0.8s ease forwards 1.8s;
}

.habInfo-reserve-btn {
  background-color: #162231;
  border: 1px solid rgba(85, 85, 85, 0.7);
  border-radius: 12px;
  padding: 16px 63px;
  color: white;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.46), 0px 4px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.habInfo-reserve-btn:hover {
  background-color: #1a2938;
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.habInfo-reserve-btn i {
  font-size: 24px;
}

/* Animations */
@keyframes habInfo-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes habInfo-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes habInfo-expandLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* New smooth transition animations */
@keyframes habInfo-growToCenter {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes habInfo-shrinkToSide {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Responsive design */
@media (max-width: 1200px) {
  .habInfo-container {
    padding: 15px;
  }

  .habInfo-slide-center {
    width: 600px;
    height: 450px;
  }

  .habInfo-slide-side {
    width: 180px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .habInfo-features {
    flex-direction: column;
    gap: 20px;
  }

  .habInfo-feature-text {
    font-size: 24px;
  }

  .habInfo-section-title {
    font-size: 32px;
  }

  .habInfo-reserve-btn {
    font-size: 24px;
    padding: 12px 40px;
  }

  .habInfo-slide-center {
    width: 100%;
    height: 300px;
  }

  .habInfo-slide-side {
    width: 120px;
    height: 250px;
  }

  .habInfo-info-grid {
    flex-direction: column;
    gap: 30px;
  }

  /* Center content on mobile */
  .habInfo-slider-container {
    justify-content: center;
  }

  .habInfo-features {
    align-items: center;
  }

  .habInfo-features-column {
    width: 100%;
    max-width: 400px;
  }

  .habInfo-zoom-icon {
    opacity: 1;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .habInfo-feature-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .habInfo-feature-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .habInfo-nav-prev,
  .habInfo-nav-next {
    width: 40px;
    height: 50px;
    font-size: 18px;
  }

  .habInfo-modal-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .habInfo-modal-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
/********************************Hab Links***************************/
.habLink-section {
  width: 100%;
  /* min-height: 100vh;*/
  background: #f8f9fa;
  padding: 80px 20px 0;
  overflow-x: hidden;
}

/* Header Section */
.habLink-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFade 1s ease-out 0.3s forwards;
}

.habLink-title {
  font-family: "Gloock", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: #162231;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.habLink-title-line {
  width: clamp(200px, 25vw, 248px);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #162231 50%,
    transparent 100%
  );
  margin: 0 auto;
}

/* Navigation Section */
.habLink-nav-container {
  position: relative;
  max-width: 1900px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.habLink-nav-lines {
  position: relative;
  padding: 40px 0;
}

.habLink-nav-line-top,
.habLink-nav-line-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #162231 0%, #4a5568 100%);
  border-radius: 2px;
  animation: expandLine 1.5s ease-out 0.8s forwards;
}

.habLink-nav-line-top {
  top: 0;
}

.habLink-nav-line-bottom {
  bottom: 0;
}

.habLink-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 60px);
  list-style: none;
  padding: 20px 0;
}

.habLink-nav-item {
  opacity: 0;
  transform: translateY(30px);
}

.habLink-nav-item:nth-child(1) {
  animation: slideUpFade 0.8s ease-out 1.2s forwards;
}
.habLink-nav-item:nth-child(2) {
  animation: slideUpFade 0.8s ease-out 1.4s forwards;
}
.habLink-nav-item:nth-child(3) {
  animation: slideUpFade 0.8s ease-out 1.6s forwards;
}
.habLink-nav-item:nth-child(4) {
  animation: slideUpFade 0.8s ease-out 1.8s forwards;
}
.habLink-nav-item:nth-child(5) {
  animation: slideUpFade 0.8s ease-out 2s forwards;
}

.habLink-nav-link {
  font-family: "Prociono", serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #162231;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  display: block;
  line-height: 1.4;
}

.habLink-nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #162231, #4a5568);
  transition: width 0.3s ease;
}

.habLink-nav-link:hover {
  color: #4a5568;
  transform: translateY(-2px);
}

.habLink-nav-link:hover::after {
  width: 80%;
}

/* Hero Banner Section */
.habLink-hero {
  position: relative;
  width: 100vw;
  height: clamp(400px, 50vh, 600px);
  background-image: linear-gradient(
      rgba(22, 34, 49, 0.6),
      rgba(22, 34, 49, 0.4)
    ),
    url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1754918889/eba5c9a9-cf12-435e-b264-4ea1242bfe22.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUpFade 1s ease-out 2.5s forwards;
}

.habLink-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.habLink-hero-line-top,
.habLink-hero-line-bottom {
  width: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ffffff 50%,
    transparent 100%
  );
  margin: 0 auto;
  border-radius: 2px;
  animation: expandHeroLine 1.5s ease-out 3s forwards;
}

.habLink-hero-line-top {
  margin-bottom: 30px;
}

.habLink-hero-line-bottom {
  margin-top: 30px;
}

.habLink-hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 36px);
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: fadeIn 1s ease-out 3.2s forwards;
}

/* Animations */
@keyframes slideUpFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  to {
    width: clamp(300px, 60vw, 1200px);
  }
}

@keyframes expandHeroLine {
  to {
    width: clamp(250px, 50vw, 498px);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Tablet Styles */
@media (max-width: 768px) {
  .habLink-section {
    padding: 60px 15px 0;
  }

  .habLink-nav-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .habLink-nav-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .habLink-nav-link {
    padding: 16px 24px;
    width: 100%;
  }

  .habLink-hero {
    background-attachment: scroll;
    margin: 0 -15px;
  }

  .habLink-nav-container {
    margin-bottom: 80px;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .habLink-section {
    padding: 40px 10px 0;
  }

  .habLink-header {
    margin-bottom: 60px;
  }

  .habLink-nav-lines {
    padding: 30px 0;
  }

  .habLink-nav-list {
    gap: 15px;
    padding: 15px 0;
  }

  .habLink-nav-link {
    font-size: 16px;
    padding: 14px 20px;
  }

  .habLink-hero {
    margin: 0 -10px;
    height: clamp(250px, 40vh, 300px);
  }

  .habLink-hero-content {
    padding: 0 15px;
  }
}

/* Hover effects for desktop */
@media (min-width: 769px) {
  .habLink-nav-item {
    transition: transform 0.3s ease;
  }

  .habLink-nav-item:hover {
    transform: translateY(-5px);
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .habLink-section *,
  .habLink-section *::before,
  .habLink-section *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .habLink-hero {
    background-attachment: scroll;
  }
}

.habLink-nav-link:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Enhanced visual effects */
.habLink-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(22, 34, 49, 0.2) 100%
  );
  pointer-events: none;
}

.habLink-nav-link {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(22, 34, 49, 0.1);
}

.habLink-nav-link:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 25px rgba(22, 34, 49, 0.15);
}
/****************************************PQ info************************************/
#pqHero {
  height: auto !important;
}
.pqInfo-container {
  max-width: 1446px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

/* Title Section */
.pqInfo-title-section {
  text-align: center;
  margin-bottom: 40px;
}

.pqInfo-main-title {
  font-family: "Gloock", serif;
  font-size: 64px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 15px;
  line-height: 89.5px;
}

.pqInfo-title-divider {
  width: 309px;
  height: 3px;
  background: #000;
  margin: 0 auto;
}

/* Slider Styles */
.pqInfo-slider-section {
  position: relative;
  height: 600px;
  margin-bottom: 60px;
  overflow: hidden;
}

.pqInfo-slider-container {
  position: relative;
  width: 100%;
  height: 588px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  overflow: hidden;
}

.pqInfo-slide {
  position: relative;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s ease;
  border-radius: 12px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
}

.pqInfo-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.pqInfo-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.8s ease;
  z-index: 2;
}

/* Side slides (left and right) */
.pqInfo-slide-side {
  width: 236px;
  height: 580px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0.8;
  transform: scale(0.9);
}

.pqInfo-slide-side:hover {
  transform: scale(0.92);
  opacity: 0.9;
}

.pqInfo-slide-side .pqInfo-slide-overlay {
  opacity: 1;
}

/* Center slide (active) */
.pqInfo-slide-center {
  width: 794px;
  height: 588px;
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  opacity: 1;
  transform: scale(1);
}

.pqInfo-slide-center .pqInfo-slide-overlay {
  opacity: 0;
}

/* Zoom icon for center image */
.pqInfo-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.pqInfo-slide-center:hover .pqInfo-zoom-icon {
  opacity: 1;
  transform: scale(1.1);
}

.pqInfo-zoom-icon:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.15);
}

/* Modal Styles */
.pqInfo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

.pqInfo-modal.active {
  opacity: 1;
  visibility: visible;
}

.pqInfo-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pqInfo-modal.active .pqInfo-modal-content {
  transform: scale(1);
}

.pqInfo-modal-image {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.pqInfo-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1001;
}

.pqInfo-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.pqInfo-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pqInfo-modal-nav:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.pqInfo-modal-nav.prev {
  left: 30px;
}

.pqInfo-modal-nav.next {
  right: 30px;
}

/* Custom pagination */
.pqInfo-pagination {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.pqInfo-pagination-bullet {
  width: 18px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid #162231;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pqInfo-pagination-bullet.active {
  background-color: #162231;
}

/* Navigation arrows */
.pqInfo-nav-prev,
.pqInfo-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 66px;
  background: rgba(22, 34, 49, 0.8);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.pqInfo-nav-prev:hover,
.pqInfo-nav-next:hover {
  background: rgba(22, 34, 49, 1);
  transform: translateY(-50%) scale(1.05);
}

.pqInfo-nav-prev {
  left: 0;
}

.pqInfo-nav-next {
  right: 0;
}

/* Content Section - Two Columns */
.pqInfo-content-section {
  display: flex;
  max-width: 1200px;
  margin: 60px auto;
  gap: 40px;
  position: relative;
}

.pqInfo-content-left {
  flex: 1;
  padding-right: 40px;
  position: relative;
  text-align: center;
}

.pqInfo-content-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 4px;
  background: #000;
}

.pqInfo-content-right {
  flex: 1;
  padding-left: 40px;
}

.pqInfo-content-title {
  font-family: "Gentium Book Basic", serif;
  font-size: 48px;
  color: #000;
  margin-bottom: 20px;
  line-height: 50px;
}

.pqInfo-content-title.servicios {
  font-family: "Prociono", serif;
}

.pqInfo-description {
  font-family: "Charis SIL", serif;
  font-size: 32px;
  line-height: 45px;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
}

.pqInfo-services-list {
  list-style: none;
}

.pqInfo-service-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.pqInfo-service-icon {
  width: 57px;
  height: 58px;
  background: #162231;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.pqInfo-service-icon i {
  color: white;
  font-size: 24px;
}

.pqInfo-service-text {
  font-family: "Charis SIL", serif;
  font-size: 32px;
  color: #000;
  line-height: 65px;
}

.pqInfo-reserve-btn {
  background-color: #162231;
  border: 1px solid rgba(85, 85, 85, 0.7);
  border-radius: 12px;
  padding: 16px 63px;
  color: white;
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 32px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.46), 0px 4px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  margin: 20px auto; /* 👈 centrado automático */
}

.pqInfo-reserve-btn:hover {
  background-color: #1a2938;
  transform: translateY(-2px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

.pqInfo-reserve-btn i {
  font-size: 24px;
}

/* Heart animation */
.pqInfo-hearts {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.pqInfo-heart {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  font-size: 20px;
  color: #ff5e93;
  z-index: 100;
  animation: pqInfo-floatHearts 6s ease-in-out forwards;
}

@keyframes pqInfo-floatHearts {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(var(--x), var(--y)) scale(1.5);
  }
}

/* Animations */
@keyframes pqInfo-fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pqInfo-slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pqInfo-expandLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Responsive design */
@media (max-width: 1200px) {
  .pqInfo-container {
    padding: 15px;
  }

  .pqInfo-slide-center {
    width: 600px;
    height: 450px;
  }

  .pqInfo-slide-side {
    width: 180px;
    height: 400px;
  }
}

@media (max-width: 992px) {
  .pqInfo-content-section {
    flex-direction: column;
    gap: 30px;
  }

  .pqInfo-content-left {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .pqInfo-content-left::after {
    display: none;
  }

  .pqInfo-content-right {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .pqInfo-main-title {
    font-size: 48px;
    line-height: 60px;
  }

  .pqInfo-content-title {
    font-size: 36px;
  }

  .pqInfo-description {
    font-size: 24px;
    line-height: 36px;
  }

  .pqInfo-service-text {
    font-size: 24px;
    line-height: 50px;
  }

  .pqInfo-slide-center {
    width: 100%;
    height: 300px;
  }

  .pqInfo-slide-side {
    width: 120px;
    height: 250px;
  }

  .pqInfo-reserve-btn {
    font-size: 24px;
    padding: 14px 40px;
  }

  /* Center content on mobile */
  .pqInfo-slider-container {
    justify-content: center;
  }

  .pqInfo-zoom-icon {
    opacity: 1;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .pqInfo-service-icon {
    width: 45px;
    height: 45px;
  }

  .pqInfo-service-icon i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .pqInfo-main-title {
    font-size: 36px;
    line-height: 50px;
  }

  .pqInfo-content-title {
    font-size: 28px;
  }

  .pqInfo-description {
    font-size: 20px;
    line-height: 30px;
  }

  .pqInfo-service-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 20px;
  }

  .pqInfo-service-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .pqInfo-service-text {
    font-size: 20px;
    line-height: 40px;
  }

  .pqInfo-nav-prev,
  .pqInfo-nav-next {
    width: 40px;
    height: 50px;
    font-size: 18px;
  }

  .pqInfo-modal-nav {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .pqInfo-modal-close {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .pqInfo-slider-section {
    height: 400px;
  }

  .pqInfo-reserve-btn {
    font-size: 20px;
    padding: 12px 30px;
  }
}
/************************Seccion de paquetes *********************/
.pqLink-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #f5f5f5;
}

.pqLink-main-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header Section */
.pqLink-header {
  text-align: center;
  margin-bottom: 60px;
}

.pqLink-main-title {
  font-family: "Gloock", serif;
  font-size: 64px;
  font-weight: 400;
  color: #000000;
  line-height: 89.5px;
  margin-bottom: 10px;
}

.pqLink-title-line {
  width: 511px;
  height: 2px;
  background: #000;
  margin: 0 auto 30px auto;
}

.pqLink-subtitle {
  font-family: "Gentium Book Basic", serif;
  font-size: 32px;
  font-weight: 400;
  color: #000000;
  line-height: 45px;
  max-width: 762px;
  margin: 0 auto;
}

/* Slider Section */
.pqLink-slider-container {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 80px auto;
  overflow: hidden;
  border-radius: 15px;
}

.pqLink-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755717518/d312d905-eab7-4d12-add9-9c650ff838e8.png");*/
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.1);
}

.pqLink-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pqLink-slides-container {
  position: relative;
  width: 100%;
  /*max-width: 1200px;*/
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.pqLink-slide {
  position: relative;
  width: 100% !important;
  height: 524px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pqLink-slide:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.pqLink-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.pqLink-slide:hover .pqLink-slide-image {
  transform: scale(1.1);
}

.pqLink-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transition: all 0.6s ease;
}

.pqLink-slide:hover .pqLink-slide-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.pqLink-slide-content {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  width: 90%;
  transition: all 0.6s ease;
}

.pqLink-slide-title {
  font-family: "Prociono", serif;
  font-size: 28px;
  font-weight: 400;
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.58);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.24);
  line-height: 45px;
  margin-bottom: 10px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

.pqLink-slide-subtitle {
  font-family: "Prociono", serif;
  font-size: 16px;
  font-weight: 400;
  text-shadow: 6px 6px 10px rgba(0, 0, 0, 0.58);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.24);
  line-height: 45px;
  margin-bottom: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease 0.1s;
}

.pqLink-slide-line {
  width: 105px;
  height: 3px;
  background: white;
  margin: 0 auto 20px auto;
  opacity: 1;
  transform: scaleX(1);
  transition: all 0.6s ease 0.2s;
}

.pqLink-slide-description {
  font-family: "Charis SIL", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.3s;
  max-width: 90%;
  margin: 0 auto;
}

.pqLink-slide:hover .pqLink-slide-description {
  opacity: 1;
  transform: translateY(0);
}

.pqLink-slide:hover .pqLink-slide-content {
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Navigation Buttons */
.pqLink-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.pqLink-nav-button:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.pqLink-nav-button:active {
  transform: translateY(-50%) scale(0.95);
}

.pqLink-nav-left {
  left: 20px;
}

.pqLink-nav-right {
  right: 20px;
}

.pqLink-nav-button::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}

.pqLink-nav-left::before {
  border-width: 8px 12px 8px 0;
  border-color: transparent #333 transparent transparent;
  margin-left: -2px;
}

.pqLink-nav-right::before {
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #333;
  margin-right: -2px;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .pqLink-slides-container {
    gap: 30px;
  }

  .pqLink-slide {
    width: 450px;
    height: 420px;
  }
}

@media (max-width: 1200px) {
  .pqLink-main-title {
    font-size: 48px;
    line-height: 60px;
  }

  .pqLink-subtitle {
    font-size: 24px;
    line-height: 35px;
  }

  .pqLink-slides-container {
    flex-direction: column;
    gap: 20px;
    height: auto;
    padding: 40px 0;
  }

  .pqLink-slider-container {
    height: auto;
    min-height: 600px;
  }

  .pqLink-slide {
    width: 90%;
    max-width: 500px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .pqLink-main-title {
    font-size: 36px;
    line-height: 45px;
  }

  .pqLink-title-line {
    width: 300px;
  }

  .pqLink-subtitle {
    font-size: 20px;
    line-height: 30px;
  }

  .pqLink-slide-title {
    font-size: 22px;
  }

  .pqLink-slide-subtitle {
    font-size: 14px;
  }
}

/* Animation for smooth transitions */
.pqLink-fade-in {
  animation: pqLinkFadeIn 1s ease-out;
}

@keyframes pqLinkFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*************************REDES SOCIALES************************/
.widget {
  position: fixed;
  right: 0;
  bottom: 0;
  transition: 0.6s;
  z-index: 99999; /* arriba de todo */
  isolation: isolate; /* 🔥 evita clipping por transform o filtros */
  pointer-events: auto; /* asegura que se pueda clickear */
}

.open.widget {
  right: 35px;
}

/* Botón principal */
#chatme {
  background-color: #1e2835;
  color: white;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 0 0 0 #162231;
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  z-index: 100000;
  cursor: pointer;
  position: relative;
  font-size: 28px;
  isolation: isolate; /* 🔥 evita que padres lo "recorten" */
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(22, 34, 49, 0);
  }
}

#chatme:hover {
  animation-play-state: paused;
}

/* Iconos abrir/cerrar */
#chatme .close,
#chatme .chat {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

#chatme .close {
  opacity: 0;
}
#chatme .chat {
  opacity: 1;
}

.open #chatme .close {
  opacity: 1;
}
.open #chatme .chat {
  opacity: 0;
}
.open #chatme {
  transform: rotate(45deg);
}

/* Redes */
.widget:not(.open) .socials {
  transform: scale(0);
}

.socials {
  position: relative;
  transition: 0.4s;
  z-index: 99999;
}

.socials > div {
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s;
  z-index: 99999;
}

.socials > div a {
  color: white;
  text-decoration: none;
}

.socials > div:hover {
  transform: scale(1.2);
}

/* Colores y posiciones */
.socials .facebook {
  background: #3b5998;
  right: 80px;
  bottom: 0;
}
.socials .whatsapp {
  background: #25d366;
  right: 60px;
  bottom: 55px;
}
.socials .tiktok {
  background: #000;
  right: 0;
  bottom: 80px;
}
.socials .instagram {
  background: #e4405f;
  right: -55px;
  bottom: 40px;
}
/********************************Boton de patita**********************************/
/* Botón de Patita */
#paw-btn {
  position: fixed;
  right: 0;
  bottom: 100px;
  width: 70px;
  height: 70px;
  background-color: #810c0e;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}

#paw-btn:hover {
  transform: scale(1.1);
}

#paw-btn img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Overlay para cerrar al hacer clic fuera */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

/* Panel de Políticas */
.pet-panel {
  position: fixed;
  top: 50%;
  right: -400px; /* Oculto inicialmente */
  width: 400px;
  height: 40%;
  background: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755804353/a33433d7-19ea-4875-be97-69db1715a618.png")
    center/cover no-repeat;
  box-shadow: -4px 0 10px rgba(0, 0, 0, 0.4);
  transition: right 0.4s ease;
  z-index: 1002;
}

.pet-panel.open {
  right: 0;
}

/* Contenido del panel */
.pet-content {
  position: relative;
  color: white;
  padding: 30px;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.pet-content h2 {
  font-family: "Gloock", serif;
  margin-top: 0;
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.pet-content ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

.pet-content ul li {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 15px;
  font-family: "Charis SIL", serif;
}

/* Botón cerrar */
.close-panel {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.close-panel:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Footer para demo */
.footer {
  margin-top: 30px;
  color: #777;
  font-size: 14px;
}
/************************Seccion de desayunos***********************/
/* Sección principal */
.desy-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.desy-header {
  text-align: center;
  margin-bottom: 2rem;
  z-index: 10;
}

.desy-title {
  font-family: "Gloock-Regular", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 1rem;
}

.desy-line {
  width: 100px;
  height: 2px;
  background-color: #000;
  margin: 0 auto;
  transform: scaleX(0);
  transition: transform 1s ease;
}

.desy-line.animate {
  transform: scaleX(1);
}

.desy-hero {
  position: relative;
  width: 100%;
  height: 33vh;
  overflow: hidden;
}

.desy-hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: url("https://res.cloudinary.com/ddqoou1fq/image/upload/v1755178406/restaurant-2_wnzi9a.png");
  background-size: cover;
  background-position: center;
}

.desy-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 1rem;
}

.desy-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.desy-subtitle {
  font-family: "Gentium Book Basic-Regular", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.desy-button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  font-family: "Abhaya Libre ExtraBold-Regular", serif;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.desy-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* Modal */
.desy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.desy-modal.active {
  display: flex;
  opacity: 1;
}

.desy-modal-content {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.desy-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desy-slider {
  position: relative;
  width: 100%;
  height: 600px;
}

.desy-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.desy-slide.active {
  opacity: 1;
}

.desy-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desy-slider-controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}

.desy-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.desy-slider-dot.active {
  background-color: white;
}

.desy-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.desy-slider-arrow.prev {
  left: 15px;
}

.desy-slider-arrow.next {
  right: 15px;
}

/* Responsive */
@media (min-width: 768px) {
  .desy-title {
    font-size: 3.5rem;
  }

  .desy-hero {
    height: 50vh;
  }

  .desy-subtitle {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .desy-title {
    font-size: 4rem;
  }

  .desy-hero {
    height: 66vh;
  }
}
