/* ============================================================
   TEEPEE MARLEN — hoja de estilos
   Paleta extraída del logo y catálogo (acuarela blush + luces)
   Desarrollado por TST Solutions
   ============================================================ */

:root {
  --blush:      #F1D7CC;   /* acuarela rosada del logo */
  --blush-soft: #F7E6DE;
  --champagne:  #FBF4EE;   /* fondo claro cálido */
  --sand:       #EAD9C8;
  --brown:      #6C5231;   /* marrón del teepee */
  --brown-deep: #4C3A22;
  --ink:        #221A13;   /* tinta del lettering */
  --gold:       #C89B5E;   /* luces doradas */
  --gold-soft:  #E9CF9F;
  --rose:       #C77E63;   /* acento cálido */
  --white:      #FFFDFB;
  --night:      #2B2019;   /* noche cálida (hero/CTA) */
  --night-2:    #3A2B1E;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-script:  'Caveat', cursive;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --radius: 22px;
  --shadow: 0 18px 50px -18px rgba(76, 58, 34, .35);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--champagne);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--brown); text-decoration: none; }
strong { font-weight: 500; }

/* ---------- Utilidades ---------- */
.section { padding: 96px 24px; }
.section__inner { max-width: var(--maxw); margin: 0 auto; }

.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.12;
  color: var(--ink);
}
.section__title em { font-style: italic; color: var(--brown); }
.section__title--center { text-align: center; }

.section__lead {
  text-align: center;
  max-width: 620px;
  margin: 18px auto 0;
  color: #5d4d3d;
}
.section__lead a { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--rose);
  margin-bottom: 6px;
}
.eyebrow--center { text-align: center; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  padding: 14px 30px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(120deg, var(--brown), var(--brown-deep));
  color: var(--champagne);
  box-shadow: 0 12px 28px -10px rgba(76, 58, 34, .55);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(76, 58, 34, .6); }
.btn--ghost {
  border: 1px solid rgba(251, 244, 238, .55);
  color: var(--champagne);
}
.btn--ghost:hover { background: rgba(251, 244, 238, .12); transform: translateY(-3px); }
.btn--big { font-size: 1.05rem; padding: 17px 38px; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 24px;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.navbar--scrolled {
  background: rgba(251, 244, 238, .92);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -12px rgba(76, 58, 34, .3);
  padding: 8px 24px;
}
.navbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.navbar__brand { display: flex; align-items: center; gap: 10px; }
.navbar__logo {
  width: 46px; height: 46px;
  object-fit: contain;
  background: var(--champagne);
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .35);
}
.navbar__brandtext {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--champagne);
  letter-spacing: .02em;
  transition: color .35s ease;
}
.navbar__brandtext em { font-style: normal; font-weight: 400; letter-spacing: .28em; font-size: .78em; }
.navbar--scrolled .navbar__brandtext { color: var(--ink); }

.navbar__menu { display: flex; align-items: center; gap: 26px; }
.navbar__link {
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--champagne);
  position: relative;
  transition: color .35s ease;
}
.navbar--scrolled .navbar__link { color: var(--ink); }
.navbar__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s ease;
}
.navbar__link:hover::after { width: 100%; }

.btn--nav {
  background: var(--gold);
  color: var(--ink);
  padding: 10px 22px;
  font-size: .85rem;
}
.btn--nav:hover { background: var(--gold-soft); transform: translateY(-2px); }

