/*VARIABLES*/
:root{
	
	--color-uno: #ffc107;
	--color-dos: #fff;
	--color-tres: #009688;
	--color-cuatro: #4caf50;
	--color-cinco: #f4e1c1;
    --color-text-body: #212121;

	--bg:#ffffff;
	--ink:#121212;
	--muted:#6b7280;            /* gris texto secundario */
	--line:#e5e7eb;             /* bordes claros */
	--ghost:#f3f4f6;            /* botón gris */
	--wa:#22c55e;               /* verde WhatsApp */
	--wa-hover:#16a34a;
	--radius:14px;
	--shadow:0 10px 30px rgba(0,0,0,.06);
	--shadow2: 0 12px 40px rgba(0,0,0,.18);
}

/*ESTILOS GENERALES*/

html{
  font-size: 10px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body{
	width: 100%;
	height: 100%;
	
	font-size: 1.6rem;
	font-family: ‘Noto Sans’, sans-serif;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-text-body);
}

.layout{
	width: 100%;
	min-width: 1200px;
	height: 100%;
}

/*ESTILOS MENU NAVEGACIÓN Y CABECERA DE LA WEB*/
.layout__menu{
    width: 100%;
    padding: 0 10rem;
    position:fixed;
    background-color: var(--color-dos);
    z-index: 10;
    transition: background-color 0.3s ease, opacity 0.3s ease; /*Al hacer sroll arriba*/
    opacity: 1;
    /* min-width: 1200px; */
    
}
/* estado con scroll */
.layout__menu.scrolled {
  /* opacity: 0.85;  */
  background-color: var(--color-text-body);
  color: var(--color-dos);
  opacity: 0.85;
}

.menu__navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

.navbar__logo{
	width: 187px;
	/* background-color: var(--color-primary); */
}

.logo__logo{
	font-size: 1.8rem;
	font-weight: 700;
}

.nav__list{
	display: flex;
	flex-direction: row;
	justify-content: center;
	/* background-color: red; */
}

.nav__item{
	position: relative;
	margin: 0 2.4rem;
}

.nav__title{
	position: relative;
	display: inline-block;
	line-height: 6rem;
	font-weight: 500;
	color: var(—color-text-body);
	transition: all 300ms ease-in-out;
}

.nav__title:hover{
	color: var(--color-tres);
	
}

.nav__title::before{
	content: '';
	height: 0.2rem;
	width: 0;
	background-color: var(--color-tres);
	position: absolute;
	bottom: 1.2rem;
	opacity: 0.1;
	transition: 500ms;
}

.nav__title:hover::before{
	width: 100%;
	opacity: 1;
}

.nav__submenu{
	display: block;
	position: absolute;
	top: 100%;
	left: 2rem;
	min-width: 19rem;
	padding: 1.5rem 1rem;
	border-radius: 0 0 0.4rem 0.4rem;
	background-color: var(--color-dos);
	box-shadow: 0px 13px 48px 0 rgba(0, 0, 0, 15%);
	opacity: 0;
	visibility: hidden;
	transition: all 300ms ease-in-out;
}

.nav__submenu__item{
	opacity: 0;
	transform: translateX(2rem);
	transition: all 300ms ease-in-out;
}

.nav__submenu-item:nth-child(1){
	transition-delay: 100ms;
}

.nav__submenu-item:nth-child(2){
	transition-delay: 200ms;
}

.nav__submenu-item:nth-child(3){
	transition-delay: 300ms;
}

.nav__submenu-item:nth-child(4){
	transition-delay: 400ms;
}

.nav__submenu-item:nth-child(5){
	transition-delay: 500ms;
}

.nav__submenu-item:nth-child(6){
	transition-delay: 600ms;
}

.nav__submenu-link{
	display: block;
	position: relative;
	font-size: 1.5rem;
	text-transform: capitalize;
	text-decoration: none;
	font-weight: 500;
	color: var(--color-text-body);
	padding: 0.7rem 1.5rem;
	transition: all 300ms ease-in-out;
}

.nav__item:hover>.nav__submenu{
	opacity: 1;
	visibility: visible;
	z-index: 999;
	left: 0;
}

.nav__item:hover> .nav__submenu-item{
	opacity: 1;
	transform: translateX(0);	
}

.nav__submenu-link:hover{
	color: var(--color-tres)
}

.nav__submenu-link::after{
	content: '';
	height: 0.2rem;
	width: 0;
	position: absolute;
	top: 75%;
	left: 0;
	background-color: var(--color-tres);
	transition: all 300ms ease-in-out;
}

.nav__submenu-link:hover::after{
	width: 75%;
}

