.entorno-desc-modern {
   text-align: center;
   font-size: 1.25rem;
  color: #6e7b76;
   font-weight: 500;
   margin: 1.2rem auto 2.2rem auto;
   max-width: 700px;
   background: linear-gradient(90deg, #f7f7fa 60%, #e9e6f6 100%);
   border-radius: 1.2rem;
   padding: 1.1rem 2rem;
   box-shadow: 0 2px 12px rgba(33,150,243,0.08);
   letter-spacing: 0.02em;
 }
 .entorno-img {
   max-width: 420px;
   width: 100%;
   aspect-ratio: 16/10;
   object-fit: cover;
   height: auto;
 }
 .monasterio-img {
   background: #fff;
   border: 2px solid #c9a66b;
   border-radius: 2rem;
   padding: 1rem 2rem;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  max-width: 420px;
   width: 100%;
   margin: 0.8rem auto 1.2rem auto;
   display: block;
 }
.ubicacion-instalaciones {
  display: block;
  gap: 0;
  flex-wrap: nowrap;
  align-items: stretch;
}
.ubicacion-info {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ubicacion-mapa {
  width: 100%;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ubicacion-mapa iframe {
  width: 100%;
  max-width: 900px;
  height: 350px;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(33,150,243,0.15);
}
/* Ubicación e Instalaciones layout */
.ubicacion-instalaciones {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
}
.ubicacion-info {
  flex: 1 1 320px;
  min-width: 280px;
}
.ubicacion-mapa {
  flex: 1 1 350px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.instalaciones-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}
.instalaciones-list li {
  display: flex;
  align-items: center;
  font-size: 1.13rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
}
.instalaciones-list .check {
  color: #4caf50;
  font-size: 1.3rem;
  margin-right: 0.7rem;
}
.instalaciones-list--columns {
  columns: 2;
  column-gap: 2.5rem;
  margin-top: 1.5rem;
}
.instalaciones-list--columns li {
  break-inside: avoid;
  margin-bottom: 1.2rem;
}
/* ========================================
   VARIABLES DE COLOR Y ESTILO BASE
   ======================================== */
:root {
  --primary: #c9a66b;
  --accent: #ffffff;
  --bg: #fbfbf9;
  --text: #1f2a27;
  --muted: #6e7b76;
  --surface: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* ========================================
   RESET BÁSICO 
   ======================================== */
* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; margin: 0 0 .5rem; }
p { margin: .25rem 0 1rem; }
a { color: var(--primary); text-decoration: none; }
a:hover { opacity: .9; }

/* ========================================
   CONTENEDORES
   ======================================== */
.container { width: min(900px, 92%); margin: 0 auto; }
.container--wide { width: min(1200px, 96%); margin: 0 auto; position: relative; }
.section#alojamiento .container { width: 100%; max-width: none; }

/* ========================================
   BOTONES
   ======================================== */
.btn { display: inline-block; padding: .9rem 1.2rem; border-radius: .6rem; font-weight: 600; border: 2px solid transparent; transition: .2s box-shadow, .2s transform; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: #fff; }
.btn--ghost { border-color: var(--primary); color: var(--primary); background: transparent; }

/* ========================================
   CABECERA (HEADER)
   ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--primary);
  height: 65px;
  display: flex;
  align-items: center;
}
.site-header--scrolled { background: var(--primary); }
.header-inner { width: 100%; display: flex; justify-content: flex-end; padding: 0 1rem; }

/* Botón hamburguesa */
.nav__toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  border: none;
  font-size: 1.5rem;
  padding: .6rem 1rem;
  border-radius: .5rem;
  cursor: pointer;
}

/* Menú principal */
.nav__menu {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav__menu a {
  padding: .5rem .8rem;
  border-radius: .4rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  transition: background .2s;
}
.nav__menu a:hover { background: rgba(255,255,255,0.15); }

/* Dropdown Galería */
.nav__menu .has-dropdown { position: relative; }
.nav__menu .has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  list-style: none;
  padding: .5rem 0;
  min-width: 180px;
  border-radius: .5rem;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav__menu .has-dropdown .dropdown li a {
  display: block;
  padding: .5rem 1rem;
  color: var(--text);
  font-weight: 500;
}
.nav__menu .has-dropdown:hover .dropdown { display: block; }
.nav__menu .has-dropdown .dropdown li a:hover { background: var(--primary); color: #fff; }

/* ========================================
   HERO
   ======================================== */
.hero {
  margin-top: 55px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}

.hero__content {
  position: relative;
  color: #fff;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__text {
  width: 100%;
  padding: 0 2rem;
}

.hero__welcome {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(1rem, 1.8vw + 0.6rem, 1.6rem);
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 0 0 0.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.5vw + 0.8rem, 3.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 0 0 0.5rem;
  white-space: nowrap;
  line-height: 1.1;
}

.hero h1 span {
  color: var(--accent);
  display: inline-block;
}

.hero__subtitle {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: clamp(0.9rem, 1.8vw + 0.5rem, 1.4rem);
  font-weight: 300;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 0 0 2rem;
}

/* Scroll-down flecha animada */
.scroll-down {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 20;
}

.scroll-down:hover {
  transform: translateX(-50%) translateY(-5px);
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

.scroll-down i {
  animation: bounce 2s infinite;
}

/* Media Queries para responsividad */
@media (max-width: 920px) {
  .hero__text {
    padding: 0 1.5rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 3vw + 0.6rem, 3rem);
    white-space: normal;
  }
  .hero__welcome {
    font-size: clamp(0.9rem, 1.6vw + 0.5rem, 1.4rem);
  }
  .hero__subtitle {
    font-size: clamp(0.8rem, 1.6vw + 0.4rem, 1.2rem);
    margin: 0 0 1.5rem;
  }
  .scroll-down {
    font-size: 1.8rem;
    bottom: 6rem;
  }
}

@media (max-width: 700px) {
  .hero__text {
    padding: 0 1rem;
  }
  .hero h1 {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
    white-space: normal;
  }
  .hero__welcome {
    font-size: clamp(0.8rem, 1.5vw + 0.4rem, 1.1rem);
  }
  .hero__subtitle {
    font-size: clamp(0.7rem, 1.5vw + 0.3rem, 1rem);
    margin: 0 0 1rem;
  }
  .scroll-down {
    font-size: 1.5rem;
    bottom: 4rem;
  }
}
/* ========================================
   SEPARADOR RÚSTICO
   ======================================== */
.rustic-divider {
  width: 100%;
  max-width: 100%;
  border: none;
  border-top: 3px solid #c9a66b;
  margin: 0 0 2.2rem 0;
  opacity: 0.7;
}

/* ========================================
   SECCIONES GENERALES
   ======================================== */
.section { padding: 4rem 0; }
.section--alt { background: #f6f6f3; }
.section--accent { background: linear-gradient(180deg, #f8f5ee 0, #fff 100%); }
.section__header { margin-bottom: 1.5rem; text-align: center; }

/* ========================================
   TARJETAS DE ALOJAMIENTO
   ======================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Contenedor de imagen con marco */
.card .carousel {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

/* Imagen dentro del carrusel */
.card .carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  display: none;
  transition: opacity 0.5s ease, transform 0.3s ease;
  border-radius: 15px;
}
.card .carousel__image.active { display: block; opacity: 1; }
.card .carousel__image:hover { transform: scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.4); }

/* Botones del carrusel */
.carousel__prev, .carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: #e6d3b1;
  color: #fff;
  border: none;
  border-radius: 90%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.carousel__prev { left: 10px; }
.carousel__next { right: 10px; }

/* Flechas del carrusel: modernas y pequeñas */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33,150,243,0.12), 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: box-shadow .2s, background .2s;
}
.carousel-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,150,243,0.18);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: #2196f3;
  transition: fill .2s;
}
.carousel-arrow:hover svg {
  fill: #fff;
}
.carousel-arrow--left { left: 10px; }
.carousel-arrow--right { right: 10px; }

/* Cuerpo de la tarjeta: texto + iconos */
.card__body { text-align: center; padding: 1rem; }

/* Iconos con descripción debajo de la foto */
.card__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 1rem;
}
.card__icons .icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text);
}
.card__icons .icon i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 3px;
}
.card__icons .icon span {
  font-size: 0.75rem;
  color: var(--text);
  text-align: center;
}