/* Selector de idioma ES | EN — cápsula glass con banderas */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(34, 26, 19, .35);
  border: 1px solid rgba(233, 207, 159, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, .25);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.navbar--scrolled .lang-switch {
  background: rgba(76, 58, 34, .08);
  border-color: rgba(108, 82, 49, .25);
  box-shadow: inset 0 1px 4px rgba(76, 58, 34, .12);
}
.lang-switch__opt {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 6px 13px;
  border-radius: 999px;
  color: rgba(251, 244, 238, .75);
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.navbar--scrolled .lang-switch__opt { color: rgba(34, 26, 19, .6); }
.lang-switch__flag {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  filter: saturate(.35) brightness(.9);
  opacity: .75;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}
.lang-switch__opt--active,
.navbar--scrolled .lang-switch__opt--active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  box-shadow: 0 4px 14px -4px rgba(200, 155, 94, .7), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.lang-switch__opt--active .lang-switch__flag {
  filter: none;
  opacity: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}
.lang-switch__opt:not(.lang-switch__opt--active):hover {
  color: var(--champagne);
  background: rgba(233, 207, 159, .16);
  transform: translateY(-1px);
}
.navbar--scrolled .lang-switch__opt:not(.lang-switch__opt--active):hover {
  color: var(--ink);
  background: rgba(200, 155, 94, .18);
}
.lang-switch__opt:not(.lang-switch__opt--active):hover .lang-switch__flag {
  filter: saturate(1) brightness(1);
  opacity: 1;
  transform: scale(1.12);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.navbar__toggle span {
  width: 26px; height: 2px;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .35s ease;
}
.navbar--scrolled .navbar__toggle span { background: var(--ink); }
.navbar__toggle--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle--open span:nth-child(2) { opacity: 0; }
.navbar__toggle--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 90px;
  background:
    radial-gradient(1100px 520px at 78% 108%, rgba(200, 155, 94, .28), transparent 60%),
    radial-gradient(900px 500px at 12% -10%, rgba(199, 126, 99, .25), transparent 60%),
    linear-gradient(165deg, var(--night) 0%, var(--night-2) 55%, #55402a 100%);
  color: var(--champagne);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 3; max-width: 860px; }

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--gold-soft);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6.5vw, 4.6rem);
  line-height: 1.08;
  margin: 14px 0 20px;
}
.hero__accent {
  font-style: italic;
  color: var(--gold-soft);
  position: relative;
  white-space: nowrap;
}
.hero__sub {
  font-size: clamp(.98rem, 1.8vw, 1.12rem);
  font-weight: 300;
  color: rgba(251, 244, 238, .82);
  max-width: 640px;
  margin: 0 auto;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__city {
  margin-top: 30px;
  font-size: .88rem;
  letter-spacing: .08em;
  color: rgba(251, 244, 238, .6);
}

.hero__teepee {
  position: absolute;
  z-index: 2;
  right: clamp(-60px, 3vw, 70px);
  bottom: -28px;
  width: clamp(180px, 24vw, 330px);
  opacity: .16;
  filter: invert(92%) sepia(18%) saturate(320%) hue-rotate(345deg) brightness(104%);
  pointer-events: none;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 1.5px solid rgba(251, 244, 238, .5);
  border-radius: 999px;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold-soft);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(14px); opacity: 0; }
}

