/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --sky: #0b2e45;
  --sky-light: #154060;
  --orange: #f05a28;
  --orange-light: #ff7a4f;
  --lime: #c8e63a;
  --sand: #f5f0e8;
  --paper: #fafaf7;
  --ink: #0e2030;
  --muted: #5a6e79;
  --border: #d8e0e4;
  --wa-green: #25d366;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(11,46,69,.10);
  --shadow-hover: 0 12px 40px rgba(11,46,69,.18);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
h1,h2,h3,h4 { font-family: Manrope, sans-serif; margin-top: 0; }
em { font-family: Georgia, serif; font-style: normal; font-weight: 400; }
p { margin-top: 0; }

.wrap { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

/* ===========================
   EYEBROW
   =========================== */
.eyebrow {
  font: 700 11px Manrope, sans-serif;
  letter-spacing: 2.2px;
  color: var(--orange);
  margin: 0 0 14px;
  display: block;
}
.eyebrow.light { color: var(--lime); }

/* ===========================
   NAV
   =========================== */
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100% - 1160px) / 2));
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: #fff;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.nav.is-scrolled {
  background: rgba(11, 46, 69, .95);
  box-shadow: 0 4px 20px rgba(5,20,35,.25);
  backdrop-filter: blur(12px);
}
.brand {
  font: 800 17px Manrope, sans-serif;
  letter-spacing: 1.2px;
  color: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.brand i { font: 500 10px 'DM Sans', sans-serif; letter-spacing: .5px; opacity: .8; }
.brand-mark { font-size: 22px; color: var(--lime); }
.nav nav { display: flex; gap: 28px; }
.nav nav a { color: rgba(255,255,255,.85); font-size: 13px; transition: color .2s; }
.nav nav a:hover { color: #fff; }
.nav-cta {
  background: var(--lime);
  color: var(--ink);
  font: 700 13px Manrope;
  padding: 11px 20px;
  border-radius: 100px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(200,230,58,.35); }
.nav-cta span { margin-left: 6px; }
.menu-toggle { display: none; background: none; color: #fff; border: 0; font-size: 26px; cursor: pointer; padding: 4px; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8,28,45,.92) 0%,
    rgba(8,28,45,.65) 50%,
    rgba(8,28,45,.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 0 80px;
  max-width: 640px;
}
h1 {
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: 1.0;
  letter-spacing: -3px;
  margin: 0 0 22px;
}
h1 em { color: var(--lime); }
.hero-copy {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.80);
  max-width: 420px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font: 700 14px Manrope;
  border: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.button.primary { background: var(--lime); color: var(--ink); }
.button.primary span { font-size: 18px; }
.button:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,.20); }
.whatsapp-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 24px;
  border-radius: 100px;
  background: rgba(37, 211, 102, .18);
  border: 1.5px solid rgba(37, 211, 102, .65);
  color: #fff;
  font: 700 13.5px Manrope;
  backdrop-filter: blur(8px);
  transition: all .25s ease;
}
.whatsapp-hero:hover {
  background: var(--wa-green);
  border-color: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
}
.hero-pills {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.hero-pills li {
  font-size: 11px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 6px 13px;
  color: rgba(255,255,255,.9);
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: max(28px, calc((100% - 1160px)/2));
  z-index: 2;
  font-size: 10px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.7);
}
.scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,.5); }
.hero-phone {
  position: absolute;
  bottom: 28px;
  right: max(28px, calc((100% - 1160px)/2));
  z-index: 2;
}
.hero-phone a {
  color: rgba(255,255,255,.85);
  font: 600 13px 'DM Sans';
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .2s;
}
.hero-phone a:hover { background: rgba(255,255,255,.20); }

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--sky);
  color: #fff;
  padding: 28px 0;
}
.trust-wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
}
.trust-item strong {
  font: 800 24px Manrope;
  color: var(--lime);
  letter-spacing: -1px;
}
.trust-item span { font-size: 12px; color: rgba(255,255,255,.70); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* ===========================
   PACKAGES
   =========================== */
.packages {
  padding: 100px 0 70px;
  background: var(--paper);
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow { justify-content: center; }
.section-header h2 {
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0 0 14px;
}
.section-header h2 em { color: var(--orange); }
.section-sub { font-size: 16px; color: var(--muted); margin: 0; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Package Card */
.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.pkg-featured {
  border: 2px solid var(--orange);
  transform: scale(1.02);
}
.pkg-featured:hover { transform: scale(1.02) translateY(-8px); }

.pkg-image-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.pkg-image-wrap::after {
  content: '🔍 Ampliar';
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(14, 32, 48, .75);
  backdrop-filter: blur(4px);
  color: #fff;
  font: 600 11px Manrope;
  padding: 5px 10px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.pkg-card:hover .pkg-image-wrap::after {
  opacity: 1;
  transform: translateY(0);
}
.pkg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pkg-card:hover .pkg-image { transform: scale(1.05); }

.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange);
  color: #fff;
  font: 700 10px Manrope;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 100px;
}
.pkg-badge-special { background: #9b59b6; }
.pkg-badge-extreme { background: var(--ink); }
.pkg-badge-food { background: #d35400; }

.pkg-body {
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 18px;
}

.pkg-kicker {
  font: 700 9px Manrope;
  letter-spacing: 1.4px;
  color: var(--orange);
  margin: 0 0 6px;
}
.pkg-body h3 {
  font-size: 26px;
  letter-spacing: -1px;
  margin: 0 0 4px;
  color: var(--ink);
}
.pkg-tagline { font-size: 13px; color: var(--muted); margin: 0; }

.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink);
}
.feat-icon { font-size: 16px; width: 22px; flex-shrink: 0; }

/* Selector de personas */
.pax-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.pax-toggle {
  display: inline-flex;
  background: var(--sand);
  padding: 5px;
  border-radius: 100px;
  gap: 4px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,.06);
}
.pax-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: 700 13px Manrope;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pax-btn.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(11,46,69,.12);
}
.pax-badge-discount {
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 800;
  letter-spacing: .3px;
}