/*ESTILOS HERO SECTION*/
.index__layout__hero{
	width: 100%;
	height: 800px;
	background-image: url("../img/varias/cenote4.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.hero__container{
	position: relative;
	display: inline-block;
	width: 60%;
	padding: 0 1.5rem;
	z-index: 3;
}

.hero__title{
	font-size: 6rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-dos);
	margin-bottom: 1rem;
}

.hero__button{
	display: inline-block;
	padding: 1.2rem 2.4rem;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--color-dos);
	background-color: var(--color-tres);
	border-radius: 3rem;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}
.hero__subtitle{
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.5;
	color: var(--color-dos);
	margin-bottom: 2rem;
}


/*ESTILOS SERVICIOS*/
#servicios{
  scroll-margin-top: -40px;
}
/* Contenedor general */
.servicios__container {
  text-align: center;
  padding: 4rem;

}

.servicios__title {
  font-size: 4rem;
  margin-bottom: 0;
}

.servicios__subtitle {
  font-size: 1.8rem;
  color: var(--color-text-body);
  margin-bottom: 4rem;
}

/* Grid de cards */
.servicios__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
  gap: 20px;
  justify-content: center;
}

/* Card base */
.cards__card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  min-height: 380px;
  color: white;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
  opacity: 70%;
}

.cards__card:hover{
	opacity: 100%;
	cursor: pointer;
}

/* Imagen de fondo */
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* se adapta al tamaño de la card */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

/* Título vertical */
.card__title {
	position: absolute;
	top: 50%;
	left: 15px;
	transform: rotate(-90deg) translate(-50%, 0);
	transform-origin: left top;
	font-size: 5rem;
	font-weight: bold;
	margin: 0;
	white-space: nowrap;
	text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
	z-index: 1;
}

/* Descripción en la parte baja */
.card__description {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  font-size: 3rem;
  font-weight: 500;
  text-align: right;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .servicios__cards {
    grid-template-columns: 1fr; /* 1 columna en móvil */
  }

  .card {
    min-height: 250px;
  }

  .card__title {
    transform: none; /* quitar rotación en móvil */
    position: relative;
    top: auto;
    left: auto;
    margin: 10px 0;
  }

  .card__description {
    padding: 10px 0;
  }
}

/* ====== CONTACTO ====== */


*{box-sizing:border-box}
.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}

body{background:var(--bg); color:var(--ink);}

.contacto{
  padding: 64px 20px 80px;
  display:flex; justify-content:center;
}
.contacto__wrap{
  width:100%;
  max-width: 960px;
  text-align:center;
}

.contacto__title{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight:700;
  font-size: clamp(32px, 4vw, 56px);
  line-height:1.1;
  margin:0 0 6px;
}
.contacto__subtitle{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight:700;
  margin:0 0 16px;
}
.contacto__lead{
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 15.5px;
  line-height:1.7;
  color: var(--btnText);
}

