/* RESET & GENERAL */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Spinnaker';
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.3px;
  color: #63667a;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  font-size: 90px;
  letter-spacing: -1px;
  color: #1e252d;
}

h5 {
  font-family: 'Spinnaker';
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  font-size: 17px;
  letter-spacing: 0.2px;
  color: #cd9540;
}

h6 {
  font-family: 'Spinnaker';
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.3px;
  color: #63667a;
}

.animar-texto {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: transform, opacity;
}

.animar-texto.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }
.delay-4 { transition-delay: 0.9s; }
.delay-5 { transition-delay: 1.1s; }
.delay-6 { transition-delay: 1.3s; }
.delay-7 { transition-delay: 1.5s; }
.delay-8 { transition-delay: 1.7s; }
.delay-9 { transition-delay: 1.9s; }

.amenities h6,
.breakfast-section h6 {
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* GRID GENERAL */
.parent {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: auto auto auto auto auto auto auto auto auto auto;
  position: relative;
}

/* ===== NAV WRAPPER ===== */
.nav-wrapper {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
}

/* NAV flotando sobre slider (solo escritorio) */
@media screen and (min-width: 769px) {
  .nav-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    padding: 20px 40px;
    box-sizing: border-box;
  }
}

/* NAV CONTAINER y lista */
.nav-container {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  justify-items: center;
}

.nav-container ul {
  grid-column: 3 / 10;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 25px;
  list-style: none;
  margin: 20px;
  padding: 0;
}

.nav-container ul li a {
  color: white;
  text-decoration: none;
  font-family: 'Spinnaker';
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  margin: 0 auto;
  padding: 0;
  white-space: nowrap;
}

.nav-container ul li a:hover,
.nav-container ul li a:focus,
.nav-container ul li a:active {
  color: #cd9540;
  transition: color 0.3s ease;
}

.container-logo img {
  height: 80px;
}

/* ===== SLIDER WRAPPER ===== */
.slider-wrapper {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  position: relative;
  height: 75vh;
  z-index: 1;
}

/* SLIDER GENERAL */
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
}

.slider-hidden .slide img,
.slider-hidden .overlay,
.slider-hidden .fw-fade-slider-title {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.slide,
.slide img,
.overlay {
  transition: opacity 1s ease-in-out;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

/* TEXTOS DEL SLIDER */
.fw-fade-slider-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: white;
  font-size: 70px;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 3;
}

.fw-fade-slider-subtitle {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  color: #cd9540;
  font-size: 33px;
  font-style: italic;
  line-height: 1.2;
  font-family: 'Cormorant Garamond', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: 3;
}

/* ANIMACIONES */
.fw-fade-slider-title.enter {
  animation: fadeInText 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.fw-fade-slider-title.exit {
  animation: fadeOutText 0.5s ease forwards;
}

@keyframes fadeOutText {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
}

.fw-fade-slider-subtitle.enter {
  animation: fadeInSubtitle 1s ease forwards;
  animation-delay: 0.8s;
}

@keyframes fadeInSubtitle {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.fw-fade-slider-subtitle.exit {
  animation: fadeOutSubtitle 0.5s ease forwards;
}

@keyframes fadeOutSubtitle {
  from {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
}

/* DOTS */
.dots {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1px solid #cd9540;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #cd9540;
}

/* RESERVA */

.div2 {
  position: relative;
  top: -50px;         
  z-index: 15;       
  display: grid;
  place-items: center;
  grid-column: 3 / 10;
  grid-row: 3 / 4;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  height: auto;
}

#div7 {
  scroll-margin-top: 100px; /* Ajusta el valor según el espacio que necesites */
}

#form-reserva {
  width: 100%;
  margin: 0 auto;
  justify-items: center;
}

.reserva-campos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* Nuevo: espacio consistente entre elementos */
  margin: 60px;
}

.campo {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1 1 200px; /* Nuevo: flexibilidad para adaptarse */
}

.campo label i.fa-calendar-check, i.fa-calendar-days,
.campo-boton button i.fa-magnifying-glass {
  display: none;
}

input[type="text"]#startDateVisible,
input[type="text"]#endDateVisible {
  width: 100%; /* Nuevo: 100% dentro del flex */
  padding: 8px 12px;
  border: 1px solid #cd9540;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  height: 40px;
  line-height: 1;
  color: #cd9540;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.campo label {
  background: white;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 350;
  letter-spacing: 1px;
  font-size: 12px;
  font-style: normal;
  margin-bottom: 5px;
}