/* ---------- Luces bokeh (firma del sitio) ---------- */
.hero__lights, .cta-final__lights {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.light {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 233, 190, .95), rgba(233, 207, 159, .35) 60%, transparent 75%);
  filter: blur(1px);
  animation: floaty 9s ease-in-out infinite, twinkle 4.5s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-26px); }
}
@keyframes twinkle {
  0%, 100% { opacity: .85; }
  50%      { opacity: .25; }
}
/* posiciones/tamaños/tempos variados */
.light--1  { top: 12%; left: 6%;  width: 10px; height: 10px; animation-delay: 0s,   .4s; }
.light--2  { top: 24%; left: 14%; width: 6px;  height: 6px;  animation-delay: 1s,   0s; }
.light--3  { top: 8%;  left: 28%; width: 14px; height: 14px; animation-delay: 2s,  1.2s; }
.light--4  { top: 34%; left: 4%;  width: 8px;  height: 8px;  animation-delay: .6s, 2.1s; }
.light--5  { top: 18%; left: 44%; width: 7px;  height: 7px;  animation-delay: 1.4s, .8s; }
.light--6  { top: 6%;  left: 58%; width: 11px; height: 11px; animation-delay: 2.4s, 1.7s; }
.light--7  { top: 26%; left: 68%; width: 6px;  height: 6px;  animation-delay: .2s, 2.6s; }
.light--8  { top: 12%; left: 80%; width: 13px; height: 13px; animation-delay: 1.8s, .3s; }
.light--9  { top: 30%; left: 90%; width: 8px;  height: 8px;  animation-delay: 3s,  1.1s; }
.light--10 { top: 48%; left: 10%; width: 6px;  height: 6px;  animation-delay: 2.2s, 2s; }
.light--11 { top: 55%; left: 22%; width: 12px; height: 12px; animation-delay: .9s, 3.1s; }
.light--12 { top: 44%; left: 36%; width: 5px;  height: 5px;  animation-delay: 1.6s, .6s; }
.light--13 { top: 60%; left: 50%; width: 9px;  height: 9px;  animation-delay: 2.8s, 1.9s; }
.light--14 { top: 52%; left: 62%; width: 7px;  height: 7px;  animation-delay: .4s, 2.4s; }
.light--15 { top: 64%; left: 76%; width: 12px; height: 12px; animation-delay: 1.2s, .1s; }
.light--16 { top: 46%; left: 86%; width: 6px;  height: 6px;  animation-delay: 3.2s, 1.5s; }
.light--17 { top: 74%; left: 8%;  width: 9px;  height: 9px;  animation-delay: 1.1s, 2.9s; }
.light--18 { top: 82%; left: 18%; width: 6px;  height: 6px;  animation-delay: 2.6s, .7s; }
.light--19 { top: 78%; left: 32%; width: 13px; height: 13px; animation-delay: .3s, 2.2s; }
.light--20 { top: 86%; left: 46%; width: 7px;  height: 7px;  animation-delay: 1.9s, 1.3s; }
.light--21 { top: 72%; left: 58%; width: 10px; height: 10px; animation-delay: 2.9s, .5s; }
.light--22 { top: 84%; left: 70%; width: 6px;  height: 6px;  animation-delay: .7s, 3.3s; }
.light--23 { top: 76%; left: 84%; width: 11px; height: 11px; animation-delay: 2.1s, 1.6s; }
.light--24 { top: 90%; left: 92%; width: 8px;  height: 8px;  animation-delay: 1.3s, 2.7s; }
.light--25 { top: 40%; left: 52%; width: 5px;  height: 5px;  animation-delay: 3.4s, .9s; }
.light--26 { top: 66%; left: 40%; width: 8px;  height: 8px;  animation-delay: .5s, 1.8s; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--brown);
  color: var(--champagne);
  overflow: hidden;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: .06em;
  white-space: nowrap;
}
.marquee__dot { color: var(--gold-soft); font-size: .8rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- La experiencia ---------- */
.experience {
  background:
    radial-gradient(800px 420px at 92% 8%, rgba(241, 215, 204, .55), transparent 65%),
    var(--champagne);
}
.experience__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.experience__text > p { max-width: 520px; margin-top: 18px; color: #4c3f31; }
.experience__points {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  gap: 12px;
}
.experience__points li {
  background: var(--white);
  border: 1px solid rgba(108, 82, 49, .12);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: .96rem;
  box-shadow: 0 8px 24px -16px rgba(76, 58, 34, .35);
}

.experience__visual {
  position: relative;
  min-height: 460px;
}
.polaroid {
  position: absolute;
  background: var(--white);
  padding: 12px 12px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  width: min(64%, 270px);
}
.polaroid img { border-radius: 3px; aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
.polaroid span {
  display: block;
  text-align: center;
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--brown);
  padding-top: 10px;
}
.polaroid--1 { top: 0; left: 2%; transform: rotate(-5deg); z-index: 2; }
.polaroid--2 { bottom: 0; right: 2%; transform: rotate(4deg); }
.polaroid:hover { z-index: 3; }
.polaroid--empty img { display: none; }
.polaroid--empty::before {
  content: '🏕️✨';
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  font-size: 2.6rem;
  background: linear-gradient(150deg, var(--blush-soft), var(--sand));
  border-radius: 3px;
}

/* ---------- Paquetes ---------- */
.packages {
  background:
    radial-gradient(900px 500px at 6% 20%, rgba(200, 155, 94, .16), transparent 60%),
    linear-gradient(180deg, var(--blush-soft), var(--blush) 60%, var(--blush-soft));
}
.packages__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  align-items: start;
}
.pkg {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 44px -20px rgba(76, 58, 34, .4);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.pkg:hover { transform: translateY(-8px); box-shadow: 0 26px 56px -22px rgba(76, 58, 34, .5); }

.pkg--feature { outline: 2px solid var(--gold); outline-offset: -2px; }
.pkg__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(76, 58, 34, .5);
}

.pkg__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, var(--sand), var(--blush));
  overflow: hidden;
}
.pkg__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.pkg:hover .pkg__media img { transform: scale(1.06); }
.pkg__media--empty img { display: none; }
.pkg__emoji {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
}
.pkg__media--empty .pkg__emoji { display: flex; }