.pkg-pricing {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 3px solid var(--orange);
  transition: all .2s ease;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-curr {
  font: 700 18px Manrope;
  color: var(--orange);
}
.price-val {
  font: 800 32px Manrope;
  color: var(--ink);
  letter-spacing: -1px;
  transition: opacity .2s ease, transform .2s ease;
}
.price-cop {
  font: 600 11px Manrope;
  color: var(--muted);
}
.price-detail {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 100px;
  background: var(--sky);
  color: #fff;
  font: 700 14px Manrope;
  margin-top: auto;
  transition: background .2s, transform .2s;
}
.pkg-cta:hover { background: var(--sky-light); transform: translateY(-2px); }
.pkg-cta-featured {
  background: var(--orange);
}
.pkg-cta-featured:hover { background: var(--orange-light); }

/* All-days bar */
.packages-cta-bar {
  margin-top: 48px;
  text-align: center;
  padding: 20px 28px;
  background: var(--sky);
  border-radius: var(--radius);
  color: #fff;
}
.packages-cta-bar p { margin: 0; font-size: 16px; }
.packages-cta-bar a { color: var(--lime); font-weight: 700; }
.packages-cta-bar a:hover { text-decoration: underline; }

/* ===========================
   INCLUDES
   =========================== */
.includes {
  padding: 100px 0;
  background: var(--sky);
  color: #fff;
}
.includes-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.includes h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.includes h2 em { color: var(--lime); }
.includes-copy > p { color: rgba(255,255,255,.70); font-size: 15px; margin-bottom: 24px; }
.text-link {
  font: 700 14px 'DM Sans';
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.text-link:hover { gap: 10px; }
.text-link span { font-size: 18px; }
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.include-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: background .2s;
}
.include-item:hover { background: rgba(255,255,255,.12); }
.include-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.include-item h4 { font-size: 16px; margin: 0 0 6px; color: #fff; }
.include-item p { font-size: 13px; color: rgba(255,255,255,.60); margin: 0; }

/* ===========================
   GALLERY
   =========================== */
.gallery {
  background: var(--ink);
  color: #fff;
  padding: 100px 0 90px;
}
.gallery-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 20px;
}
.gallery-head .eyebrow { margin-bottom: -10px; }
.gallery-head h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}
.gallery-head h2 em { color: var(--lime); }
.gallery-head > p { color: rgba(255,255,255,.65); font-size: 15px; margin: 0; }

/* --- Media Tabs --- */
.media-tabs {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border-radius: 100px;
  padding: 5px;
  width: max-content;
  margin-top: 6px;
}
.media-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.6);
  font: 700 13px Manrope, sans-serif;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: background .25s, color .25s;
  letter-spacing: .3px;
}
.media-tab.active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(240,90,40,.45);
}
.media-tab:not(.active):hover {
  background: rgba(255,255,255,.12);
  color: #fff;
}