.campo-boton {
  align-self: flex-end;
  flex: 1 1 200px; /* Nuevo: igual comportamiento flexible */
  min-width: 180px;
}

.reserva-campos button {
  font-family: 'Spinnaker', sans-serif;
  font-size: 15px;
  background-color: #cd9540;
  color: white;
  border: none;
  padding: 0;
  width: 100%; /* Nuevo: se adapta al contenedor */
  height: 40px;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.reserva-campos button:hover {
  background-color: #8c7b54;
}


.litepicker {
  z-index: 9999; /* asegúrate que está por encima de todo */
}

/* VENTAN EMERGENTE RESERVA */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-contenido {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  height: 80%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  border-radius: 8px;
  overflow: hidden;
}

.modal-contenido iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

/* SOLO ADULTOS */

.div3{
  grid-column: 3 / 10;
  grid-row: 4 / 5;
  margin-top: 85px;
}

h3 {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-size: 44px;
  line-height: 50px;
  letter-spacing: -0.7px;
  color: #3c4059;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-text img {
  margin: 10px;
  margin-left: 0px;
  height: 100px;
  width: 43px;
}

.adults-text {
  margin-top: 20px;
}

/* EXPERIENCIAS */

.div4{
  grid-column: 3 / 10;
  grid-row: 5 / 6;
  margin-top: 170px;
  margin-bottom: 60px;
}

.justify-text{
  text-align: center;
}

.subtitle {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    text-align: center;
    font-style: normal;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: -0.2px;
    color: #cd9540;
    margin-top: 5px;
}

.experiencia-animada {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.experiencia-animada.visible {
  opacity: 1;
  transform: translateY(0);
}

html {
  scroll-behavior: smooth;
}

#div10 {
  scroll-margin-top: 80px; /* Ajusta este valor según el espacio que quieras */
}

/* Contenedor grid general */
.experiencias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 3 / 10;
  gap: 30px;
  margin-top: 80px;
}

/* Estilo general de cada tarjeta */
.card {
  display: block;
  background: #fff;
  overflow: hidden;
  transition: transform 0.4s ease;
  text-decoration: none;
  color: inherit;
}

/* Hover: zoom */
.card:hover {
  transform: scale(1.05);
}

/* Contenedor interior */
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden; /* necesario para limitar el efecto dorado */
}

/* Imagen dentro del contenido */
.card-content img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Efecto dorado sobre imagen con superposición */
.card-content::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(205, 149, 64, 0.3); /* Dorado translúcido */
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Activar efecto en hover */
.card:hover .card-content::after {
  opacity: 1;
}

.card:hover .card-content img {
  transform: scale(1.02);
}

.card-content h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  padding-bottom: 5px;
  text-align: center;
  color: #3c4059;
  position: relative;
}

/* Línea decorativa debajo del texto */
.card-content h4::after {
  content: "";
  position: absolute;
  top: 60%; /* Justo después del contenido del h4 */
  margin-top: 8px; /* Espacio entre texto y línea */
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #cd9540; /* Dorado */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: scaleX(0.5);
  transform-origin: center;
}

/* Aparece en hover */
.card:hover h4::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Animación scroll desde abajo */
.experiencia-animada {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.experiencia-animada.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Retardos para que aparezcan una a una */
.delay-0 { transition-delay: 0.1s; }
.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.5s; }
.delay-3 { transition-delay: 0.7s; }
.delay-4 { transition-delay: 0.9s; }


/* CARRUSEL TEXTOS */

#div6 {
  scroll-margin-top: 80px; /* Ajusta este valor según el espacio que quieras */
}

.carousel-text {
  grid-column: 3 / 10;
  grid-row: 6 / 7;
  margin-top: 85px;
}

.carousel-columns {
  display: flex;
  gap: 100px; /* Espacio horizontal entre columnas */
  justify-content: space-between;
  flex-wrap: wrap; /* Hace que en pantallas pequeñas se adapten en vertical */
  margin-left: 50px;
  margin-right: 50px;
  margin-top: 60px;
}