.pkg__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.pkg__tag {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rose);
}
.pkg__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.65rem;
  margin: 6px 0 8px;
}
.pkg__desc { font-size: .95rem; color: #5d4d3d; margin-bottom: 16px; }

.pkg__details { margin-bottom: 20px; }
.pkg__details summary {
  list-style: none;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.pkg__details summary::-webkit-details-marker { display: none; }
.pkg__details summary span { transition: transform .3s ease; font-weight: 400; }
.pkg__details[open] summary span { transform: rotate(45deg); }
.pkg__items {
  list-style: none;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 14px;
}
.pkg__items li {
  font-size: .85rem;
  color: #4c3f31;
  padding-left: 18px;
  position: relative;
}
.pkg__items li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: .7rem;
  top: 3px;
}

.btn--pkg {
  margin-top: auto;
  justify-content: center;
  background: var(--brown);
  color: var(--champagne);
}
.btn--pkg:hover { background: var(--brown-deep); transform: translateY(-2px); }

.bonus {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: 1.5px dashed var(--gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  max-width: 760px;
  margin-inline: auto;
}
.bonus__dice { font-size: 2.1rem; }
.bonus p { font-size: .98rem; color: #4c3f31; }

/* ---------- Cómo funciona ---------- */
.steps { background: var(--champagne); }
.steps__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  text-align: center;
  padding: 38px 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(108, 82, 49, .1);
  box-shadow: 0 10px 34px -20px rgba(76, 58, 34, .35);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p { font-size: .93rem; color: #5d4d3d; }

/* ---------- Galería ---------- */
.gallery { background: linear-gradient(180deg, var(--champagne), var(--blush-soft)); }
.gallery__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, var(--sand), var(--blush));
  box-shadow: 0 12px 34px -18px rgba(76, 58, 34, .4);
}
.gallery__item:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  opacity: .8;
}
.gallery__item--empty img { display: none; }
.gallery__item--empty .gallery__fallback { display: flex; }

/* ---------- Testimonios ---------- */
.testimonials { background: var(--blush-soft); }
.testimonials__grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: 0 12px 38px -20px rgba(76, 58, 34, .4);
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 6px; left: 20px;
  font-family: var(--font-display);
  font-size: 4.4rem;
  color: var(--gold-soft);
  line-height: 1;
}
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-style: italic;
  color: #3d3226;
  position: relative;
}
.testimonial footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}
.testimonial footer strong { font-weight: 600; font-size: .95rem; }
.testimonial footer span {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--rose);
}

