:root {
  --ink: #000000;
  --ink-2: #111111;
  --ink-3: #1a1a1a;
  --stone: #111111;
  --stone-2: #000000;
  --teal: #0A9E90;
  --brass: #1FFFEC;
  --brass-gradient: linear-gradient(135deg, #1FFFEC 0%, #0A9E90 100%);
  --gold-glow: 0 0 25px rgba(31, 255, 236, 0.4);
  --rust: #1FFFEC;
  --text-light: #F2F2F2;
  --text-dark: #F2F2F2;
  --muted-light: rgba(242, 242, 242, 0.85);
  --muted-dark: #a0a0a0;
  --maxw: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--ink);
  color: var(--text-light);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}


html.scroll-locked body {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

h1,
h2,
h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
}

.mono {
  font-family: 'Space Mono', monospace;
}

#loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.compass {
  width: 60px;
  height: 60px;
  border: 2px dashed var(--brass);
  border-radius: 50%;
  animation: spin 4s linear infinite;
  position: relative;
}

.compass::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 30px;
  background: var(--text-light);
  transform: translate(-50%, -100%);
  transform-origin: bottom;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 12px 20px;
  background: var(--brass);
  color: var(--ink);
  font-weight: 700;
  border-radius: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

@media (max-width:640px) {
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(31, 255, 236, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #fff;
}

.logo span {
  color: var(--brass);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  z-index: 101;
  font-weight: 500;
}

.nav-links a {
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  color: #fff;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--brass);
}

.nav-mobile-wapp {
  display: none;
}

.nav-right-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}



.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 22px;
  cursor: pointer;
}

@media (max-width:920px) {
  .nav-links {
    display: none;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    top: 64px;
    right: 24px;
    background: var(--ink-2);
    padding: 24px 28px;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(240, 244, 248, 0.15);
  }

  .nav-mobile-wapp {
    display: inline-flex !important;
    background: var(--brass);
    color: var(--ink) !important;
    padding: 10px 16px;
    border-radius: 2px;
    font-weight: 700 !important;
    text-align: center;
    margin-top: 6px;
    opacity: 1 !important;
  }

  .nav-toggle {
    display: block;
  }
}

.btn {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transform: translateZ(0);
}

.btn-primary {
  background: var(--brass);
  color: #000000;
  font-weight: 700;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: -1;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: #000;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  top: -10%;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 32%, rgba(0, 0, 0, 0.6) 68%, rgba(0, 0, 0, 0.98) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
  max-width: 820px;
  color: #fff;
}

.hero-sub {
  margin-top: 16px;
  max-width: 520px;
  font-size: clamp(14px, 2vw, 16.5px);
  line-height: 1.5;
  color: var(--muted-light);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  border-top: 1px solid rgba(240, 244, 248, 0.15);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 0;
}

.hero-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  flex-wrap: wrap;
  gap: 6px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(10, 25, 33, 0.85);
  backdrop-filter: blur(8px);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 60px, 0);
  transition: opacity 1.8s cubic-bezier(0.19, 1, 0.22, 1), transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), visibility 1.8s, border-color 0.25s ease, background 0.25s ease;
  will-change: opacity, transform;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.back-to-top:hover {
  border-color: var(--brass);
  background: rgba(18, 43, 54, 0.95);
}

@media (max-width:640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
}

.section-divider-gold {
  position: relative;
}

.section-divider-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(31, 255, 236, 0.5) 50%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.destinos,
.catalogo,
.logistica,
.galeria,
.bitacoras,
.faq,
.cta-banner {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.destinos,
.bitacoras,
.faq {
  box-shadow: inset 0 25px 40px rgba(0, 0, 0, 0.15), inset 0 -25px 40px rgba(0, 0, 0, 0.15);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-clip {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-clip.is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.destinos {
  background: var(--stone);
  color: var(--text-dark);
  padding: 120px 0 110px;
  position: relative;
  overflow: hidden;
}

.section-head {
  max-width: 560px;
  margin-bottom: 64px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--text-dark);
}

.section-head p {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 15.5px;
  font-weight: 500;
}

.destinos .eyebrow {
  color: var(--rust);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.dest-card {
  background: #111111;
  border: 1px solid rgba(10, 158, 144, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  transform: translateZ(0);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.dest-card.dest-hidden {
  display: none !important;
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 255, 236, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(31, 255, 236, 0.2);
}

.dest-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background-color: #111;
}

.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .7, .2, 1);
}

.dest-card:hover .dest-img img {
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 33, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  pointer-events: none;
}

.zoom-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--brass);
}