/* ========================================
   GALERÍA SWIPER - 2 FILAS UNIFORMES
   ======================================== */
.swiper-container {
  width: 100%;
  position: relative;
}

.mySwiper {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 60px 0;
  overflow: visible;
}

.mySwiper .swiper-wrapper {
  display: grid !important;
  grid-template-rows: repeat(2, 190px);
  grid-auto-flow: column;
  grid-auto-columns: 280px;
  gap: 15px;
}

.mySwiper .swiper-slide {
  width: 280px;
  height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mySwiper .swiper-slide img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Botones de navegación de Swiper */
.swiper-button-next, .swiper-button-prev {
  color: var(--primary);
  width: 60px;
  height: 60px;
  box-shadow: none;
  transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: absolute;
  top: calc(100% - 40px);
  transform: translateY(0);
  z-index: 10;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next:hover {
  color: #8b6f47;
  transform: translateX(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.swiper-button-prev:hover {
  color: #8b6f47;
  transform: translateX(-10px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

/* Media Queries para pantallas más pequeñas */
@media (max-width: 920px) {
  .mySwiper {
    width: 100%;
    padding-bottom: 50px;
  }
  .mySwiper .swiper-wrapper {
    grid-auto-columns: 240px;
    grid-template-rows: repeat(2, 160px);
  }
  .mySwiper .swiper-slide {
    width: 240px;
    height: 160px;
  }
  .swiper-button-prev {
    left: -10px;
    width: 50px;
    height: 50px;
  }
  .swiper-button-next {
    right: -10px;
    width: 50px;
    height: 50px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .mySwiper {
    width: 100%;
    padding-bottom: 40px;
  }
  .mySwiper .swiper-wrapper {
    grid-auto-columns: 180px;
    grid-template-rows: repeat(2, 120px);
  }
  .mySwiper .swiper-slide {
    width: 180px;
    height: 120px;
  }
  .swiper-button-prev {
    left: -5px;
    width: 40px;
    height: 40px;
  }
  .swiper-button-next {
    right: -5px;
    width: 40px;
    height: 40px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px;
  }
}

/* Estilos para GLightbox */
.glightbox-container .gslide-media img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border-radius: 24px;
}

.glightbox-container .gnext, .glightbox-container .gprev {
  background: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

.glightbox-container .gclose {
  background: var(--primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  color: #fff;
}

/* Modal específico para carrusel de salon.html */
.cr-modal-glightbox .glightbox-container {
  background: rgba(30, 34, 44, 0.98);
}
.cr-modal-glightbox .gslide {
  justify-content: center;
  align-items: center;
}
.cr-modal-glightbox .gslide img {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  max-width: 80vw;
  max-height: 80vh;
}
.cr-modal-glightbox .glightbox-arrow {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33,150,243,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  transition: background .2s;
}
.cr-modal-glightbox .glightbox-arrow svg {
  width: 22px;
  height: 22px;
  fill: #2196f3;
  transition: fill .2s;
}
.cr-modal-glightbox .glightbox-arrow:hover {
  background: var(--primary);
}
.cr-modal-glightbox .glightbox-arrow:hover svg {
  fill: #fff;
}
.cr-modal-glightbox .glightbox-close {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33,150,243,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 24px;
  right: 24px;
  transition: background .2s;
}
.cr-modal-glightbox .glightbox-close svg {
  width: 22px;
  height: 22px;
  fill: #2196f3;
  transition: fill .2s;
}
.cr-modal-glightbox .glightbox-close:hover {
  background: var(--primary);
}
.cr-modal-glightbox .glightbox-close:hover svg {
  fill: #fff;
}

/* ========================================
   FEATURES / ENTORNO
   ======================================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature {
  background: #fff;
  display: flex;
  gap: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.feature img { width: 40%; object-fit: cover; }
.feature div { padding: 1rem; }

/* ========================================
   MAPA
   ======================================== */
#map {
  height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33,150,243,0.15);
  margin-bottom: 1.5rem;
}

.map__cta { margin-top: 1rem; text-align: right; }

/* ========================================
   FORMULARIO DE RESERVA Y CONTACTO
   ======================================== */
.booking {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.booking__field { display: flex; flex-direction: column; gap: .4rem; }
.booking__result { grid-column: 1/-1; margin: 0; }

.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.2rem;
}
.contact__details {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.contact__details ul { list-style: none; padding: 0; margin: 0; }
.contact__details li { padding: .4rem 0; }

/* ========================================
   PIE DE PÁGINA  (ACTUALIZADO)
   ======================================== */
.site-footer {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 1.4rem 0;
  border-top: none;
  margin-top: 0;
}

.site-footer .footer__inner {
  width: min(1100px, 94%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 500;
}

.site-footer a:hover {
  opacity: 0.85;
  color: #fff;
}

@media (max-width: 700px) {
  .site-footer {
    padding: 1.2rem 0;
  }
  .site-footer p {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
}

/* ========================================
   MEDIA QUERIES
   ======================================== */
@media (max-width: 920px) {
  .features { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr 1fr; }
  .contact { grid-template-columns: 1fr; }
  .mySwiper {
    width: 80%;
  }
  .mySwiper .swiper-wrapper {
    grid-auto-columns: 240px;
    grid-template-rows: repeat(2, 160px);
  }
  .mySwiper .swiper-slide {
    width: 240px;
    height: 160px;
  }
  .swiper-button-prev {
    left: -80px;
    width: 60px;
    height: 60px;
  }
  .swiper-button-next {
    right: -80px;
    width: 60px;
    height: 60px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 36px;
  }
}

@media (max-width: 700px) {
  .cards { grid-template-columns: 1fr; }
  .carousel { height: 180px; }
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute;
    right: 1rem;
    top: 64px;
    background: rgba(255,255,255,.95);
    padding: 1rem;
    border-radius: .8rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav__menu.show { display: flex; }
  .nav__menu .has-dropdown .dropdown {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 1rem;
  }
  .features { grid-template-columns: 1fr; }
  .booking, .booking--hero { display: flex; flex-direction: column; gap: 1rem; }
  .mySwiper {
    width: 85%;
  }
  .mySwiper .swiper-wrapper {
    grid-auto-columns: 180px;
    grid-template-rows: repeat(2, 120px);
  }
  .mySwiper .swiper-slide {
    width: 180px;
    height: 120px;
  }
  .swiper-button-prev {
    left: -60px;
    width: 48px;
    height: 48px;
  }
  .swiper-button-next {
    right: -60px;
    width: 48px;
    height: 48px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 28px;
  }
}

/* Scroll-down flecha animada */
.scroll-down {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #fff;
  animation: bounce 2s infinite;
  text-decoration: none;
  z-index: 20;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ========================================
   DESCRIPCIÓN PRINCIPAL DE ALOJAMIENTO
   ======================================== */
.alojamiento-desc {
  margin: 30px 0 50px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* Modal general */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
}

/* Contenido del modal */
.modal-content {
  min-width: 600px;
  max-width: 1100px;
  width: 96vw;
  max-height: 80vh;
  padding: 3.5rem 3.5rem 2.5rem 3.5rem;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(33,150,243,0.22), 0 8px 32px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: auto;
}
#modalRutaText {
  max-height: 38vh;
  font-size: 1.22rem;
  color: #2d2d2d;
  background: linear-gradient(90deg, #f7f7fa 60%, #e9e6f6 100%);
  padding: 1.6rem 2.2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,150,243,0.10);
  margin-bottom: 1.6rem;
  line-height: 2.1;
  max-height: 520px;
  overflow-y: auto;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 0.01em;
}
#modalRutaText p {
  margin-bottom: 1.2em;
}
#modalRutaText ul, #modalRutaText ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}
#modalRutaText li {
  margin-bottom: 0.7em;
}
#modalRutaText br {
  margin-bottom: 1em;
}
#modalRutaImg {
  width: 340px;
  height: 220px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  margin-bottom: 1.2rem;
}

/* Botón cerrar */
.modal-close {
  position: absolute;
  top: 22px;
  right: 32px;
  font-size: 2.4rem;
  color: #c9a66b;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(33,150,243,0.10);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.modal-close:hover {
  background: #c9a66b;
  color: #fff;
  transform: scale(1.08);
}
.modal-content {
  position: relative;
}

/* Imagen dentro del modal */
.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Forzar Roboto solo en el apartado Alojamiento */
#alojamiento .alojamiento-desc {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  font-weight: 100;
}

/* Botones de actividades de entorno */
.entorno-actividades {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  justify-content: center;
}
.actividad-btn {
  background: #fff;
  color: #1f2a27;
  border: 2px solid #c9a66b;
  border-radius: 2rem;
  line-height: 0.8;
  padding: 0.2rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.actividad-btn .check {
  color: #4caf50;
  font-size: 1.3rem;
  margin-right: 0.5rem;
}
.actividad-btn:hover {
  background: #c9a66b;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.actividad-btn:hover .check {
  color: #fff;
}
.rutas-list--fila {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.rutas-list--fila .ruta-btn {
  min-width: 180px;
  text-align: center;
}
.rutas-list--columnas {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.rutas-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rutas-list--grid {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.rutas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 1.2rem 2.5rem;
}
.ruta-btn {
  width: 100%;
  min-width: 180px;
  max-width: 260px;
}
.rutas-list--filas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.rutas-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.2rem;
}
.ruta-btn {
  min-width: 160px;
  max-width: 220px;
}
.ruta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.ruta-img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ruta-img:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 48px rgba(33,150,243,0.22), 0 4px 24px rgba(0,0,0,0.13);
}
.ruta-btn {
  font-size: 1.08rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 0.2rem;
}
.rutas-row .ruta-item {
  min-width: 220px;
}
/* Descripción pequeña en el modal */
#modalRutaText {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
/* ========================================
   RUTAS - ÍCONOS Y ENLACES DESTACADOS
   ======================================== */
.rutas-index-block {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
.rutas-index-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(90deg, #f7f7fa 60%, #e9e6f6 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(33,150,243,0.10);
  padding: 1.2rem 2.2rem;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
}
.rutas-index-link:hover {
  box-shadow: 0 8px 32px rgba(33,150,243,0.18);
  background: linear-gradient(90deg, #e9e6f6 60%, #f7f7fa 100%);
}
.rutas-index-icon {
  font-size: 2.2rem;
  color: #c9a66b;
  margin-right: 0.5rem;
}
.rutas-index-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #2d2d2d;
}
.rutas-index-newtab {
  font-size: 1.15rem;
  color: #4caf50;
  margin-left: 0.7rem;
}
.rutas-index-desc {
  font-size: 1.02rem;
  color: #666;
  margin-left: 1.2rem;
  font-style: italic;
}

/* ========================================
   CONTACTO Y RESERVA - NUEVO DISEÑO
   ======================================== */
#contacto.section {
  background: linear-gradient(120deg, #f7f7fa 60%, #e9e6f6 100%);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
#contacto .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking-form--section {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(33,150,243,0.13), 0 2px 12px rgba(0,0,0,0.10);
  padding: 2.5rem 2.5rem 2rem 2.5rem;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  animation: fadeInUp 0.7s;
}
.booking-form--section label {
  font-size: 1.08rem;
  color: #2d2d2d;
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.booking-form--section input {
  font-size: 1.08rem;
  padding: 0.7rem 1.1rem;
  border-radius: 10px;
  border: 1.5px solid #c9a66b;
  background: #f7f7fa;
  margin-top: 0.3rem;
  margin-bottom: 0.7rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.booking-form--section input:focus {
  border-color: #4caf50;
  box-shadow: 0 2px 12px rgba(33,150,243,0.10);
  outline: none;
}
.booking-form--section .btn--primary {
  background: linear-gradient(90deg, #c9a66b 60%, #e9e6f6 100%);
  color: #fff;
  font-size: 1.13rem;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.9rem 1.7rem;
  border: none;
  box-shadow: 0 4px 24px rgba(33,150,243,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.booking-form--section .btn--primary:hover {
  background: #c9a66b;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(33,150,243,0.18);
}
.booking__result {
  font-size: 1.05rem;
  color: #4caf50;
  margin-top: 1.2rem;
  font-weight: 600;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.contacto-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 2.2rem;
}

/* WhatsApp Float Icon */
.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 1200;
  background: #b6e7a7;
  color: #fff;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 3px solid #f3f3f3;
}
.whatsapp-float:hover {
  background: #25d366;
  transform: scale(1.08);
}
.whatsapp-float i.fab.fa-whatsapp {
  color: #fff;
  font-size: 2.3rem;
  margin: 0;
}
.whatsapp-text {
  display: none;
}
.whatsapp-text {
  margin-left: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.whatsapp-float:hover {
  background: #128c7e;
  transform: scale(1.08);
}

/* Galería moderna para salon.html */
.modern-gallery-block {
  margin-bottom: 3.5rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.10), 0 2px 12px rgba(0,0,0,0.08);
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  animation: fadeInUp 0.7s;
}
.modern-gallery-title {
  font-size: 1.75rem;
  margin-bottom: .5rem;
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
}
.modern-gallery-title::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
}
.modern-gallery-desc {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #555;
  text-align: center;
  width: 100%;
}
.modern-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.7rem;
  margin-bottom: 0.5rem;
}
.modern-gallery a {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  transition: transform 0.22s, box-shadow 0.22s;
}
.modern-gallery a:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,150,243,0.22), 0 4px 24px rgba(0,0,0,0.13);
}
.modern-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
@media (max-width: 900px) {
  .modern-gallery img { height: 220px; }
}
@media (max-width: 600px) {
  .modern-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .modern-gallery img { height: 160px; }
}

/* Carrusel moderno para galería individual */
.modern-carousel-block {
  margin-bottom: 3.5rem;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.10), 0 2px 12px rgba(0,0,0,0.08);
  padding: 2.2rem 2.2rem 1.5rem 2.2rem;
  animation: fadeInUp 0.7s;
}
.modern-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1.5rem auto;
}
.carousel-img {
  width: 100%;
  max-width: 600px;
  max-height: 40vh;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  display: block;
  margin: 0 auto;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(33,150,243,0.12), 0 1px 4px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  z-index: 10;
  transition: box-shadow .2s, background .2s;
}
.carousel-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(33,150,243,0.18);
}
.carousel-arrow svg {
  width: 18px;
  height: 18px;
  fill: #2196f3;
  transition: fill .2s;
}
.carousel-arrow:hover svg {
  fill: #fff;
}
.carousel-arrow--left { left: 10px; }
.carousel-arrow--right { right: 10px; }

@media (max-width: 900px) {
  .carousel-img { max-width: 90vw; max-height: 30vh; }
}
@media (max-width: 600px) {
  .carousel-img { max-width: 98vw; max-height: 22vh; }
}

/* Imágenes exclusivas del carrusel de salon.html */
.cr-salon-img {
  width: 100%;
  max-width: 600px;
  max-height: 40vh;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  display: block;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .cr-salon-img { max-width: 90vw; max-height: 30vh; }
}
@media (max-width: 600px) {
  .cr-salon-img { max-width: 98vw; max-height: 22vh; }
}

.cr-salon-img-link {
  cursor: pointer;
  display: inline-block;
}
.cr-salon-img-link img {
  pointer-events: none;
}

/* Testimonios */
.testimonios-section {
  background: #f7f9f8;
  padding: 48px 0 32px 0;
  margin-top: 32px;
}
.testimonios-title {
  text-align: center;
  font-size: 2rem;
  color: #6e7b76;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}
.testimonios-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: column;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonio {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonio-text {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 0.8rem;
  font-style: italic;
}
.testimonio-autor {
  font-size: 0.98rem;
  color: #6e7b76;
  font-weight: 500;
  align-self: flex-end;
}
@media (max-width: 1100px) {
  .testimonios-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .testimonios-list {
    grid-template-columns: 1fr;
  }
}

.modal-content iframe {
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
  border: 3px solid #fff;
  width: 100%;
  height: 500px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  max-width: 600px;
  margin: 1.5rem auto;
  font-family: 'Roboto', sans-serif;
  background: #f7f7fa;
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(33,150,243,0.18), 0 2px 12px rgba(0,0,0,0.10);
}
.calendar-header {
  display: contents;
  font-weight: 600;
  color: #c9a66b;
  text-align: center;
}
.calendar-header span {
  padding: 0.6rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.calendar-body {
  display: contents;
}
.calendar-body div {
  padding: 0.8rem;
  text-align: center;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e9eeec;
  font-size: 1rem;
  color: #1f2a27;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.calendar-body .available {
  background: #d4edda;
  border-color: #4caf50;
  color: #155724;
}
.calendar-body .unavailable {
  background: #f8d7da;
  border-color: #dc3545;
  color: #721c24;
}
.calendar-body .empty {
  background: transparent;
  border: none;
  box-shadow: none;
}
#calendar-month {
  font-family: 'Playfair Display', serif;
  color: #c9a66b;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 600px) {
  .calendar {
    max-width: 90vw;
    padding: 1rem;
  }
  .calendar-body div {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
  #calendar-month {
    font-size: 1.6rem;
  }
}

/* Calendario FullCalendar personalizado */
#fullcalendar {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 12px;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto;
}

#fullcalendar .fc {
  width: 100% !important;
}
#fullcalendar .fc-toolbar-title {
  font-size: 1.35rem !important;
  white-space: nowrap;
}
#fullcalendar .fc-col-header-cell-cushion,
#fullcalendar .fc-daygrid-day-number {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  #contacto .container {
    flex-direction: column;
    align-items: center;
  }
}
/* Hero: arreglar en móvil */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
  }
}
/* ========================================
   MENÚ MÓVIL - CORRECCIÓN DE COLORES
   ======================================== */