.carousel-columns p,
.carousel-columns span {
  flex: 1;
  min-width: 300px;
}

.carousel-text p {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    line-height: 45px;
    font-size: 30px;
    letter-spacing: -0.5px;
    color: #2a2d41;
}

.carousel-text h4 {
margin-top: 60px;
}




/* CARRUSEL */

.carousel-wrapper {
  grid-column: 1 / 12;
  grid-row: 7 / 8;
  width: 100vw;
  overflow: hidden;
  position: relative;
  height: 768px;
  margin-top: 75px;
  
}

.carousel-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  align-items: center;
  padding-left: calc(50vw - 570px - 8px);
  height: 100%;
}

.carousel-item {
  flex: 0 0 1140px;
  height: 768px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 0.2;
  transform: scale(0.9);
  user-select: none;
}

.carousel-item.active {
  transform: scale(1);
  opacity: 1;
}

/* Botón vertical a la izquierda, inicialmente oculto */
.btn-vertical {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  cursor: pointer;
  font-weight: 400;
  font-size: 13px;
  line-height: 14px;
  color: #cd9540;
  font-family: Spinnaker, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 10px 0;
  border-bottom: 1px solid #cd9540;
  user-select: none;
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.5s ease;
  z-index: 10;

  opacity: 0;
  pointer-events: none;
}

.btn-vertical.visible {
  opacity: 1;
  pointer-events: auto;
}

.btn-vertical:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* AMENITIES */

.amenities {
  grid-column: 3 / 10;
  grid-row: 8 / 9;
  margin-top: 85px;
  padding-top: 80px;
  padding-bottom: 180px;
}

#servicios {
  scroll-margin-top: 120px; /* Ajusta a tu gusto */
}

.amenities h4 {
  margin-bottom: 30px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: 3fr 2.5fr;
  gap: 40px;
  align-items: baseline;
  margin-top: 60px !important;
}

.amenities-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 100px 40px;
  justify-content: center;
  margin: 120px 0 50px 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 20px; /* Protección lateral para tablets */
}


.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Spinnaker', sans-serif;
  font-size: 16px;
  color: #3c4059;
}

.icon-item svg {
  width: 40px;
  height: 40px;
  stroke: #cd9540; /* Aplica el color dorado al trazo */
}

/* Sección desayuno */

.breakfast-section {
  grid-column: 1 / 12;
  grid-row: 9 / 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 75vh; /* puedes ajustar esta altura según el diseño */
  background-color: #eeeff2;
  align-items: stretch; /* asegura que ambas mitades se estiren a la altura */
  margin-bottom: 100px;
}

.breakfast-image {
  width: 100%;
  height: 100%;
}

.breakfast-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.breakfast-content {
  padding-right: 270px;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.breakfast-content h4 {
  margin-top: 80px;
  margin-bottom: 30px;
}
 
.breakfast-desc {
  font-size: 16px;
  line-height: 28px;
  margin-top: 20px;
}

.breakfast-note {
  font-size: 12px;
  margin-top: 15px;
  line-height: 22px;
  font-style: italic;
}

/* Sección footer */

.footer {
  grid-column: 1 / 12;
  grid-row: 11 / 12;
  background-color: #1e252d;
  color: #ffffff;
  padding: 60px 0px 30px;
  font-family: 'Spinnaker', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* tu layout general */
}

.footer-content {
  grid-column: 3 / 11;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* interno */
  max-width: 100%;
}


/* LOGO: ocupa todo el ancho (col 1 a 13 = 12 columnas) */
.footer-content > div:first-child {
  grid-column: 1 / 13;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-address {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond';
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #cd9540;
}

.footer-contact,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links {
  font-family: "Spinnaker";
  font-size: 13px;
  text-transform: uppercase;
  line-height: 34px;
}

.footer-contact a,
.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #cd9540;
}

.footer-bottom {
  grid-column: 1 / 12;
  grid-row: 12 / 13;
  display: grid;
  place-items: center;
  margin-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
  color: #aaaaaa;
  text-align: center;
}

/* SECCIÓN 5 – LOCALIZACIÓN */

.localizacion {
  grid-column: 3 / 10;
  grid-row: 10 / 11;
  margin-top: 85px;
  margin-bottom: 60px;
}

.localizacion h4 {
  margin-bottom: 30px;
}

.localizacion-grid {
  display: grid;
  grid-template-columns: 3fr 2.5fr;
  gap: 60px;
  align-items: baseline;
  margin-top: 60px !important;
}

.localizacion-desc a {
  text-decoration: none;
  color: inherit;
}

.localizacion-distancia {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 40px;
  margin-top: 100px;
  margin-bottom: 240px;
  width: 100%;
}

.localizacion-map {
  width: 100%;
  height: 60vh;
  margin-top: 60px;
  border: none;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: #f2f2f2;
}

#map.map-zooming {
  cursor: grab;
}