.dest-img:hover .zoom-icon {
  opacity: 1;
}

.dest-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dest-coord {
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--brass);
  margin-bottom: 10px;
  font-weight: 600;
  display: inline-block;
  width: fit-content;
  background: rgba(224, 180, 133, 0.12);
  border: 1px solid rgba(224, 180, 133, 0.25);
  padding: 3px 10px;
  border-radius: 12px;
}

.dest-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.dest-content p {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.5;
}

@media (max-width:900px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .dest-grid {
    grid-template-columns: 1fr;
  }
}

.catalogo {
  padding: 120px 0;
  background: var(--ink-2);
}

.catalogo .section-head h2 {
  color: #fff;
}

.catalogo .section-head p {
  color: var(--muted-light);
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 10px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 244, 248, 0.2);
  color: var(--muted-light);
  padding: 8px 18px;
  border-radius: 2px;
  font-size: 13px;
  font-family: 'Space Mono', monospace;
  cursor: pointer;
  transition: background-color 0.1s ease, border-color 0.1s ease, color 0.1s ease;
  font-weight: 600;
}

.filter-btn:hover {
  border-color: var(--brass);
  color: #fff;
}

.filter-btn.active {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
  align-content: start;
}


@keyframes sk-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.cat-skeleton {
  pointer-events: none;
}

.cat-sk-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: sk-shimmer 1.4s infinite linear;
}

.cat-sk-body {
  padding: 20px 22px;
}

.cat-sk-line {
  border-radius: 3px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1a1a1a 25%, #222 50%, #1a1a1a 75%);
  background-size: 800px 100%;
  animation: sk-shimmer 1.4s infinite linear;
}

.cat-sk-title  { height: 16px; width: 70%; }
.cat-sk-sub    { height: 12px; width: 90%; }
.cat-sk-short  { height: 12px; width: 50%; }

.cat-card {
  background: #111111;
  border: 1px solid rgba(10, 158, 144, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.cat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 255, 236, 0.7);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(31, 255, 236, 0.2);
}

.cat-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background-color: #111;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2, .7, .2, 1);
}

.cat-card:hover .cat-img img {
  transform: scale(1.05);
}

.cat-img-eye {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 255, 236, 0.4);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.cat-img-eye svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  transition: transform 0.2s ease;
}

.cat-img-eye:hover {
  background: var(--brass);
  color: #000000;
  border-color: var(--brass);
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(31, 255, 236, 0.6);
}

.cat-img-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(31, 255, 236, 0.4);
  color: var(--brass);
  font-size: 20px;
  font-family: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0.85;
}

.cat-img-prev {
  left: 10px;
}

.cat-img-next {
  right: 10px;
}