/* --- Media Panels --- */
.media-panel { animation: fadeIn .35s ease; }
.media-panel--hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* --- Video featured player --- */
/* ===========================
   REELS / STORIES CAROUSEL
   =========================== */
.reels-track-wrap {
  position: relative;
  padding-bottom: 32px;
}
.reels-track {
  display: flex;
  gap: 16px;
  padding: 12px max(28px, calc((100vw - 1160px)/2)) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reels-track::-webkit-scrollbar { display: none; }

.reel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: #000;
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  cursor: pointer;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s;
}
.reel-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 56px rgba(0,0,0,.7);
}
.reel-card.reel-playing {
  box-shadow: 0 0 0 3px var(--lime), 0 20px 56px rgba(0,0,0,.7);
}

.reel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay bottom */
.reel-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.85) 100%
  );
  pointer-events: none;
}

/* Top progress bar */
.reel-progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
  overflow: hidden;
}
.reel-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--lime);
  border-radius: 2px;
  transition: width .1s linear;
}

/* Bottom UI */
.reel-ui {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 14px 16px;
}
.reel-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.reel-play-btn,
.reel-mute-btn {
  background: rgba(0,0,0,.35);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .15s;
}
.reel-play-btn:hover,
.reel-mute-btn:hover {
  background: rgba(0,0,0,.6);
  transform: scale(1.1);
}

/* Brand + caption */
.reel-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 52px;
}
.reel-brand {
  font: 800 12px Manrope, sans-serif;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.reel-brand em {
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 400;
  opacity: .85;
}
.reel-caption {
  font: 600 13px 'DM Sans', sans-serif;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.reel-tag {
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .2px;
}

/* Big tap-to-play overlay */
.reel-tap-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
  pointer-events: none;
}
.reel-tap-play svg { filter: drop-shadow(0 4px 16px rgba(0,0,0,.6)); }
.reel-card.reel-playing .reel-tap-play { opacity: 0; }

/* Scroll hint */
.reels-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
  animation: hintPulse 2.5s ease-in-out infinite;
}
@keyframes hintPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: .85; }
}



/* --- Mosaic hover overlay --- */
.mosaic-hover {
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 69, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  backdrop-filter: blur(2px);
}
.mosaic-hover span {
  color: #fff;
  font: 700 14px Manrope, sans-serif;
  background: var(--orange);
  padding: 8px 18px;
  border-radius: 100px;
}
.mosaic-item[data-lightbox]:hover .mosaic-hover { opacity: 1; }
.mosaic-item[data-lightbox] { cursor: zoom-in; }

.mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mosaic-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  cursor: zoom-in;
}
.mosaic-item:not(.mosaic-quote)::after {
  content: '🔍 Ampliar';
  position: absolute;
  bottom: 12px;
  right: 12px;
  font: 600 11px Manrope;
  color: #fff;
  background: rgba(14, 32, 48, .75);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.mosaic-item:not(.mosaic-quote):hover::after {
  opacity: 1;
  transform: translateY(0);
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .3s ease;
}
.mosaic-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}
.mosaic-quote {
  background: linear-gradient(135deg, var(--orange) 0%, #d35400 100%);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  cursor: default;
}
.mosaic-quote span {
  font: 56px Georgia, serif;
  line-height: .4;
  color: rgba(255,255,255,.7);
}
.mosaic-quote p {
  font: 500 18px Georgia, serif;
  line-height: 1.4;
  margin: 0;
  color: #fff;
}

/* ===========================
   TESTIMONIOS (REVIEWS)
   =========================== */
.reviews {
  padding: 100px 0;
  background: #f1f6f8;
  border-top: 1px solid var(--border);
}
.reviews-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 100px;
  margin-top: 14px;
  box-shadow: 0 4px 14px rgba(11,46,69,.06);
}
.reviews-rating-badge .stars { color: #f1c40f; font-size: 16px; letter-spacing: 2px; }
.reviews-rating-badge strong { font: 800 14px Manrope; color: var(--ink); }
.reviews-rating-badge small { color: var(--muted); font-size: 12px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.review-card-featured {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, #fff 0%, #fffbf8 100%);
}
.review-stars {
  color: #f1c40f;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--sand);
  padding-top: 16px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sky);
  color: #fff;
  display: grid;
  place-items: center;
  font: 700 13px Manrope;
}
.review-author strong {
  display: block;
  font: 700 14px Manrope;
  color: var(--ink);
}
.review-author span {
  font-size: 11.5px;
  color: var(--muted);
}

/* ===========================
   UBICACIÓN & CÓMO LLEGAR
   =========================== */
.location-section {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--border);
}
.location-container {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 60px;
  align-items: center;
}
.location-info h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0 0 16px;
}
.location-info h2 em { color: var(--orange); }
.location-desc {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 540px;
  margin-bottom: 32px;
}
.location-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}
.loc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.loc-icon {
  font-size: 24px;
  background: var(--sand);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.loc-item strong {
  font: 700 15px Manrope;
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.loc-item p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
}
.location-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.button-waze {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--ink);
  font: 700 13.5px Manrope;
  transition: all .2s ease;
}
.button-waze:hover {
  border-color: #33ccff;
  color: #0099cc;
  background: rgba(51,204,255,.08);
}