/* CONTADORES */

.contador {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  line-height: 45px;
  font-size: 58px;
  letter-spacing: 0px;
  color: #cd9540;
}

.metraje {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  color: #cd9540;
  font-size: 22px;
}

.localizacion-distancia .a p + p {
  margin-top: 20px;
}

.desc-text-cont {
  font-family: 'Spinnaker';
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  font-size: 11px;
  letter-spacing: 0.2px;
  color: #938d9a;
}

/* BOTONES MAPA / SATÉLITE DE MAPBOX */

.custom-style-switcher {
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding: 6px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  font-family: 'Spinnaker', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.map-style-btn {
  background-color: #eeeeee;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  color: #1e252d;
}

.map-style-btn:hover {
  background-color: #ddd;
  color: #cd9540;
}

.map-style-btn.active {
  background-color: #cd9540;
  color: white;
}


.scroll-to-top {
  display: none; /* ← Oculto inicialmente */
  position: fixed;
  bottom: 40px;
  right: 40px;
  background-color: #cd9540;
  color: white;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}


.scroll-to-top:hover {
  background-color: #a87b2f;
  transform: translateY(-4px);
}

.scroll-to-top svg {
  display: block;
  width: 24px;
  height: 24px;
}

/* Estilos para el Banner de Consentimiento de Cookies */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fondo oscuro semitransparente */
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    display: flex;
    justify-content: center; /* Centra el contenido horizontalmente en la pantalla */
    align-items: center; /* Centra el contenido verticalmente (si el banner tiene altura fija) */
    transform: translateY(100%); /* Oculto por defecto */
    transition: transform 0.5s ease-out; /* Animación de entrada/salida */
}

#cookie-consent-banner.cookie-banner-visible {
    transform: translateY(0); /* Muestra el banner */
}

#cookie-consent-banner.cookie-banner-hidden {
    display: flex; /* Mantén flex para transiciones, oculto por transform */
    transform: translateY(100%); /* Asegura que esté oculto */
}

.cookie-banner-content {
    max-width: 1200px; /* Ancho máximo para el contenido */
    width: 100%;
    display: flex;
    flex-direction: column; /* **Mantiene el texto y los botones en columna SIEMPRE** */
    align-items: center; /* **Centra el bloque de texto y el bloque de botones horizontalmente** */
    gap: 15px; /* Espacio entre el texto y los botones */
}

.cookie-banner-content p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.4;
    text-align: center; /* **Centra el texto del párrafo siempre** */
    flex-grow: 1; /* Permite que el párrafo ocupe el espacio disponible, aunque con column no es tan crítico */
    padding: 0 10px; /* Pequeño padding para que el texto no toque los bordes en pantallas muy pequeñas */
}

.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap; /* Envuelve los botones en líneas si no hay espacio */
    gap: 10px; /* Espacio entre botones */
    justify-content: center; /* **Centra los botones dentro de su contenedor siempre** */
}

.cookie-banner-buttons button,
.cookie-banner-buttons a {
    /* Propiedades unificadas para todos los botones/enlace */
    background-color: #cd9540; /* Color principal de tu marca */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em; /* Misma tipografía y tamaño */
    font-family: inherit; /* Hereda la tipografía principal del body */
    text-decoration: none; /* Quita el subrayado del enlace */
    transition: background-color 0.3s ease;
    white-space: nowrap; /* Evita que el texto del botón se rompa */

    /* Asegurar el mismo tamaño */
    display: inline-flex; /* Permite controlar padding/margin/width */
    align-items: center; /* Centra verticalmente el texto */
    justify-content: center; /* Centra horizontalmente el texto */
    min-width: 140px; /* Establece un ancho mínimo para que sean iguales */
    text-align: center; /* Asegura el centrado del texto si el ancho es fijo */
}