.cat-img-nav:hover {
  opacity: 1;
  background: var(--brass);
  color: #000000;
  border-color: var(--brass);
  box-shadow: 0 0 14px rgba(31, 255, 236, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.cat-img-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--brass);
  font-family: 'Space Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(31, 255, 236, 0.35);
  z-index: 4;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.cat-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-tag {
  color: var(--brass);
  font-size: 10.5px;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: rgba(224, 180, 133, 0.12);
  border: 1px solid rgba(224, 180, 133, 0.3);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  width: fit-content;
}

.cat-content h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

.cat-content p {
  color: var(--muted-light);
  font-size: 14.5px;
  margin-bottom: 20px;
  flex-grow: 1;
}


.cat-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #e53935 0%, #b71c1c 100%);
  color: #ffffff;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
  z-index: 5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cat-price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.cat-price-old {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.cat-price-current {
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--brass);
  letter-spacing: 0.02em;
}

.cat-modal-price-box {
  margin: 16px 0 20px;
  padding: 12px 16px;
  background: rgba(224, 180, 133, 0.08);
  border: 1px solid rgba(224, 180, 133, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cat-modal-price-old {
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: line-through;
}

.cat-modal-price-current {
  font-family: 'Space Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--brass);
}

.is-hidden {
  display: none !important;
}

.faq-hidden {
  display: none !important;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

@media (max-width:900px) {
  .catalogo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}

#pkg-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

#pkg-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.pkg-modal-content {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(31, 255, 236, 0.4);
  padding: 48px 40px;
  max-width: 520px;
  width: 90%;
  position: relative;
  transform: translate3d(0, 30px, 0);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-radius: 6px;
  will-change: transform;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(31, 255, 236, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}

#pkg-modal.active .pkg-modal-content {
  transform: translate3d(0, 0, 0);
}

.pkg-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--muted-light);
  font-size: 28px;
  cursor: pointer;
  transition: color 0.2s;
}

.pkg-modal-close:hover {
  color: #fff;
}

.pkg-modal-body h3 {
  color: var(--brass);
  font-size: 28px;
  margin-bottom: 4px;
}

.pkg-modal-body p.mono {
  color: var(--muted-light);
  font-size: 11px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.pkg-modal-body ul li {
  margin-bottom: 14px;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  color: var(--text-light);
}

.pkg-modal-body ul li::before {
  content: '✦';
  color: var(--brass);
  font-weight: bold;
  font-size: 13px;
}

.pkg-modal-body .btn {
  margin-top: 30px;
  width: 100%;
  text-align: center;
}

.logistica {
  padding: 120px 0;
  background: var(--ink);
  border-top: 1px solid rgba(240, 244, 248, 0.1);
}

.logistica-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.logistica-head h2 {
  color: #fff;
}

.logistica-head p {
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 15.5px;
  max-width: 340px;
}

.log-steps {
  display: flex;
  flex-direction: column;
}

.log-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(240, 244, 248, 0.15);
}

.log-step:last-child {
  border-bottom: 1px solid rgba(240, 244, 248, 0.15);
}

.log-num {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--brass);
  padding-top: 4px;
  font-weight: 700;
}

.log-step h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.log-step p {
  color: var(--muted-light);
  font-size: 14.5px;
  max-width: 460px;
}

@media (max-width:800px) {
  .logistica-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.galeria {
  padding: 100px 0;
  background: var(--ink-2);
  border-top: 1px solid rgba(240, 244, 248, 0.1);
}

.galeria .section-head h2 {
  color: #fff;
}

.galeria .section-head p {
  color: var(--muted-light);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background-color: #111;
  border: 1px solid rgba(10, 158, 144, 0.35);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.galeria-item:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 255, 236, 0.7);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(31, 255, 236, 0.2);
}

.galeria-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(.2, .7, .2, 1), opacity 0.3s;
  transform: translateZ(0);
}

.galeria-item:hover .galeria-img {
  transform: scale(1.05);
}

.is-hidden-galeria {
  display: none !important;
}

#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 25, 33, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
}

#lightbox.active {
  display: flex;
}

#lightbox img {
  max-height: 85vh;
  max-width: 85vw;
  border: 4px solid var(--stone);
}

.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--brass);
  font-size: 40px;
  cursor: pointer;
  padding: 20px;
}

#lb-prev {
  left: 20px;
}

#lb-next {
  right: 20px;
}

#lb-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

@media (max-width:900px) {
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .galeria-grid {
    display: flex;
    flex-direction: column;
  }
}

.bitacoras {
  background: var(--stone);
  color: var(--text-dark);
  padding: 120px 0;
}

.bitacoras .eyebrow {
  color: var(--rust);
}

.bitacoras h2 {
  color: var(--text-dark);
}

.slider-wrapper {
  position: relative;
  margin-top: 40px;
}

.quote-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.quote-slider::-webkit-scrollbar {
  display: none;
}

.quote-card {
  width: 360px;
  min-width: 320px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: #111111;
  border: 1px solid rgba(10, 158, 144, 0.35);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.quote-stars {
  color: var(--brass);
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: -10px;
}

@media (max-width: 480px) {
  .quote-card {
    width: 100%;
    min-width: 100%;
  }
}

.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 40px;
  color: var(--brass);
  line-height: 1;
}

.quote-card p.qtext {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.6;
  flex-grow: 1;
  font-weight: 500;
}

.quote-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
}

.quote-who b {
  font-size: 13.5px;
  display: block;
  color: var(--text-dark);
}

.quote-who span {
  font-size: 12px;
  color: var(--muted-dark);
  font-weight: 600;
}