/* ---------- Wizard de reserva ---------- */
.wizard {
  background:
    radial-gradient(700px 380px at 10% 10%, rgba(199, 126, 99, .14), transparent 60%),
    radial-gradient(700px 380px at 90% 90%, rgba(200, 155, 94, .16), transparent 60%),
    var(--blush-soft);
}
.wizard__card {
  margin: 50px auto 0;
  max-width: 680px;
  background: var(--white);
  border: 1px solid rgba(200, 155, 94, .35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px 42px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 22px;
}
.wizard__field { display: flex; flex-direction: column; gap: 7px; }
.wizard__field--full { grid-column: 1 / -1; }
.wizard__field label {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--brown);
}
.wizard__field input,
.wizard__field select {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .96rem;
  color: var(--ink);
  background: var(--champagne);
  border: 1.5px solid rgba(108, 82, 49, .22);
  border-radius: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.wizard__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236C5231' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
  cursor: pointer;
}
.wizard__field input:focus,
.wizard__field select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200, 155, 94, .18);
}
.wizard__field input::placeholder { color: rgba(76, 58, 34, .4); }
.wizard__submit { grid-column: 1 / -1; justify-content: center; margin-top: 6px; }
.wizard__note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: .82rem;
  color: rgba(76, 58, 34, .55);
}