@media (max-width: 700px) {
  .nav__toggle {
    display: block;
  }

  .nav__menu {
    position: absolute;
    right: 1rem;
    top: 64px;
    background: #fff;
    padding: 1rem;
    border-radius: .8rem;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    display: none;
    min-width: 220px;
    z-index: 100;
  }

  .nav__menu.show {
    display: flex;
  }

  /* Texto oscuro para que se lea bien sobre fondo blanco */
  .nav__menu a {
    color: #1f2a27 !important;
    font-weight: 600;
    width: 100%;
    padding: 0.7rem 1rem;
  }

  .nav__menu a:hover {
    background: var(--primary);
    color: #fff !important;
  }

  /* Botón "Ver Disponibilidad" en el menú móvil */
  .nav__menu .btn--primary {
    background: var(--primary);
    color: #fff !important;
    margin-top: 0.5rem;
    text-align: center;
  }

  /* Dropdown de Galería */
  .nav__menu .has-dropdown .dropdown {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
    padding-left: 0.5rem;
    background: transparent;
    min-width: 100%;
  }

  .nav__menu .has-dropdown .dropdown li a {
    color: #1f2a27 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.45rem 1rem;
  }

  .nav__menu .has-dropdown .dropdown li a:hover {
    background: var(--primary);
    color: #fff !important;
  }
}
/* ========================================
   HERO - ARREGLO MÓVIL (VERTICAL Y HORIZONTAL)
   ======================================== */

@media (max-width: 900px) {
  .hero {
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
  }
}

@media (max-width: 900px) and (orientation: portrait) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    background-size: cover !important;
    background-position: center center !important;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    background-size: cover !important;
    background-position: center center !important;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 4vw, 2.2rem) !important;
    white-space: normal !important;
  }

  .hero__welcome {
    font-size: clamp(0.85rem, 2.5vw, 1.1rem) !important;
  }

  .hero__subtitle {
    font-size: clamp(0.8rem, 2.2vw, 1rem) !important;
    margin-bottom: 1rem !important;
  }

  .scroll-down {
    bottom: 1.5rem !important;
    font-size: 1.4rem !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll !important;
  }
}