.slider-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

.slider-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: var(--brass);
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.slider-nav button:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10, 25, 33, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--ink);
  width: 28px;
  border-radius: 5px;
}

.faq {
  padding: 100px 0;
  background: var(--stone-2);
  color: var(--text-dark);
}

.faq h2 {
  color: var(--text-dark);
}

.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

details {
  border-bottom: 1px solid rgba(16, 29, 36, 0.2);
  padding: 24px 0;
}

summary {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 30px;
  color: var(--text-dark);
}

summary::after {
  content: '+';
  position: absolute;
  right: 0;
  color: var(--rust);
  font-family: 'Space Mono';
  font-weight: bold;
  font-size: 22px;
}

details[open] summary::after {
  content: '-';
}

details p {
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 500;
}

.cta-banner {
  background: linear-gradient(120deg, var(--ink-3), var(--ink));
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
}

.cta-banner p {
  color: var(--muted-light);
  margin: 18px auto 0;
  max-width: 440px;
  font-size: 15.5px;
}

.whatsapp-form {
  max-width: 620px;
  margin: 38px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
  background: rgba(17, 17, 17, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 38px 34px;
  border: 1px solid rgba(31, 255, 236, 0.3);
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(31, 255, 236, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brass);
  text-transform: uppercase;
  font-weight: 700;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(10, 158, 144, 0.35);
  color: #fff;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-form input::placeholder,
.whatsapp-form textarea::placeholder {
  color: rgba(240, 244, 248, 0.6);
}

.whatsapp-form input:focus,
.whatsapp-form select:focus,
.whatsapp-form textarea:focus {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.whatsapp-form select option {
  background: var(--ink);
  color: #fff;
}

.whatsapp-form textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted-light);
  text-align: center;
}

footer {
  background: var(--ink);
  border-top: 1px solid rgba(240, 244, 248, 0.15);
  padding: 70px 0 30px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  display: grid;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--muted-light);
  font-size: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted-light);
  transition: color 0.2s;
  cursor: pointer;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 244, 248, 0.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted-light);
}

.social-icons-footer {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 244, 248, 0.15);
  color: var(--muted-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-btn:hover {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
  transform: translateY(-2px);
}

@media (max-width:800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  html,
  body,
  .quote-slider,
  .galeria-grid {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  *::-webkit-scrollbar {
    display: none;
  }

  .quote-slider,
  .galeria-grid {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }

  .btn,
  .nav-toggle,
  .dest-card,
  .slider-nav button,
  summary {
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 130px;
  }

  .hero-content h1 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-sub {
    font-size: 13.5px;
    line-height: 1.45;
    margin-top: 12px;
  }

  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
    max-width: 360px;
  }

  .hero-ctas .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    white-space: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }

  .hero-strip {
    padding: 8px 0;
  }

  .hero-strip .wrap {
    font-size: 9.5px;
    letter-spacing: 0.04em;
    gap: 3px;
    text-align: center;
    justify-content: center;
    flex-direction: column;
  }

  .filter-buttons {
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-padding: 0 16px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 5px;
  }

  .filter-buttons::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #loader {
    display: none;
  }

  .hero-img {
    transform: none !important;
    animation: none;
  }

  .reveal,
  .reveal-clip {
    opacity: 1;
    transform: none;
    clip-path: none;
    transition: none;
  }

  .dest-card img,
  .cat-img img,
  .btn-primary::before,
  .whatsapp-float {
    transition: none;
    transform: none !important;
  }

  .pkg-modal-content {
    transition: none;
    transform: none !important;
  }

  .cat-sk-img,
  .cat-sk-line {
    animation: none;
  }
}


.cat-discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  z-index: 4;
  backdrop-filter: blur(4px);
}

.cat-discount-badge.cat-info-badge {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #082f49;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.4);
}

.cat-price-box {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 16px;
}

.cat-price-old {
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: line-through;
  opacity: 0.85;
}

.cat-price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: #38bdf8;
}

.cat-modal-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 16px;
  padding: 8px 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  width: fit-content;
}

.cat-modal-price-old {
  font-size: 0.95rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.cat-modal-price-current {
  font-size: 1.35rem;
  font-weight: 800;
  color: #38bdf8;
}