.cookie-banner-buttons button:hover,
.cookie-banner-buttons a:hover {
    background-color: #b27a36; /* Tono más oscuro al pasar el ratón */
}

/* Estilo específico para el botón de rechazar (opcional, pero mantiene la diferenciación visual) */
#decline-cookies {
    background-color: #555;
}

#decline-cookies:hover {
    background-color: #333;
}




/* **¡MEDIA QUERY ** */

/* SLIDER Y MENU NAV */
@media screen and (max-width: 768px) {
.parent {
  display: grid;
  grid-template-columns: repeat(11, 1fr); /* o lo que uses */
  grid-template-rows: repeat(12, auto);
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 50px;
  line-height: 60px;
}

h6 {
  font-size: 12px;
  white-space: nowrap;
}

/* ---------- RESPONSIVE NAV MENU ----------*/

.nav-container ul li {
    display: none;
}

.nav-container ul li#logo {
  display: block;
  grid-column: 1 / -1;
  text-align: center;
  justify-self: center;
}

.container-logo img {
  height: 50px;
  display: block;
  margin: 0 auto;
}

/* ---------- RESPONSIVE SLIDER ----------*/

.slider-container {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  position: relative;
  z-index: 1;
}
.slider-wrapper {    
  height: 30vh;
  z-index: 1;
}

.fw-fade-slider-title{
  font-size: 40px;
}

.fw-fade-slider-subtitle {
  font-size: 25px;
}

.dots {
  flex-direction: row;
  bottom: 15px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

/* ---------- RESPONSIVE SLIDER TEXTOS ----------*/

.fw-fade-slider-title {
  font-size: 24px;
  top: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fw-fade-slider-subtitle {
  font-size: 20px;
  top: 60%;
}

/* ---------- RESPONSIVE SOLO ADULTOS ----------*/

.div3 {
  grid-row: 3 / 4;
  margin: 120px 0 70px 0;
}

/* ---------- RESPONSIVE GALERIA ----------*/

.carousel-wrapper {
  width: 100vw;
  height: 370px;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
  padding-left: 0;
  gap: 0;
}

.carousel-item {
  flex: 0 0 100vw;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform-origin: center center;
  opacity: 0.3;
  transform: scale(0.95);
  user-select: none;
  border-radius: 0;
}

.carousel-item.active {
  transform: scale(1);
  opacity: 1;
}

/* ---------- RESPONSIVE RESERVAR ----------*/

#div7 {
  grid-row: 4 / 5;
  height: 40vh;
}

.div2 {
  top: 0;
  box-shadow: none;
  justify-items: center;
}

.campo-boton {
  padding-top: 20px;
}

.reserva-campos {
  justify-content: center;
  margin: 0;
}

.campo label {    
  margin-bottom: 0;
}

#form-reserva {
  padding: 0;
  display: flex;
}

/* ---------- RESPONSIVE EXPERIENCIAS----------*/

.div4{
  display: none;
}

/* ---------- RESPONSIVE HABITACIONES ----------*/

#div6 {
  grid-row: 5 / 6;
}

.carousel-columns p,
.carousel-columns span {
  min-width: unset;
}

.carousel-text p {
  font-size: 18px;
  line-height: 35px;
}

.carousel-columns {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-left: 0;
  margin-right: 0;
}

/* ---------- RESPONSIVE GALERIA ----------*/

.carousel-wrapper {
  grid-column: 1 / -1;
  grid-row: 6 / 7;
  height: 50vh;
  overflow: hidden;
  position: relative;
}

.btn-vertical {
  display: none;
}

/* ---------- RESPONSIVE AMENITIES ----------*/

#servicios {
  grid-row: 7 / 8;
}
.amenities-grid {
  display: inline-block;
}

.amenities-icons {
  grid-column: 3 / 10;
  grid-template-columns: repeat(2, auto);
  gap: 24px 40px;
  justify-content: center;
  justify-items: center;
  margin: 70px 0 50px 0;
}