.contacto__form{
  margin: 0 auto;
  max-width: 860px;
  display:grid;
  gap: 14px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

.contacto__form input,
.contacto__form textarea{
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius: var(--radius);
  padding: 18px 18px;
  font-size:16px;
  outline:0;
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s, transform .02s;
}
.contacto__form textarea{ resize: vertical; min-height: 160px; }

.contacto__form input::placeholder,
.contacto__form textarea::placeholder{ color:#9aa3af; }

.contacto__form input:focus,
.contacto__form textarea:focus{
  border-color:#d1d5db;
  box-shadow: 0 0 0 4px rgba(2,132,199,.06), var(--shadow);
}

.contacto__actions{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  margin-top: 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  padding: 0 20px;
  font-weight:600;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  transition: transform .02s, filter .15s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:active{ transform: scale(.995); }

.btn--ghost{
  background: var(--ghost);
  border-color: #e5e7eb;
  color:#111827;
}
.btn--ghost:hover{ filter:brightness(.98); }

.btn--wa{
  background: var(--wa);
  color:#0b2815;
}
.btn--wa:hover{ background: var(--wa-hover); color:#06210f; }

/* ====== Responsive ====== */
@media (max-width: 720px){
  .contacto__lead{ font-size: 14.8px; }
  .contacto__actions{ grid-template-columns: 1fr; }
}


/* ====== FOOTER ====== */
.footer{
  padding: 40px 20px 50px;
  background: #fff;
  text-align: center;
  font-family: "Inter", system-ui, sans-serif;
}

.footer__social{
  display:flex;
  justify-content:center;
  gap: 28px;
  margin-bottom: 20px;
}

.footer__social a{
  color: #6b7280; /* gris tenue */
  font-size: 20px;
  display:flex; align-items:center; justify-content:center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border:1px solid #d1d5db;
  transition: all .2s ease;
}

.footer__social a:hover{
  color: var(--color-dos);
  /* border-color:#111827; */
  transform: scale(1.05);
  background-color: var(--color-tres);
}

.footer__copy{
  color: #4b5563;
  font-size: 14px;
}

/* ====== NOSOTROS ====== */
.nosotros__layout__hero{
	width: 100%;
	height: 800px;
	background-image: url("../img/hero_section.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.layout__nosotros{
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 20px;
}
.nosotros__title{
	font-size: 3.8rem; 
	text-align:center; 
	padding:5rem 0rem;
}
.nosotros_content{
	 display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 24px;
  align-items: center;
}
.nosotros__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.nosotros__subtitle{
  margin: 0;
  line-height: 1.2;
  font-size: clamp(20px, 2.4vw, 28px);
}

.nosotros__copy{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top:auto
}
.nosotros__text{
  margin: 0;
  text-wrap: pretty;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.6;
}
.nosotros__btn{
  align-self: start;
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: transform .15s ease, opacity .15s ease;
  color: #000;
}

.nosotros__btn:hover{
  background: #000; 
  color: #FFF; 
}



/* ====== CÓMO FUNCIONA ====== */
.como_funciona_subtitle{
  text-align:center; 
  margin-top: 10rem;
  /* font-family:"Playfair Display",serif; font-weight:800; */
  font-size: 6rem;
  padding-bottom: 5rem;
}
.pasos_content{
  margin-top:1.6rem;
  display:grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap:1rem; 
  align-items:start; 
  text-align:center;
  margin-bottom: 5rem;
}
.paso{
  display:flex; 
  flex-direction:column; 
  gap:10px; 
  align-items:center;
}
.paso__circle{
  width: 240px; 
  height: 240px; 
  border-radius:50%;
  display:flex; 
  align-items:center; 
  justify-content:center;
  text-align:center; 
  color:var(--color-uno); 
  padding:28px;
  box-shadow: var(--shadow);
}

.circle-1{
background-color: var(--color-uno);
}
.circle-2{
background-color: var(--color-cuatro);
}
.circle-3{
background-color: var(--color-tres);
}
.paso__num{
  position:relative; 
  top:57px; 
  left: -86px;
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  width:50px; 
  height:50px; 
  border-radius:50%; 
  background:#fff; 
  color:#111; 
  font-weight:800;
  border:2px solid rgba(0,0,0,.2);
}
.paso__title{
	color: var(--color-dos);
	font-weight:800; 
	font-size:26px; 
	line-height:1.1;
}
.paso__desc{
	max-width:280px; 
	color:var(--btnText); 
	font-size:14px; 
	line-height:1.2; 
	margin: 6px auto 0
}

.como_funciona-pills{
	display:flex; 
	gap:10px; 
	justify-content:center; 
	margin-top:10px;
}
.pills{
  background:#edf2f7; 
  color:#111; 
  border-radius:999px; 
  padding:6px 12px; 
  font-size:13px; 
  font-weight:600;
}
.pill-2{
	background:#e8f6ec
}
.pill-3{
	background:#eef7e9
}

.como_funciona-cta{
	padding-top: 5rem;
	display:flex; 
	justify-content:center; 
	margin: 16px 0 10px; 
}

.cta__btn{
	display:inline-flex; 
	align-items:center; 
	justify-content:center;
	height:42px; 
	padding:0 18px; 
	border-radius:999px; 
	border:1px solid #0b1320;
	background:#0b1320; 
	color:#fff; 
	text-decoration:none; 
	font-weight:600;
	transition:filter .15s ease, transform .02s;
}

.cta__btn:hover{
  background:var(--ghost); 
  color:var(--ink); 
}

/* ====== DESCUENTOS ====== */
:root{
  --ink:#0f172a;
  --muted:#e5e7eb;
  --mutedText:#eef2f7;
  --pill:#223142;
  --pillActive:#1f2c3b;
  --btn:#ffffff;
  --btnText:#111827;
  /* --radius:22px; */
  --shadow:0 12px 40px rgba(0,0,0,.18);
}
.descuentos__layout__hero{
	width: 100%;
	height: 800px;
	/* background-image: url("../img/descuentos_hero.png"); */
  	background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/hero_descuentos.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


.layout__descuentos{
	padding: 28px 18px 40px;
	margin-top: 5rem;
}
.descuentos__container{
	max-width:1100px;
	margin:0 auto;
}



.descuentos__title{
  text-align:center; 
  letter-spacing:.04em; 
  margin: 6px 0 18px;
  /* font-family:"Playfair Display", ui-serif, Georgia, serif; */
  font-weight:800; 
  font-size: clamp(22px, 3.2vw, 28px);
}
.descuentos__tabs{
  display:flex; 
  justify-content:center; 
  gap:10px; 
  margin:10px 0 24px;
}
.tab{
  display:inline-flex; 
  align-items:center; 
  gap:8px;
  padding:8px 14px; 
  border-radius:999px; 
  border:1px solid #cbd5e1;
  background:#fff; 
  color:#1f2937; 
  text-decoration:none; 
  font-weight:600; 
  font-size:14px;
  transition:background .15s ease, color .15s ease, transform .02s;
}
.tab.is-active{
  background: var(--pill); 
  color:var(--color-dos); 
  border-color:transparent;
}
.tab:active{
	transform:scale(.98);
}

/* Grid */
.descuentos__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
}
@media (max-width: 980px){
  .descuentos__cards{grid-template-columns: 1fr}
}

/* Card */
.card{
  position:relative; 
  overflow:hidden;
  border-radius: 20px;
  min-height: 460px;
  color:#fff;
  box-shadow: var(--shadow2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  /* cursor: pointer; */
}
.card__img{
  position:absolute; 
  inset:0;
  width:100%; 
  height:100%; 
  object-fit:cover;
  transform: scale(1.04);
  z-index: 0;
}
.card__overlay{
  position:absolute; 
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.00) 0%, rgba(0,0,0,.10) 30%, rgba(0,0,0,.20) 55%, rgba(0,0,0,1) 100%);
}
.card__icon{
  position:absolute; 
  top:16px; 
  right:16px;
  width:44px; 
  height:44px; 
  border-radius:999px; 
  border:none;
  color:#fff; 
  background: rgba(0,0,0,.35); 
  backdrop-filter: blur(2px);
  display:flex; 
  align-items:center; 
  justify-content:center; 
  cursor:pointer;
  transition: transform .12s ease, background .15s ease;
}
.card__icon:hover{
	background: rgba(0,0,0,0.9);
}
.card__icon:active{
	transform: scale(.96);
}

.card__content{
  position:absolute; 
  inset-inline: 18px; 
  bottom: 16px;
}
.descuentos__card-title{
  /* font-family:"Playfair Display", ui-serif, Georgia, serif; */
  font-weight:800; 
  letter-spacing:.02em;
  font-size: clamp(22px, 2.6vw, 28px);
  margin:0 0 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.card__text{
  margin:0 0 10px;
  color: var(--color-dos);
  font-size:14px; 
  line-height:1.5; 
  max-width: 90%;
}
.card__price{
  margin: 0 0 14px;
  font-size:13.5px; 
  line-height:1.4;
  color:#f8fafc;
}
.descuentos__card-btn{
  display:flex; 
  align-items:center; 
  justify-content:space-between;
  gap:10px;
  background: var(--color-dos);
  color: var(--btnText);
  border-radius: 999px;
  text-decoration:none;
  padding: 10px 14px 10px 16px;
  font-weight:700; font-size:14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  transition: background-color 0.8s ease, color 0.8s ease;
}

.descuentos__card-btn:hover{
  
  background: var(--color-tres);
  color: var(--color-dos);
  
}
.card__btn:hover{filter:brightness(.98)}
.card__btn:active{transform: translateY(1px)}
/* Utilidad para ocultar tarjetas filtradas */
.is-hidden{ display:none !important; }


/*DESCUENTOS MICROSITE*/
.microsite__layout__hero{
	width: 100%;
	height: 800px;
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/microsite_hero.png");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* ====== FICHA DEL LUGAR ====== */
.ficha__lugar-layout{
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 18px 48px;
  /* font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif; */
  color: var(--btnText);
}
.ficha__block{ 
  margin-bottom: 28px; 
}

.ficha__heading{
  /* font-family: "Playfair Display", ui-serif, Georgia, serif; */
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 30px);
  margin: 50px 0 10px 0;
}
.ficha__subheading{
  font-weight: 800;
  font-size: clamp(20px, 2.8vw, 24px);
  margin: 0 0 14px;
}
.ficha__text{
  color: var(--btnText);
  line-height: 1.7;
  font-size: 15.5px;
  margin: 0 0 16px;
}

/* Mapa */
.mapa{
  height: 400px;
  position: relative;
  margin: 14px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* Centra horizontal */
  justify-content: flex-end; /* Lo lleva hacia abajo */
  
}
.mapa iframe{
  border-radius: 22px;
  overflow: hidden;
}
.mapa__img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  /* display: block; */
  border-radius: 18px;
  box-shadow: var(--shadow, 0 12px 40px rgba(0,0,0,.5));
}
.mapa__btn{
   margin-top: 0;   /* lo "sube" un poco sobre el mapa */
  z-index: 1;
  transition: background-color 0.8s ease, color 0.8s ease;
}
.mapa__btn:hover{
  background: var(--color-tres);
  color: var(--color-dos);
}



/* Galería (scroll-snap, sin JS) */
.galeria{ width: 100%; }
.galeria__viewport{
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border-radius: 22px;
  box-shadow: var(--shadow, 0 12px 40px rgba(0,0,0,.18));
  scrollbar-width: none; /* Firefox */
}
.galeria__viewport::-webkit-scrollbar{
  display: none; /* Chrome, Safari */
}


/* Dots activos */
.galeria__dots .dot{
  background: #cbd5e1;
  transition: background .3s;
}
.galeria__dots .dot:focus,
.galeria__dots .dot:hover{
  background: #94a3b8;
  
}
.galeria__slide:target ~ .galeria__dots a[href="#g1"],
.galeria__slide:target ~ .galeria__dots a[href="#g2"],
.galeria__slide:target ~ .galeria__dots a[href="#g3"],
.galeria__slide:target ~ .galeria__dots a[href="#g4"],
.galeria__slide:target ~ .galeria__dots a[href="#g5"]{
  /* Este selector sirve si reestructuras los dots dentro de la galería */
  background: #111827;
}
.dot.is-active{ background: #111827; }
.galeria__track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
}
.galeria__slide{
  margin: 0;
  position: relative;
  aspect-ratio: 16 / 7;
  /* scroll-snap-align: start; */
}
.galeria__slide img{
  position: absolute; 
  inset: 0;
  width: 100%; 
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Dots */
.galeria__dots{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 0;
}
.dot{
  width: 10px; 
  height: 10px; 
  border-radius: 999px;
  background: #cbd5e1;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0,0,0,.08) inset;
}
.dot:hover{ 
  filter: brightness(.95); 
}
.dot.is-active{ 
  background: #111827; 
}

/* Chips de actividades */
.chips{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 980px){ .chips{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .chips{ grid-template-columns: 1fr; } }

.chip{
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--ghost, #f3f4f6);
  color: #111827;
  border: 1px solid var(--line, #e5e7eb);
}
.chip__icon{
  width: 42px; height: 42px; border-radius: 999px;
  display: grid; place-items: center;
  background: #e5e7eb;
  color: #374151;
  font-size: 18px;
}
.chip__label{
  font-weight: 600;
  font-size: 14.5px;
}
.chip--horario{
  grid-column: span 2;
  background: #fff;
}
.chip--horario .chip__icon{
  background: #111827; color: #fff;
}
.chip--horario .chip__body{
  line-height: 1.3;
  color: #374151;
}

/* CTA y botones */
.ficha__cta{ 
  display: flex; 
  justify-content: center; 
  margin-top: 10rem; 
  margin-bottom: 10rem;
}

.btn{
  display: inline-flex; 
  align-items: center; 
  justify-content: center;
  height: 44px; 
  padding: 0 18px;
  border-radius: 999px; 
  border:1px solid transparent;
  font-weight: 700; 
  font-size: 14.5px; 
  text-decoration: none;
  transition: transform .02s, filter .15s ease, background .15s ease;
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.btn:active{ 
  transform: translateY(1px); 
}
.btn--primary{ background: var(--color-tres, #009688); color: #fff; }
.btn--primary:hover{
  background-color: var(--color-text-body);
  color: var(--color-dos);
  /* filter: brightness(0.5);  */
  }
.btn--ghost{ background: #fff; color:#111827; border-color:#e5e7eb; }
.btn--ghost:hover{ filter: brightness(.98); }

.microsite__cta-btn{
  display:block; 
  width: fit-content;
  margin: 8rem auto 10rem auto;
  align-items:center; 
  justify-content:center;
  height:auto; 
  padding:10px; 
  border-radius:999px; 
  background:var(--color-tres) ;
  color:#fff; 
  text-decoration:none; 
  font-weight:600;
  transition:filter .15s ease, transform .02s;
}

.microsite__cta-btn:hover{
  background:var(--btnText);
  color:var(--color-dos);
}

/* Accesibilidad */
.sr-only{
  position:absolute !important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* Suaviza el desplazamiento de anclas (para dots de galería) */
/* html{ scroll-behavior: smooth; } */



/* ====== MODAL PARA OBTENER CUPON DE DESCUENTOS ====== */
/* ===== Modal base (sin JS, usando :target) ===== */
.modal{
  position: fixed; inset: 0; z-index: 9999;
  display: none;
}
.modal:target{ display: block; }

/* Fondo oscuro clicable para cerrar */
.modal__overlay{
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(1px);
  display: block;
}

/* Caja de la modal */
.modal__dialog{
  position: relative;
  width: min(600px, 92vw);
  margin: min(9vh, 64px) auto;
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px 30px;
  box-shadow: 0 18px 55px rgba(0,0,0,.25);
  /* Borde y glow azules como la imagen */
  border: 2px solid #1e90ff;
  outline: 0;
  box-sizing: border-box;
}

/* Título */
.modal__title{
  font-family: "Playfair Display", ui-serif, Georgia, serif;
  font-weight: 800;
  text-align: center;
  font-size: clamp(20px, 3vw, 24px);
  margin: 4px 0 18px;
}

/* Botón cerrar (X) */
.modal__close{
  position: absolute; top: 10px; right: 14px;
  width: 34px; height: 34px; border-radius: 999px;
  border: 0; background: transparent; cursor: pointer;
  font-size: 26px; line-height: 1; color: #111827;
}
.modal__close:hover{ filter: brightness(.7); }

/* Formulario */
.modal__form{
  display: grid; gap: 16px;
  justify-items: center;
  text-align: center;
}

.modal__label{
  width: 100%;
  font-weight: 700;
  color: #111827;
  font-size: 16px;
}

.modal__input{
  display: block;
  width: min(420px, 84%);
  margin: 10px auto 0;
  height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: #efe9e9;                 /* tono beige claro del mock */
  box-shadow: 0 6px 18px rgba(0,0,0,.10) inset,
              0 2px 10px rgba(0,0,0,.06);
  font-size: 15px;
  outline: none;
}
.modal__input:focus{
  box-shadow: 0 0 0 3px rgba(30,144,255,.25), 0 6px 18px rgba(0,0,0,.10) inset;
}

/* Botón principal */
.btn.btn--reserva{
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px; padding: 0 22px;
  border-radius: 12px; border: 0;
  background: #1f2c3b;   /* oscuro como el ejemplo */
  color: #fff; font-weight: 700; font-size: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  cursor: pointer;
  transition: transform .02s, filter .15s;
}
.btn.btn--reserva:hover{ filter: brightness(.96); }
.btn.btn--reserva:active{ transform: translateY(1px); }

/* Responsive */
@media (max-width: 520px){
  .modal__dialog{ padding: 24px 18px 26px; }
  .modal__input{ width: 92%; }
}


/*=========== ACTIVIDADES =================*/
/* ====== BASE ====== */
/* :root{
  --bg: #ffffff;
  --text: #111111;
  --muted: #6b7280;
  --chip-bg: #ffffff;
  --chip-text: #111111;
  --cta-bg: #ffffff;
  --cta-text: #111111;
  --radius-xl: 22px;
  --shadow: 0 10px 25px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
img{display:block;max-width:100%;height:auto} */

.actividades__layout__hero{
	width: 100%;
	height: 800px;
	/* background-image: url("../img/descuentos_hero.png"); */
  	background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/hero_actividades2.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.actividades__container{
  width:min(1100px, 92%);
  margin-inline:auto;
}

/* ====== SECCIÓN ====== */
.actividades__layout {
  background: var(--color-dos);
  padding: 40px 0 64px;
}

.actividades__container {
  width: min(1100px, 92%);
  margin-inline: auto;
}



.actividades__title {
  /* font-family: Georgia, "Times New Roman", serif; */
  text-align: center;
  font-weight: 800;
  letter-spacing: .02em;
  color: var(--color-text-body);
  margin: 60px 0 50px;
}

/* ====== GRID ====== */
.actividades__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 960px) {
  .actividades__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .actividades__cards { grid-template-columns: 1fr; }
}

/* ====== CARD ====== */
.actividades__card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
  background: #000;
  box-shadow: var(--shadow);
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}
.actividades__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.25);
}

/* Imagen y overlay */
.actividades__card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.actividades__card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(0,0,0,.15), rgba(0,0,0,.25) 50%, rgba(0,0,0,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.5) 65%, rgba(0,0,0,.75) 100%);
}

/* Chips (tags) */
.actividades__card-tags {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.actividades__card-tags li {
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--color-dos);
  color: var(--color-text-body);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  line-height: 1;
  white-space: nowrap;
}

/* Contenido */
.actividades__card-body {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 68px;
  color: #fff;
}
.actividades__card-title {
  /* font-family: Georgia, "Times New Roman", serif; */
  font-size: clamp(20px, 2.3vw, 24px);
  font-weight: 800;
  margin: 0 0 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.actividades__card-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #e8e8e8;
  max-width: 42ch;
}

/* CTA */
.actividades__card-cta {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  background: var(--color-dos);
  color: var(--btnText);
  border-radius: 999px;
  padding: 10px 14px 10px 16px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  transition: background-color 0.8s ease, color 0.8s ease;
}
.actividades__card-cta .icon {
  width: 22px;
  height: 22px;
}
.actividades__card-cta:hover {
   background: var(--color-tres);
  color: var(--color-dos);
}
.actividades__card-cta:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}

/*=============== DESCUENTOS MICRO SITIO=================*/
.actividadesms__layout{
  background: var(--color-dos);
  width: 100%;
}
.actividadesms__container{
  width: 100%;
  /* width:min(var(--ms-max), 94%);
  margin-inline:auto; */
}

.actividadesms__layout__hero{
	width: 100%;
	height: 800px;
  background-image: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)), url("../img/actividades-hero.png");
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* ====== Bloques ====== */
.actividadesms__section{
  padding: 28px 0 36px;
}
.actividadesms__section--privado{
  background: linear-gradient(180deg, var(--color-tres), #0c8585);
}
.actividadesms__section--colectivo{
  background: linear-gradient(180deg, var(--color-cuatro), #26994d);
}
.actividadesms__section--incluido{
  background: var(--color-cinco);
}

/* Títulos de bloque */
.actividadesms__section-title{
  font-size: 4rem;
  color: #fff;
  text-align:center;
  /* font-family: Georgia, "Times New Roman", serif; */
  font-weight:700;
  letter-spacing:.02em;
  padding: 6px 0 18px;
  margin: 10rem 0 10rem;
}
.actividadesms__section--incluido .actividadesms__section-title{
  color:#352c22;
}

/* ====== Grid de tarjetas ====== */
.actividadesms__cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem;
  margin: 0 20rem 10rem;
}
@media (max-width: 960px){
  .actividadesms__cards{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px){
  .actividadesms__cards{ grid-template-columns: 1fr; }
}

/* ====== Tarjeta ====== */
.actividadesms__card{
  background: #0b3b33;
  color:#eaf6f2;
  border-radius: 2rem;
  padding: 22px 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);

  display:flex;               
  flex-direction:column;      
  height:100%;  
}
.actividadesms__card--soft{
  background: #4a3c2f;   /* interior tarjetas beige */
  color:#f6efe6;
}

.actividadesms__card-header{
  margin-bottom: 4rem;
}
.actividadesms__card-plan{
  font-weight:700;
  font-size: 3rem;
  margin-bottom: 6px;
  text-align: center;
}
.actividadesms__card-price{
  font-weight:800;
  font-size: 2.5rem;
  text-align: center;
}

/* Lista con checks */
.actividadesms__card-list{
  list-style:none;
  padding: 0rem 0;
  margin: 10px 0 18px;
  display:grid;
  gap:2rem;
}
.actividadesms__card-item{
  position:relative;
  padding-left: 20px;
  line-height:1.25rem;
  font-size: 2rem;
}

.actividadesms__card-list--soft .actividadesms__card-item::before{
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9) 0 35%, transparent 36%),
    linear-gradient(135deg, #f9e0c0, #e0c09b);
}

/* Botón */
.actividadesms__card-button{
  display:inline-block;
  width:100%;
  text-align:center;
  text-decoration:none;
  font-weight:700;
  border-radius: 999px;
  padding:10px 14px;
  background-color: #2da06c;
  color:#083b2e;
  box-shadow: 0 6px 12px rgba(0,0,0,.25);
  transition: transform .15s ease, filter .15s ease;
  
  margin-top:auto; 
  
}
.actividadesms__card-button:hover{
  transform: translateY(-1px);
  filter: brightness(1.08);
}
.actividadesms__card-button:active{
  transform: translateY(0);
}
.actividadesms__card-button--soft{
  background-color: #e6c8a3;
  color:#3a2f26;
}

/* Ajustes de contraste sobre fondos claros */
.actividadesms__section--incluido .actividadesms__card-price{
  color:#fff;
}



/*SECCIÓN ACTIVIDADES MICRO SITIO DESCRIPCION*/
.actividadesms__descripcion{
  width: 70%;
  margin: 0 auto 10rem;
 
}

.actividadessm-title{
  margin-top: 10rem;
}

.chip--horario2{
  grid-column: span 1;
  background: #fff;
}


/*===================== MENU DE HAMBURGUESA ==========================*/
.nav__toggle{ display:none; }
.nav__burger{ display:none; }
.nav__drawer{ display:none; }

/* =====================================================
   NAVBAR HAMBURGUESA (Versión móvil)
   Requiere en el HTML: input.nav__toggle + label.nav__burger ~ nav.nav__drawer
   Ver snippet de HTML en el chat.
   ===================================================== */
/*===================== MENÚ HAMBURGUESA (Móvil y Tablet) =====================*/
/* Base: oculto en desktop */
.nav__toggle{ display:none; }
.nav__burger{ display:none; }
.nav__drawer{ display:none; }
.nav__scrim{ display:none; }

/* --------- Tablet y abajo (<=1024px) --------- */
@media (max-width: 1024px){
  /* Contenedor header */
  .layout__menu{ padding: 0 2.4rem; height: 64px; display:flex; align-items:center; }
  .menu__navbar{ position:relative; width:100%; min-height:64px; }
  .navbar__logo{ width: 160px; }

  /* Ocultar navegación horizontal de desktop */
  .navbar__nav .nav__list{ display:none; }

  /* Botón hamburguesa */
  .nav__burger{
    display:inline-flex; flex-direction:column; justify-content:center; align-items:center;
    gap:6px; width:46px; height:46px; border-radius:12px; cursor:pointer; user-select:none;
    position:absolute; right:6px; top:9px; transition: filter .2s ease;
  }
  .nav__burger:hover{ filter:brightness(.98); }
  .nav__burger span{ display:block; width:26px; height:2px; background: var(--color-tres); transition: transform .25s ease, opacity .2s ease; }

  /* Drawer */
  .nav__drawer{
    display:block; position: fixed; inset: 0 0 0 40%;  /* ~60% de ancho en tablet */
    transform: translateX(100%);
    background: var(--color-dos); color: var(--color-text-body);
    box-shadow: -12px 0 40px rgba(0,0,0,.24);
    z-index: 9998; padding: 84px 18px 22px; /* despeje del header */
    transition: transform .28s ease;
    
  }
  .nav__drawer .nav__list{ display:flex; flex-direction:column; gap:2px; }
  .nav__drawer .nav__item{ margin:0; }
  .nav__drawer .nav__title{ display:block; line-height:1; padding: 16px 12px; border-radius:12px; font-size: 1.7rem; color: var(--); }
  .nav__drawer .nav__title:hover{ background: var(--ghost); color: var(--ink); }
  .nav__drawer .nav__submenu{ display:none !important; }

  /* Scrim como etiqueta del toggle para poder cerrar */
  .nav__scrim{ display:block; position: fixed; inset:0; background: rgba(0,0,0,.45); opacity:0; visibility:hidden; transition: opacity .2s ease; z-index: 9997; }

  /* Toggle abierto */
  .nav__toggle:checked + .nav__burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
  .nav__toggle:checked + .nav__burger span:nth-child(2){ opacity:0; }
  .nav__toggle:checked + .nav__burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }
  .nav__toggle:checked ~ .nav__drawer{ transform: translateX(0); }
  .nav__toggle:checked ~ .nav__scrim{ opacity:1; visibility:visible; }
}

/* --------- Móvil (<=640px) --------- */
@media (max-width: 640px){
  .layout__menu{ padding: 0 1.4rem; height: 56px; }
  .menu__navbar{ min-height:56px; }
  .navbar__logo{ width: 132px; }
  .nav__burger{ width:42px; height:42px; top:7px; right:4px; gap:5px; }
  .nav__burger span{ width:24px; }

  .nav__drawer{ inset: 0 0 0 34%; padding-top: 72px; } /* ~66% de ancho en móvil */
  .nav__drawer .nav__title{ font-size: 1.6rem; padding: 14px 12px; }
}

/* ===== Modal básico sin dependencias obtener cupón (descuentosms) ===== */
      .modal-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.45);display:none;z-index:999;}
      .modal{position:fixed;inset:0;display:none;place-items:center;z-index:1000;}
      .modal.is-open, .modal-backdrop.is-open{display:grid;}
      .modal__dialog{width:min(560px,90vw);background:#fff;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.2);overflow:hidden}
      .modal__hd{padding:16px 20px;border-bottom:1px solid #eee;display:flex;align-items:center;justify-content:space-between}
      .modal__title{font-size:18px;font-weight:700;margin:0}
      .modal__close{background:none;border:0;font-size:20px;cursor:pointer;line-height:1;padding:6px 8px}
      .modal__bd{padding:20px}
      .modal__ft{padding:16px 20px;border-top:1px solid #eee;display:flex;gap:12px;justify-content:flex-end}
      .form-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
      .form-grid .full{grid-column:1 / -1}
      .form-grid label{display:block;font-size:12px;color:#333;margin-bottom:6px}
      .form-grid input{width:100%;padding:10px 12px;border:1px solid #ddd;border-radius:10px;font-size:14px}
      .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:10px 14px;border-radius:999px;border:0;cursor:pointer}
      .btn-primary{background:#111;color:#fff}
      .btn-ghost{background:#f5f5f5}
      .cupon-box{background:#f8fafc;border:1px dashed #cbd5e1;border-radius:12px;padding:14px 16px;display:flex;align-items:center;justify-content:space-between;margin-top:12px}
      .cupon-code{font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;font-weight:700}
      .small{font-size:12px;color:#555}
      .hide{display:none !important}


      /* Nosotros */
      