.location-card-visual {
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: #fff;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.location-card-visual::after {
  content: '⌁';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-size: 160px;
  color: rgba(255,255,255,.05);
  font-family: Georgia, serif;
  pointer-events: none;
}
.loc-visual-inner {
  position: relative;
  z-index: 2;
}
.loc-visual-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font: 800 10px Manrope;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.location-card-visual h3 {
  font-size: 28px;
  letter-spacing: -1px;
  margin: 0 0 10px;
}
.location-card-visual p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 22px;
}
.loc-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.9);
}
.loc-wa-btn {
  display: inline-block;
  font: 700 13px Manrope;
  color: var(--lime);
  transition: color .2s;
}
.loc-wa-btn:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===========================
   MAPA DE UBICACIÓN EMBEBIDO
   =========================== */
.location-map-wrap {
  margin-top: 48px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.location-map-header {
  padding: 24px 32px;
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.map-badge {
  display: inline-block;
  font: 800 11px Manrope, sans-serif;
  letter-spacing: 1.5px;
  color: var(--orange);
  margin-bottom: 4px;
}
.location-map-header h3 {
  font: 800 20px Manrope, sans-serif;
  margin: 0;
  color: var(--ink);
}
.map-direct-link {
  font: 700 13px Manrope, sans-serif;
  color: var(--sky);
  background: #fff;
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  transition: all .2s ease;
}
.map-direct-link:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  transform: translateY(-1px);
}
.location-map-iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 640px) {
  .location-map-header { padding: 18px 20px; flex-direction: column; align-items: flex-start; }
  .location-map-iframe { height: 320px; }
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 100px 0;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  border-top: 1px solid var(--border);
}
.faq-head h2 {
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 0;
}
.faq-head h2 em { color: var(--orange); }
.faq-list { border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary {
  list-style: none;
  font: 600 15px Manrope;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color .2s;
}
.faq summary:hover { color: var(--orange); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { font-size: 22px; font-weight: 300; flex-shrink: 0; transition: transform .25s; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { color: var(--muted); line-height: 1.65; font-size: 14px; margin: 14px 30px 0 0; }

/* ===========================
   BOOKING
   =========================== */
.booking {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  background: var(--sky);
  color: #fff;
}
.booking-panel {
  padding: 90px max(32px, calc((100vw - 1160px)/2)) 90px max(32px, calc((100vw - 1160px)/2));
  padding-right: 80px;
}
.booking-panel h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin: 0 0 16px;
}
.booking-panel h2 em { color: var(--lime); }
.booking-panel > p { color: rgba(255,255,255,.70); font-size: 15px; margin-bottom: 36px; max-width: 420px; }
.booking-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.booking-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  background: var(--wa-green);
  color: #fff;
  font: 700 15px Manrope;
  transition: transform .2s, box-shadow .2s;
}
.booking-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
.booking-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  font: 600 14px 'DM Sans';
  transition: background .2s, border-color .2s;
}
.booking-tel:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }
.booking-art {
  background: var(--orange);
  padding: 70px 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-art p {
  font: 500 clamp(28px,3vw,46px) Georgia;
  line-height: 1.15;
  margin: 0;
  color: #fff;
}
.booking-art em { color: var(--lime); }
.art-mark { font: 110px Georgia; color: rgba(255,255,255,.25); align-self: flex-end; line-height: 1; }

/* ===========================
   WhatsApp FLOAT (ENHANCED)
   =========================== */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  transition: transform .25s cubic-bezier(.175,.885,.32,1.275), box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.65);
}