.icon-item {
  font-size: 13px;
  gap: 8px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-item svg {
  width: 28px;
  height: 28px;
}

.icon-item span {
  font-size: 12px;
}

/* ---------- RESPONSIVE DESAYUNO ----------*/

.breakfast-section {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    height: auto;
    margin-bottom: 0;
  }

  .breakfast-image {
    grid-column: 1 / 13;
    grid-row: 1 / 2;
    height: auto;
  }

  .breakfast-content {
    grid-column: 3 / 11; /* o 2 / 12 si quieres más ancho */
    grid-row: 2 / 3;
    padding: 0rem 1rem 6rem 1rem;
    margin-top: 85px;
  }

  .breakfast-image img {
    height: auto;
    max-height: 50vh; /* opcional para limitar el alto en móvil */
  }

.breakfast-content h4 {
    margin-top: 60px;
}

 

/* ---------- RESPONSIVE LOCALIZACION ----------*/

.localizacion-grid {
  display: flex;
  flex-direction: column;
}

.localizacion {
  margin-bottom: 0;
}

.localizacion-distancia{
  display: flex;
  flex-direction: column-reverse;
  margin-top: 0;
}

.localizacion-map {
  width: 100%;
  height: 40vh;
}

.localizacion-tiempos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contador {
  font-size: 32px;
}

.metraje {
  font-size: 25px;
}

.localizacion-distancia .a p + p {
  margin-top: 0;
  margin-bottom: 20px;
}

/* ---------- RESPONSIVE FOOTER ----------*/

.footer-content {
  display: block;
  text-align: center; 
}

.footer-column-direccion,
.footer-column-politicas {
  width: 100%;
}

.footer-column-direccion {
  margin-bottom: 40px;
}

.footer-address br {
  display: none;
}

.footer-column-web {
  display: none;
}

.footer-address {
  font-size: 18px;
}

.footer-logo {
  max-width: 120px;
  margin: 0 auto;
}

.footer-address,
.footer-contact,
.footer-links {
  margin: 0 auto;
  padding: 0;
}

.footer-links li {
  margin: 0.5rem 0;
}

.footer-bottom {
  font-size: 10px;
}

}


@media screen and (min-width: 769px) and (max-width: 1024px) {
  .parent {
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: repeat(12, auto);
  }

  h3 {
    font-size: 40px;
  }

  h4 {
    font-size: 55px;
    line-height: 60px;
  }

  h6 {
    font-size: 14px;
    white-space: nowrap;
  }

  .nav-container ul li {
    display: none;
  }

  .nav-container ul li#logo {
    display: block;
    grid-column: 1 / -1;
    text-align: center;
    justify-self: center;
  }

  .container-logo img {
    height: 65px;
    margin: 0 auto;
  }

  .fw-fade-slider-title {
    font-size: 48px;
    top: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .fw-fade-slider-subtitle {
    font-size: 28px;
    top: 58%;
  }

  .carousel-wrapper {
    width: 100vw;
    height: 500px;
    overflow: hidden;
  }

  .carousel-item {
    flex: 0 0 100vw;
    height: 100%;
    object-fit: cover;
  }

  .amenities-icons {
  gap: 50px 80px;
  justify-content: center;
  justify-items: flex-start;
  margin: 70px 0 50px 0;
}

  .breakfast-section {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    height: auto;
  }

  .breakfast-image {
    grid-column: 1 / 13;
    height: auto;
  }

  .breakfast-content {
    grid-column: 3 / 11;
    padding: 32px 32px 85px 32px;
    margin-top: 40px;
  }

  .localizacion-grid {
    flex-direction: column;
  }

  .localizacion-distancia {
    flex-direction: column-reverse;
  }

  .footer-content {
    display: block;
    text-align: center;
  }

  .footer-column-direccion {
    margin-bottom: 40px;
  }

  .footer-column-web {
    display: none;
  }

  .footer-address br {
    display: none;
  }
}


/* ---------- SECCION ICONOS DE AMENITIES ESPECIFICO PARA PANTALLAS 768  ----------*/

/* Solo móviles pequeños */
@media screen and (max-width: 767px) {
  .amenities-icons {
    grid-template-columns: repeat(2, auto);
  }
}

/* Desde iPad Mini en adelante */
@media screen and (min-width: 768px) {
  .amenities-icons {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