/* ---------- FAQ ---------- */
.faq { background: var(--champagne); }
.section__inner--narrow { max-width: 780px; }
.faq__list { margin-top: 46px; display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 1px solid rgba(108, 82, 49, .14);
  border-radius: 18px;
  box-shadow: 0 8px 26px -18px rgba(76, 58, 34, .35);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.faq__item[open] { box-shadow: 0 14px 34px -18px rgba(76, 58, 34, .45); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.faq__item > p {
  padding: 0 24px 22px;
  font-size: .95rem;
  color: #4c3f31;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 19, 13, .93);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox--open { opacity: 1; pointer-events: auto; }
.lightbox__figure {
  max-width: min(88vw, 1100px);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(86vh - 50px);
  border-radius: 14px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .8);
  transform: scale(.96);
  transition: transform .3s ease;
}
.lightbox--open .lightbox__img { transform: scale(1); }
.lightbox__caption {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--gold-soft);
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(251, 244, 238, .1);
  border: 1px solid rgba(251, 244, 238, .25);
  color: var(--champagne);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, transform .25s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(200, 155, 94, .4); transform: scale(1.08); }
.lightbox__close {
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  font-size: 1.7rem;
  line-height: 1;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 1.25rem;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--prev { left: 22px; }
.lightbox__nav--next { right: 22px; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  text-align: center;
  padding: 110px 24px;
  background:
    radial-gradient(900px 480px at 50% 120%, rgba(200, 155, 94, .3), transparent 65%),
    linear-gradient(160deg, var(--night), var(--night-2));
  color: var(--champagne);
  overflow: hidden;
}
.cta-final__inner { position: relative; z-index: 2; }
.cta-final__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 34px;
}
.cta-final__socials {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .95rem;
}
.cta-final__socials a { color: var(--gold-soft); letter-spacing: .04em; }
.cta-final__socials a:hover { text-decoration: underline; text-underline-offset: 4px; }
.cta-final__socials span { color: rgba(251, 244, 238, .4); font-size: .7rem; }

/* ---------- Strip TST ---------- */
.tst-strip { background: #0e1418; color: #eef4f6; padding: 44px 24px; }
.tst-strip__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.tst-strip__logo { width: 84px; flex-shrink: 0; }
.tst-strip__text { flex: 1; min-width: 260px; }
.tst-strip__text h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; margin-bottom: 4px; }
.tst-strip__text p { font-size: .92rem; color: #b8c6cc; }
.btn--tst { background: #00C896; color: #06231c; font-weight: 600; }
.btn--tst:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(0, 200, 150, .6); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(251, 244, 238, .82); padding: 46px 24px 0; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.4fr 1.1fr;
  gap: 30px;
  padding-bottom: 32px;
}
.footer__logo {
  width: 64px;
  background: var(--champagne);
  border-radius: 12px;
  padding: 7px;
  margin-bottom: 12px;
}
.footer__tagline { font-size: .85rem; max-width: 250px; }
.footer__city { margin-top: 8px; font-size: .8rem; color: rgba(251, 244, 238, .55); }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.footer__col a {
  display: block;
  color: rgba(251, 244, 238, .72);
  font-size: .84rem;
  padding: 3px 0;
  transition: color .25s ease, transform .25s ease;
}
.footer__col a:hover { color: var(--gold-soft); transform: translateX(4px); }
.footer__occgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

/* Redes con iconos oficiales (columna Hablemos) */
.footer__social {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 3px 0;
  line-height: 1.3;
}
.social-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  color: #fff;
  flex-shrink: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-ico svg { display: block; width: 13px; height: 13px; }
.footer__social:hover .social-ico { transform: scale(1.12); }
.social-ico--wa { background: #25D366; }
.footer__social:hover .social-ico--wa { box-shadow: 0 6px 16px -4px rgba(37, 211, 102, .6); }
.social-ico--ig {
  background: radial-gradient(circle at 30% 110%, #FEDA75 0%, #FA7E1E 28%, #D62976 52%, #962FBF 76%, #4F5BD5 100%);
}
.footer__social:hover .social-ico--ig { box-shadow: 0 6px 16px -4px rgba(214, 41, 118, .6); }
.social-ico--tt {
  background: #010101;
  border: 1px solid rgba(251, 244, 238, .28);
}
.footer__social:hover .social-ico--tt { box-shadow: 0 6px 16px -4px rgba(255, 255, 255, .35); }
.social-ico--th {
  background: #010101;
  border: 1px solid rgba(251, 244, 238, .28);
}
.footer__social:hover .social-ico--th { box-shadow: 0 6px 16px -4px rgba(255, 255, 255, .35); }
.social-ico--fb { background: #1877F2; }
.footer__social:hover .social-ico--fb { box-shadow: 0 6px 16px -4px rgba(24, 119, 242, .6); }
.social-ico--mail { background: linear-gradient(135deg, var(--gold), var(--rose)); }
.footer__social:hover .social-ico--mail { box-shadow: 0 6px 16px -4px rgba(200, 155, 94, .6); }
.footer__bottom {
  border-top: 1px solid rgba(251, 244, 238, .12);
  padding: 16px 0 18px;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(251, 244, 238, .55);
}
.footer__bottom a { color: var(--gold-soft); }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .65);
  animation: waPulse 2.6s ease-in-out infinite;
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .65), 0 0 0 0 rgba(37, 211, 102, .4); }
  50%      { box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .65), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Accesibilidad / preferencias ---------- */
:focus-visible { outline: 2.5px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .experience__grid { gap: 40px; }
  .steps__grid, .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .section { padding: 72px 20px; }

  .navbar__menu {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(78vw, 340px);
    background: var(--night);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .35);
  }
  .navbar__menu--open { transform: translateX(0); }
  .navbar__link, .navbar--scrolled .navbar__link { color: var(--champagne); font-size: 1.1rem; }
  .navbar__toggle { display: flex; z-index: 110; }

  .experience__grid { grid-template-columns: 1fr; }
  .experience__visual { min-height: 100svh; margin-top: 10px; }

  .steps__grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item:nth-child(1) { grid-row: auto; aspect-ratio: 4 / 3; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }

  .wizard__card { grid-template-columns: 1fr; padding: 30px 22px 26px; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__close { top: 12px; right: 12px; }

  .tst-strip__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .footer__tagline { margin-inline: auto; }
  .footer__logo { margin-inline: auto; }
  .footer__bottom { justify-content: center; text-align: center; }
  .footer__social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 18px 80px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .pkg__items { grid-template-columns: 1fr; }
  .bonus { flex-direction: column; text-align: center; padding: 24px 20px; }
  .marquee__item { font-size: 1rem; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