/* Pulso animado */
.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: waPulse 2s infinite ease-out;
  pointer-events: none;
}
@keyframes waPulse {
  0% { transform: scale(.95); opacity: .9; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Indicador verde de en línea */
.wa-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  background: #2ecc71;
  border: 2.5px solid #fff;
  border-radius: 50%;
}

/* Tooltip elegante */
.wa-tooltip {
  position: absolute;
  right: 76px;
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  flex-direction: column;
  gap: 2px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.wa-tooltip strong { font: 700 12px Manrope; color: var(--ink); }
.wa-tooltip span { font-size: 11px; color: #27ae60; font-weight: 500; }
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   LIGHTBOX MODAL
   =========================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 38, .88);
  backdrop-filter: blur(10px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: min(900px, 92vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(.92);
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275);
}
.lightbox-modal.is-open .lightbox-content {
  transform: scale(1);
}
.lightbox-img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.lightbox-caption {
  margin-top: 14px;
  color: #fff;
  font: 500 14px 'DM Sans';
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: -46px;
  right: -6px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(90deg);
}

/* Indicador visual de zoom en imágenes clickeables */
.pkg-image-wrap, .mosaic-item {
  cursor: zoom-in;
}

/* ===========================
   FOOTER (RICH)
   =========================== */
footer {
  background: #060f18;
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
}
.footer-top {
  padding: 64px max(28px, calc((100% - 1160px)/2)) 52px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand { color: #fff; font-size: 18px; margin-bottom: 10px; display: inline-flex; }
.footer-tagline {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  margin: 8px 0 20px;
  line-height: 1.5;
}
.footer-address {
  font-style: normal;
  line-height: 2;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-address a {
  color: var(--lime);
  transition: color .2s;
}
.footer-address a:hover { color: #fff; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav strong {
  color: #fff;
  font: 700 11px Manrope, sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-nav a {
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px max(28px, calc((100% - 1160px)/2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===========================
   FOCUS / A11Y
   =========================== */
:focus-visible { outline: 3px solid var(--lime); outline-offset: 4px; }

/* ===========================
   REDUCED MOTION
   =========================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===========================
   RESPONSIVE – TABLET
   =========================== */
@media (max-width: 980px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .pkg-featured { transform: none; }
  .pkg-featured:hover { transform: translateY(-8px); }
  .includes-inner { grid-template-columns: 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 520px; margin: 20px auto 0; }
  .location-container { grid-template-columns: 1fr; gap: 48px; }
  .gallery-head { flex-direction: column; align-items: flex-start; }
  .mosaic { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .faq { grid-template-columns: 1fr; gap: 40px; }
  .booking { grid-template-columns: 1fr; }
  .booking-panel { padding: 70px 28px; }
  .video-playlist { grid-template-columns: repeat(3, 1fr); }
  .booking-art { min-height: 260px; }
}

/* ===========================
   RESPONSIVE – MOBILE
   =========================== */
@media (max-width: 640px) {
  .wrap { width: calc(100% - 32px); }
  .nav { height: 66px; padding: 0 16px; }
  .nav nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav.menu-open { background: var(--sky); }
  .nav.menu-open nav {
    display: flex;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--sky);
    flex-direction: column;
    padding: 20px 20px;
    gap: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.2);
  }
  .nav.menu-open .nav-cta { display: block; width: max-content; }
  h1 { letter-spacing: -2px; }
  .hero-content { padding: 110px 0 60px; }
  .hero-scroll, .hero-phone { display: none; }
  .hero-pills { gap: 8px; }
  .trust-wrap { gap: 24px 16px; }
  .trust-divider { display: none; }
  .packages { padding: 70px 0 50px; }
  .packages-grid { max-width: none; }
  .pkg-image-wrap { height: 220px; }
  .pax-btn { padding: 8px 14px; font-size: 11.5px; }
  .reviews { padding: 70px 0; }
  .location-section { padding: 70px 0; }
  .location-card-visual { padding: 30px 22px; }
  .includes { padding: 70px 0; }
  .includes-grid { grid-template-columns: 1fr; }
  .gallery { padding: 70px 0; }
  .mosaic { grid-template-columns: 1fr; gap: 14px; }
  .mosaic-item { height: 230px; }
  .video-playlist { grid-template-columns: repeat(2, 1fr); }
  .media-tabs { width: 100%; justify-content: center; }
  .faq { padding: 70px 0; }
  .booking-panel { padding: 60px 16px; }
  .booking-art { padding: 48px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .section-header h2 { letter-spacing: -1.5px; }
}
