/* ============================================================
   ChillRoutes — styles.css
   Archetype: Dark Editorial Ocean
   v20260516
   ============================================================ */

/* === RESET & VARIABLES === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #F7F7F5;
  --fjord:      #1C3A5E;
  --fjord-dark: #0F2236;
  --moss:       #4A6741;
  --terra:      #2A7A6A;
  --terra-dark: #1E5C50;
  --stone:      #6B6B63;
  --ink:        #1E1E1A;
  --white:      #FFFFFF;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 76px;
  --section-pad: clamp(80px, 10vw, 140px);
  --gutter: clamp(20px, 5vw, 80px);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  cursor: none;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === SPLASH === */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--fjord-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: splashFade 2.2s forwards;
}
#splash img {
  width: clamp(160px, 30vw, 280px);
  opacity: 0;
  animation: splashLogo 1.8s var(--ease-out-expo) forwards;
}
@keyframes splashFade {
  0%   { opacity: 1; pointer-events: all; }
  65%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
@keyframes splashLogo {
  0%   { opacity: 0; transform: scale(0.88); }
  35%  { opacity: 1; transform: scale(1); }
  80%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0.2; transform: scale(1.03); }
}
#splash.hidden { display: none; }

/* === CUSTOM CURSOR === */
#cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fjord);
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
  transition: opacity 0.2s;
}
#cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--fjord);
  pointer-events: none;
  z-index: 9997;
  will-change: transform;
  transition: width 0.25s var(--ease-out-expo),
              height 0.25s var(--ease-out-expo),
              border-color 0.25s,
              opacity 0.2s;
  opacity: 0.6;
}
body:hover #cursor-dot { opacity: 1; }
a:hover ~ #cursor-dot,
button:hover ~ #cursor-dot { transform: translate(-50%,-50%) scale(1.5); }

/* === NAV === */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s var(--ease-out-expo),
              box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(15, 34, 54, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active { color: var(--white); opacity: 1; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--fjord-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
#mobile-menu.open { transform: translateX(0); }
#mobile-menu a {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--white);
  font-style: italic;
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--terra); }
#mobile-menu .btn { font-style: normal; font-family: var(--ff-body); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out-expo);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fjord);
  color: var(--white);
  border-color: var(--fjord);
}
.btn-primary:hover {
  background: var(--fjord-dark);
  border-color: var(--fjord-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(28,58,94,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-terra {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-terra:hover {
  background: var(--terra-dark);
  border-color: var(--terra-dark);
  transform: translateY(-2px);
}

/* === HERO === */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--fjord-dark);
  padding-top: var(--nav-h); /* valor fijo — sin vh dinámico → sin reflow al scrollear */
}
#hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,34,54,0.3) 0%,
    rgba(15,34,54,0.15) 40%,
    rgba(15,34,54,0.7) 80%,
    rgba(15,34,54,0.92) 100%
  );
  z-index: 1;
}
.grain-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
}
.orb-1 {
  width: 500px; height: 500px;
  background: var(--fjord);
  top: -100px; right: -100px;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.orb-2 {
  width: 360px; height: 360px;
  background: var(--moss);
  bottom: 60px; left: -80px;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -40px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 var(--gutter) clamp(10px, 1.5vw, 18px);
  max-width: 900px;
  width: 100%;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}
.hero-content h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
}
.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* === TICKER === */
.ticker {
  overflow: hidden;
  background: var(--fjord);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.ticker-item .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === SECTION BASE === */
.section {
  padding: var(--section-pad) var(--gutter);
}
.section-light { background: var(--cream); color: var(--ink); }
.section-dark  { background: var(--fjord-dark); color: var(--white); }
.section-navy  { background: var(--fjord); color: var(--white); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 2px;
}
.section-light .section-label {
  background: rgba(28,58,94,0.08);
  color: var(--fjord);
}
.section-dark .section-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-intro h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-intro h2 em { font-style: italic; }
.section-intro p {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.7;
}
.section-dark .section-intro p { color: rgba(255,255,255,0.65); }
#testimonios .section-intro h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); white-space: nowrap; }

/* === DESTINATION SECTIONS === */
.dest-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.dest-layout-reverse { direction: rtl; }
.dest-layout-reverse > * { direction: ltr; }

.dest-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 7px 16px;
  border-radius: 2px;
  background: rgba(28,58,94,0.1);
  color: var(--fjord);
}
.section-dark .dest-label {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.dest-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.dest-text h2 em { font-style: italic; }
.section-dark .dest-text h2 { color: var(--white); }

.dest-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 20px;
  max-width: 520px;
}
.section-dark .dest-text p { color: rgba(255,255,255,0.72); }

/* Details grid */
.dest-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 32px 0;
  padding: 28px;
  border-radius: 6px;
  background: rgba(28,58,94,0.05);
  border-left: 3px solid var(--fjord);
}
.section-dark .dest-details {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--terra);
}
.detail-item {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.detail-item::before {
  content: '·';
  color: var(--fjord);
  font-weight: 900;
  margin-top: 1px;
  flex-shrink: 0;
}
.section-dark .detail-item { color: rgba(255,255,255,0.82); }
.section-dark .detail-item::before { color: var(--terra); }

/* Dates table */
.dates-block {
  margin: 28px 0 36px;
}
.dates-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 12px;
}
.section-dark .dates-title { color: rgba(255,255,255,0.5); }

.dates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dates-table tr {
  border-bottom: 1px solid rgba(28,58,94,0.1);
}
.section-dark .dates-table tr { border-bottom-color: rgba(255,255,255,0.08); }
.dates-table td {
  padding: 10px 0;
  color: var(--ink);
}
.section-dark .dates-table td { color: rgba(255,255,255,0.82); }
.dates-table td:last-child { text-align: right; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-available { background: rgba(74,103,65,0.15); color: var(--moss); }
.badge-full      { background: rgba(180,60,40,0.14); color: #c0513a; }
.badge-forming   { background: rgba(28,58,94,0.1); color: var(--fjord); }
.section-dark .badge-available { background: rgba(100,180,90,0.18); color: #8cd97a; }
.section-dark .badge-full      { background: rgba(200,70,50,0.22); color: #f08070; }
.section-dark .badge-forming   { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); }

/* Media container */
.dest-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15,34,54,0.25);
}
.dest-media video {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--fjord-dark);
}
.dest-media .media-fallback {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* === PARALLAX STRIP === */
.parallax-strip {
  position: relative;
  height: clamp(300px, 45vw, 560px);
  overflow: hidden;
}
.parallax-strip img {
  position: absolute;
  inset: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.parallax-strip .para-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,34,54,0.4) 0%,
    rgba(15,34,54,0.15) 50%,
    rgba(15,34,54,0.4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-strip blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 700px;
  padding: 0 var(--gutter);
  line-height: 1.4;
}

/* === NOSOTROS HERO BACKGROUND === */
.nosotros-bg-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.nosotros-bg-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 0;
}
.nosotros-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(15,34,54,0.88) 0%,
    rgba(15,34,54,0.65) 50%,
    rgba(15,34,54,0.35) 100%);
  z-index: 1;
}
.nosotros-bg-content {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  max-width: 640px;
}
.nosotros-bg-content .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.nosotros-bg-content h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 700;
}
.nosotros-bg-content h2 em { font-style: italic; }
.nosotros-bg-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}

/* === DELFÍN / NOSOTROS === */
.delfin-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.delfin-photo {
  position: relative;
}
.delfin-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(15,34,54,0.2);
}
.delfin-photo::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--fjord);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.25;
}
.delfin-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 28px;
  font-weight: 700;
}
.delfin-text h2 em { font-style: italic; color: var(--fjord); }
.delfin-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 18px;
  max-width: 540px;
}
.delfin-highlight {
  background: rgba(28,58,94,0.06);
  border-left: 3px solid var(--fjord);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 28px 0;
  font-size: 1rem;
  font-style: italic;
  color: var(--fjord);
  line-height: 1.65;
}

/* === STATS === */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}
.stat-item { }
.stat-number-wrap {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}
.stat-number { display: inline-block; }
.stat-suffix {
  font-size: 0.45em;
  font-weight: 700;
  opacity: 0.9;
  vertical-align: baseline;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}
.stats-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* === TESTIMONIOS CARRUSEL === */
#testimonios { overflow: hidden; }
.section-light .section-intro h2 { color: var(--ink); }
.testimonios-carousel {
  max-width: 960px;
  margin: 0 auto;
}
.carousel-wrapper {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(15,34,54,0.12);
  height: 370px;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s var(--ease-out-expo);
}
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  height: 100%;
  min-height: 0;
  background: var(--white);
  overflow: hidden;
}
.carousel-slide-img {
  width: 36%;
  flex-shrink: 0;
  overflow: hidden;
}
.carousel-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.carousel-slide:hover .carousel-slide-img img { transform: scale(1.04); }
.carousel-slide-content {
  flex: 1;
  padding: clamp(24px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.carousel-slide-content::before {
  content: '"';
  position: absolute;
  top: 12px; right: 28px;
  font-family: var(--ff-display);
  font-size: 7rem;
  line-height: 1;
  color: rgba(28,58,94,0.05);
  font-style: italic;
  pointer-events: none;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}
.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(28,58,94,0.18);
  background: var(--white);
  color: var(--fjord);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease-out-expo);
  flex-shrink: 0;
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover {
  background: var(--fjord);
  color: var(--white);
  border-color: var(--fjord);
  transform: scale(1.08);
}
.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(28,58,94,0.2);
  cursor: pointer;
  transition: background 0.25s, width 0.25s var(--ease-out-expo);
}
.carousel-dot.active {
  background: var(--fjord);
  width: 22px;
}
.testimonial-stars {
  color: #F5A623;
  font-size: 0.88rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.97rem;
  line-height: 1.78;
  color: var(--stone);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.avatar-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-info { }
.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.author-dest {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}
@media (max-width: 680px) {
  .carousel-wrapper { height: 480px; overflow: hidden; }
  .carousel-track { align-items: stretch; height: 100%; }
  .carousel-slide { flex-direction: column; min-height: 0; height: 480px; }
  .carousel-slide-img { width: 100%; height: 190px; flex-shrink: 0; }
  .carousel-slide-content { flex: 1; justify-content: flex-start; padding: 20px 20px 16px; gap: 10px; overflow: hidden; }
  .testimonial-text { font-size: 0.88rem; line-height: 1.6; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; }
}

/* === GALLERY 3D AUTO === */
.gallery-3d-section { overflow: hidden; padding-top: clamp(32px, 4vw, 56px) !important; }
.gallery-3d-section .section-intro h2 { color: var(--white); }

.gallery-3d-viewport {
  width: 100%;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  overflow: visible;
  padding: 24px 0 40px;
}

.gallery-3d-track {
  display: flex;
  gap: 20px;
  align-items: center;
  will-change: transform;
  transform-style: preserve-3d;
  /* JS pone el translateX inicial para centrar */
}

.gallery-3d-card {
  flex-shrink: 0;
  width: 360px;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  will-change: transform;
  transform-origin: center center;
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
  transition: box-shadow 0.35s ease;
}
.gallery-3d-card.active {
  box-shadow: 0 28px 72px rgba(0,0,0,0.65), 0 0 0 1.5px rgba(255,255,255,0.12);
}
.gallery-3d-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery-3d-card { width: 260px; height: 340px; }
  .gallery-3d-track { gap: 14px; }
}
@media (max-width: 480px) {
  .gallery-3d-card { width: 210px; height: 280px; }
  .gallery-3d-track { gap: 12px; }
}

/* === NEWSLETTER === */
#newsletter {
  text-align: center;
}
#newsletter h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 16px;
}
#newsletter h2 em { font-style: italic; }
#newsletter p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 20px;
  border-radius: 3px;
  border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input[type="email"]:focus { border-color: rgba(255,255,255,0.6); }

/* === FOOTER === */
footer {
  background: var(--fjord-dark);
  padding: clamp(48px, 7vw, 80px) var(--gutter) 36px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto 48px;
}
.footer-brand img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-licencia {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  font-family: var(--ff-body);
}

/* === REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Defensive: split text never invisible */
.reveal[data-split] { opacity: 1; transform: none; }

/* === HERO LINES REVEAL === */
.reveal-hero {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal-hero.visible { opacity: 1; transform: translateY(0); }

.hero-line {
  display: block;
}

/* === HERO DESTINATION PILLS === */
.hero-destinations {
  position: absolute;
  bottom: 32px;
  right: var(--gutter);
  z-index: 4;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.hero-dest-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s, transform 0.25s var(--ease-out-expo);
  cursor: pointer;
}
.hero-dest-pill:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}
.hero-dest-pill .flag { font-size: 1.1rem; }

@media (max-width: 600px) {
  .hero-destinations {
    bottom: 16px;
    right: var(--gutter);
    gap: 6px;
  }
  .hero-dest-pill {
    font-size: 0.68rem;
    padding: 7px 10px;
    white-space: nowrap;
  }
}

/* === DESTINATION CARDS === */
.destinations-overview { overflow: hidden; }
.dest-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.dest-card {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 40px rgba(15,34,54,0.10), 0 2px 8px rgba(15,34,54,0.05);
  border: 1px solid rgba(28,58,94,0.06);
  transition: transform 0.5s var(--ease-out-expo),
              box-shadow 0.5s var(--ease-out-expo);
  text-decoration: none;
  color: var(--ink);
}
.dest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(15,34,54,0.18), 0 8px 24px rgba(15,34,54,0.08);
}
.dest-card-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.dest-card:hover .dest-card-img img { transform: scale(1.07); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,34,54,0.0) 35%,
    rgba(15,34,54,0.65) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  transition: background 0.4s;
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to bottom,
    rgba(15,34,54,0.08) 0%,
    rgba(15,34,54,0.75) 100%);
}
.dest-card-flag { font-size: 1.8rem; }

/* Hover duration pill */
.dest-card-duration-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease-out-expo),
              transform 0.35s var(--ease-out-expo);
  white-space: nowrap;
  align-self: flex-start;
}
.dest-card:hover .dest-card-duration-pill {
  opacity: 1;
  transform: translateY(0);
}
.dest-card-duration-pill svg {
  width: 14px; height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

.dest-card-body {
  padding: 28px 32px 32px;
  border-top: 1px solid rgba(28,58,94,0.06);
}
.dest-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.dest-card-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fjord);
  line-height: 1;
}
.dest-card-price span {
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--stone);
  margin-left: 4px;
}
.dest-card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--stone);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.dest-card-location svg { width: 13px; height: 13px; opacity: 0.55; }
.dest-card h3 {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.12;
}
.dest-card p {
  font-size: 0.97rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 22px;
}
.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--white);
  background: var(--fjord);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 40px;
  transition: gap 0.25s, background 0.25s, transform 0.25s;
}
.dest-card:hover .dest-card-cta {
  gap: 14px;
  background: var(--ink);
  transform: translateY(-1px);
}
.dest-card-cta span { transition: transform 0.25s; }
.dest-card:hover .dest-card-cta span { transform: translateX(4px); }

/* === BANDERAS VIDEO === */
.flag-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
}
.flag-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.flag-big-wrap {
  width: 48px;
  height: 33px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.flag-big-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === FECHAS GRID === */
.fechas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
.fechas-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s;
}
.fechas-col:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35);
}
.fechas-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.fechas-header h3 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 3px;
}
.fechas-header p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.fechas-dates {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fechas-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 11px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s;
}
.fechas-date-row:hover { background: rgba(255,255,255,0.07); }
.fechas-date-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.fechas-cta {
  padding: 6px 22px 24px;
}
.fechas-cta .btn {
  width: 100%;
  justify-content: center;
}

/* === NOSOTROS / FAMILY === */
.nosotros-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}
.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.family-img { border-radius: 6px; overflow: hidden; }
.family-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.family-img:hover img { transform: scale(1.04); }
.family-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16/9;
}
.family-img:not(.family-img-main) { aspect-ratio: 4/3; }

.nosotros-text { padding-top: 8px; }
.nosotros-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 18px;
  max-width: 540px;
}

/* === TESTIMONIAL CON FOTO DE VIAJE === */
.testimonial-card.has-trip-photo { padding: 0; overflow: hidden; }
.testimonial-trip-photo {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.testimonial-trip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}
.testimonial-card.has-trip-photo:hover .testimonial-trip-photo img {
  transform: scale(1.04);
}
.testimonial-card.has-trip-photo .testimonial-stars,
.testimonial-card.has-trip-photo .testimonial-text,
.testimonial-card.has-trip-photo .testimonial-author {
  padding-left: 28px;
  padding-right: 28px;
}
.testimonial-card.has-trip-photo .testimonial-stars { padding-top: 22px; }
.testimonial-card.has-trip-photo .testimonial-author { padding-bottom: 24px; }

/* === TRIP PAGES SHARED NAV === */
.trip-back-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  background: rgba(15,34,54,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trip-back-nav .nav-logo img {
  height: 46px;
}
.trip-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.trip-back-link:hover { color: var(--white); }
.trip-back-link svg { width: 16px; height: 16px; }

/* === TRIP PAGE HERO === */
.trip-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--fjord-dark);
  padding-top: var(--nav-h);
}
.trip-hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.trip-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(15,34,54,0.3) 0%,
    rgba(15,34,54,0.15) 30%,
    rgba(15,34,54,0.65) 75%,
    rgba(15,34,54,0.95) 100%);
  z-index: 1;
}
.trip-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(10px, 1.5vw, 18px);
  width: 100%;
  max-width: 900px;
}

/* === TRIP HERO SLIDESHOW === */
.trip-hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.trip-hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
  animation: heroZoom 8s ease-out forwards;
}
.trip-hero-slide.active {
  opacity: 1;
}
.trip-hero-content .eyebrow { margin-bottom: 16px; }
.trip-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  font-weight: 700;
  white-space: nowrap;
}
.trip-hero-content h1 em { font-style: italic; }
.trip-hero-content .hero-sub { max-width: 600px; }

/* === TRIP META PILLS === */
.trip-meta-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(28,58,94,0.08);
  padding: 14px var(--gutter);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(15,34,54,0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trip-meta-bar::-webkit-scrollbar { display: none; }
.trip-meta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: max-content;
}
.trip-meta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trip-meta-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--fjord);
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1.5px solid rgba(28,58,94,0.15);
}
.trip-meta-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.trip-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(28,58,94,0.07);
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fjord);
  white-space: nowrap;
}
.trip-meta-pill .pill-icon { font-size: 1rem; }
.trip-meta-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fjord);
  margin-left: auto;
}
.trip-meta-price span {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--stone);
}

/* === TRIP LAYOUT === */
.trip-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: clamp(32px, 5vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px,6vw,80px) var(--gutter);
  align-items: start;
}
.trip-main { min-width: 0; }
.trip-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 80px);
}

/* Booking card */
.booking-card {
  background: var(--white);
  border: 1px solid rgba(28,58,94,0.1);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(15,34,54,0.1);
  margin-bottom: 20px;
}
.booking-card h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--ink);
}
.booking-card .price-big {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fjord);
  margin-bottom: 4px;
}
.booking-card .price-note {
  font-size: 0.8rem;
  color: var(--stone);
  margin-bottom: 20px;
}
.booking-dates { margin-bottom: 20px; }
.booking-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(28,58,94,0.07);
  font-size: 0.88rem;
}
.booking-date-row:last-child { border-bottom: none; }
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.booking-card .btn-ghost { border-color: rgba(28,58,94,0.3); color: var(--fjord); }
.booking-card .btn-ghost:hover { background: rgba(28,58,94,0.05); }
.booking-note {
  font-size: 0.76rem;
  color: var(--stone);
  text-align: center;
  line-height: 1.6;
}

/* Info card */
.info-card {
  background: rgba(28,58,94,0.04);
  border-radius: 8px;
  padding: 20px;
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.7;
}
.info-card strong { color: var(--fjord); display: block; margin-bottom: 6px; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; }

/* === TRIP SECTIONS === */
.trip-section { margin-bottom: clamp(48px, 6vw, 72px); }
.trip-section h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(28,58,94,0.1);
}
.trip-section h2 em { font-style: italic; }
.trip-section p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--stone);
  margin-bottom: 16px;
}
.trip-section p:last-child { margin-bottom: 0; }

/* Itinerary days */
.itinerary-day {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 20px;
  margin-bottom: 0;
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 52px;
  bottom: 0;
  width: 1px;
  background: rgba(28,58,94,0.12);
}
.itinerary-day:last-child::before { display: none; }
.day-badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--fjord);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.6rem;
  line-height: 1.1;
  flex-shrink: 0;
  margin-top: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.day-badge span { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.day-content {
  padding-bottom: 32px;
}
.day-content h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.day-content p {
  font-size: 0.93rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 10px;
}
.day-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.day-tag {
  background: rgba(28,58,94,0.07);
  color: var(--fjord);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}
.day-tag.green { background: rgba(74,103,65,0.1); color: var(--moss); }

/* Includes/excludes */
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.includes-col h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 14px;
}
.includes-col ul { display: flex; flex-direction: column; gap: 8px; }
.includes-col li {
  display: flex;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}
.includes-col li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.85rem;
}
.includes-col.yes li::before { content: '✓'; color: var(--moss); font-weight: 700; }
.includes-col.no  li::before { content: '✗'; color: var(--terra); }

/* Trip gallery strip */
.trip-gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.trip-gallery-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.5s var(--ease-out-expo);
}
.trip-gallery-strip img:first-child { aspect-ratio: 4/3; }
.trip-gallery-strip img:hover { transform: scale(1.03); }
.trip-gallery-strip div { overflow: hidden; }

/* FAQ acordeón */
.faq-item {
  border-bottom: 1px solid rgba(28,58,94,0.1);
}
.faq-item:first-child { border-top: 1px solid rgba(28,58,94,0.1); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 20px 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--fjord); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--stone);
  transition: transform 0.35s var(--ease-out-expo);
}
.faq-chevron svg { width: 100%; height: 100%; display: block; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-q { color: var(--fjord); }
.faq-a {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  margin: 0;
  transition: max-height 0.4s var(--ease-out-expo), padding-bottom 0.4s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}

/* === MARQUEE GALLERY === */
.marquee-gallery {
  overflow: hidden;
  padding: 0;
  background: var(--cream);
}
.marquee-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  will-change: transform;
}
.marquee-row:last-child { margin-bottom: 0; }
.marquee-row-ltr {
  animation: marqueeLeft 40s linear infinite;
}
.marquee-row-rtl {
  animation: marqueeRight 40s linear infinite;
}
@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.marquee-img {
  flex-shrink: 0;
  width: 280px;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
}
.marquee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === INCLUDES (REFINED) === */
.includes-refined {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 4px;
}
.includes-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(28,58,94,0.08);
  box-shadow: 0 2px 12px rgba(15,34,54,0.05);
}
.includes-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(28,58,94,0.07);
}
.includes-card-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}
.includes-card-icon.yes { background: rgba(74,103,65,0.12); color: var(--moss); }
.includes-card-icon.no  { background: rgba(42,122,106,0.1); color: var(--terra); }
.includes-card-header h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.includes-card ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}
.includes-card li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.5;
}
.includes-card.yes li::before {
  content: '✓';
  color: var(--moss);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 1px;
}
.includes-card.no li::before {
  content: '×';
  color: #B04A3A;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.2;
  margin-top: -1px;
}
.includes-card li.sub-item {
  padding-left: 0;
  font-size: 0.83rem;
}
.includes-card.yes li.sub-item::before { content: '–'; color: var(--stone); font-size: 0.9rem; }

/* === EXPLORE MORE DESTINATIONS === */
.explore-more {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.explore-more .section-intro {
  margin-bottom: clamp(32px, 4vw, 48px);
}
.explore-google-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.explore-card {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(15,34,54,0.09);
  border: 1px solid rgba(28,58,94,0.07);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  text-decoration: none;
  color: var(--ink);
}
.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(15,34,54,0.14);
}
.explore-card-img {
  width: 280px;
  min-width: 280px;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.explore-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-expo);
}
.explore-card:hover .explore-card-img img { transform: scale(1.06); }
.explore-card-body {
  padding: 24px 28px 24px 0;
  flex: 1;
}
.explore-card-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.explore-card-body h3 {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.explore-card-body p {
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 16px;
}
.explore-card-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--fjord);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.explore-card:hover .explore-card-cta { gap: 10px; }

/* === GOOGLE REVIEWS === */
.google-reviews-section {
  padding: clamp(56px, 7vw, 80px) var(--gutter);
  text-align: center;
}
.google-reviews-section .section-intro {
  margin-bottom: 32px;
}
.google-reviews-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 28px 40px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(28,58,94,0.08);
  box-shadow: 0 4px 20px rgba(15,34,54,0.08);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.google-reviews-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15,34,54,0.14);
}
.google-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.google-logo-svg {
  width: 80px;
  height: auto;
}
.google-reviews-stars {
  font-size: 1.5rem;
  color: #F5A623;
  letter-spacing: 3px;
  line-height: 1;
}
.google-reviews-score {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.google-reviews-label {
  font-size: 0.82rem;
  color: var(--stone);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.google-reviews-cta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fjord);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Dark variant */
.section-dark .google-reviews-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.1);
}
.section-dark .google-reviews-score { color: var(--white); }
.section-dark .google-reviews-label { color: rgba(255,255,255,0.6); }
.section-dark .google-reviews-cta { color: rgba(255,255,255,0.75); }

/* === MOBILE BOOKING BOTTOM SHEET === */
.mobile-booking-sheet { display: none; }
.mbs-backdrop {
  position: fixed; inset: 0;
  background: rgba(15,34,54,0.45);
  z-index: 449;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.mbs-backdrop.is-visible { opacity: 1; pointer-events: auto; }

@media (max-width: 1024px) {
  /* Ocultar booking card del sidebar — lo reemplaza el bottom sheet */
  .trip-sidebar .booking-card { display: none; }
  /* Espacio para que el footer no quede tapado por el sheet */
  body { padding-bottom: 120px; }

  .mobile-booking-sheet {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 450;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -6px 48px rgba(15,34,54,0.20);
    transform: translateY(calc(100% - 78px));
    transition: transform 0.45s cubic-bezier(0.32,0.72,0,1);
    will-change: transform;
    max-height: 88vh;
    overflow: hidden;
  }
  .mobile-booking-sheet.is-expanded {
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Handle (zona de arrastre) */
  .mbs-handle-zone {
    padding: 12px 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }
  .mbs-handle-zone:active { cursor: grabbing; }
  .mbs-handle-pill {
    width: 38px; height: 4px;
    background: rgba(28,58,94,0.16);
    border-radius: 2px;
  }

  /* Fila peek (precio + botón rápido) */
  .mbs-peek-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 20px 14px;
    cursor: pointer;
  }
  .mbs-peek-price {
    font-family: var(--ff-display);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.1;
  }
  .mbs-peek-note {
    font-size: 0.68rem;
    color: var(--stone);
    margin-top: 3px;
  }
  .mbs-peek-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    background: var(--fjord);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 3px 14px rgba(28,58,94,0.28);
  }
  .mbs-peek-cta:active { transform: scale(0.97); }

  /* Separador */
  .mbs-divider {
    height: 1px;
    background: rgba(28,58,94,0.08);
    margin: 0 20px;
  }

  /* Contenido completo */
  .mbs-full {
    padding: 20px 20px 8px;
  }
  .mbs-dates-label {
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 10px;
  }
  .mbs-date-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(28,58,94,0.06);
    font-size: 0.88rem;
    color: var(--ink);
  }
  .mbs-date-row:last-child { border-bottom: none; }
  .mbs-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .mbs-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .mbs-note {
    font-size: 0.74rem;
    color: var(--stone);
    text-align: center;
    margin-top: 12px;
    padding-bottom: 20px;
  }
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  background: #25D366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s var(--ease-out-expo),
              box-shadow 0.3s;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 1024px) {
  /* Sube el botón de WhatsApp por encima del bottom sheet */
  .wa-float { bottom: 136px; right: 16px; }
}

/* === FORM MODAL === */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.form-modal[hidden] { display: none; }
.form-modal-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,20,40,0.75) 0%, rgba(20,45,80,0.65) 100%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.form-modal-card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: clamp(28px, 5vw, 48px);
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 32px 96px rgba(8,20,40,0.4);
  animation: modal-in 0.38s cubic-bezier(0.32, 0.72, 0, 1) both;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(28px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
/* Móvil: el modal sube desde abajo como un sheet */
@media (max-width: 640px) {
  .form-modal {
    align-items: flex-end;
    padding: 0;
  }
  .form-modal-card {
    border-radius: 22px 22px 0 0;
    max-width: 100%;
    max-height: 88vh;
    padding: 28px 20px 36px;
  }
}
.form-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: none;
  background: rgba(28,58,94,0.07);
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.form-modal-close:hover { background: rgba(28,58,94,0.15); color: var(--ink); }
.form-modal-title {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--ink);
  margin: 10px 0 6px;
  line-height: 1.2;
}
.form-modal-sub {
  color: var(--stone);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* === CONTACT FORM SECTION === */
.contact-section {
  padding: var(--section-pad) var(--gutter);
  background: var(--cream);
}
.contact-inner {
  max-width: 580px;
  margin: 0 auto;
}
.contact-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  margin: 12px 0 16px;
  line-height: 1.15;
}
.contact-intro {
  color: var(--stone);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
/* Formulario */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cf-field > label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--ink);
  text-transform: uppercase;
}
.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"] {
  padding: 14px 18px;
  border: 1.5px solid rgba(28,58,94,0.16);
  border-radius: 10px;
  font-size: 1rem;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.cf-field input:focus {
  border-color: var(--fjord);
  box-shadow: 0 0 0 3px rgba(28,58,94,0.09);
}
.cf-field input.cf-error {
  border-color: #d94040;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.1);
}
/* Checkboxes destino */
.cf-destinations {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cf-dest-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid rgba(28,58,94,0.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s, background 0.15s;
  user-select: none;
  -webkit-user-select: none;
}
.cf-dest-opt:hover { border-color: rgba(28,58,94,0.3); }
.cf-dest-opt input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--fjord);
  flex-shrink: 0;
  cursor: pointer;
}
.cf-dest-opt span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 500;
}
.cf-dest-opt:has(input:checked) {
  border-color: var(--fjord);
  background: rgba(28,58,94,0.04);
}
.cf-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  margin-top: 6px;
  border-radius: 12px;
}
.cf-disclaimer {
  font-size: 0.76rem;
  color: var(--stone);
  text-align: center;
  margin-top: -6px;
}
/* Estado éxito */
.cf-success {
  text-align: center;
  padding: 48px 20px;
}
.cf-success-icon {
  width: 60px; height: 60px;
  background: rgba(28,58,94,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--fjord);
  margin: 0 auto 20px;
}
.cf-success h3 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.cf-success p { color: var(--stone); }
/* Separador + botón WhatsApp */
.contact-wa-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 32px 0 16px;
  color: var(--stone);
  font-size: 0.8rem;
  white-space: nowrap;
}
.contact-wa-divider::before,
.contact-wa-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(28,58,94,0.12);
}
.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
.contact-wa-btn:hover { background: #1da851; transform: translateY(-2px); }
.contact-wa-btn svg { flex-shrink: 0; }

/* === ACCORDION ITINERARY === */
.accordion-day {
  border: 1px solid rgba(28,58,94,0.1);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.accordion-day:hover {
  box-shadow: 0 4px 24px rgba(28,58,94,0.09);
  border-color: rgba(28,58,94,0.18);
}
.accordion-day.open {
  box-shadow: 0 6px 32px rgba(28,58,94,0.11);
  border-color: rgba(28,58,94,0.2);
}
.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.accordion-header:hover { background: rgba(28,58,94,0.02); }
.accordion-title { flex: 1; min-width: 0; }
.accordion-title h3 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.25;
}
.accordion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.accordion-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--stone);
  transition: transform 0.3s ease, color 0.2s;
}
.accordion-day.open .accordion-chevron {
  transform: rotate(180deg);
  color: var(--fjord);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.accordion-body-inner {
  padding: 4px 22px 22px;
  border-top: 1px solid rgba(28,58,94,0.07);
}
.accordion-body-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--stone);
  margin: 14px 0 16px;
}
.accordion-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}
.accordion-photos.three-cols { grid-template-columns: repeat(3, 1fr); }
.accordion-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .dest-layout { grid-template-columns: 1fr; }
  .dest-layout-reverse { direction: ltr; }
  .dest-layout-reverse .dest-media { order: -1; }
  .delfin-layout { grid-template-columns: 1fr; max-width: 640px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: 1fr; gap: 40px; max-width: 340px; }
  .trip-layout { grid-template-columns: 1fr; }
  .trip-sidebar { position: static; }
  .nosotros-layout { grid-template-columns: 1fr; }
  .dest-cards-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .fechas-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .includes-refined { grid-template-columns: 1fr; }
  .trip-gallery-strip { grid-template-columns: 1fr 1fr; }
  .trip-gallery-strip img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
  .explore-card { flex-direction: column; max-width: 440px; }
  .explore-card-img { width: 100%; min-width: unset; height: 220px; }
  .explore-card-body { padding: 20px 20px 24px; }
  .explore-google-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: stretch;
  }
  .explore-google-grid .google-reviews-badge {
    order: -1;
    align-self: center;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .nav-links + .btn { display: none; }
  .nav-burger { display: flex; }

  /* gallery-masonry removed — now gallery-3d-section */
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
  .dest-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  body { cursor: auto; }
  #cursor-dot, #cursor-follower { display: none; }
  /* gallery-masonry removed — now gallery-3d-section */
  .testimonios-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* === STATS COMPACTO + GOOGLE REVIEWS (dos columnas) === */
.stats-compact { padding-top: clamp(48px,6vw,80px) !important; padding-bottom: clamp(48px,6vw,80px) !important; }

.stats-two-col {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
}
.stats-left { flex: 1; min-width: 0; }
.stats-left .section-intro { text-align: left; margin: 0 0 clamp(24px,3vw,36px) 0; }
.stats-left .section-intro h2 { font-size: clamp(1.6rem,3vw,2.4rem); color: var(--ink); line-height: 1.2; margin: 0; }
.stats-left .stats-grid { justify-content: flex-start; max-width: none; margin: 0 0 clamp(20px,2.5vw,32px); text-align: left; }
.stats-left .stat-item { text-align: left; }
.stats-left .stat-number-wrap { justify-content: flex-start; font-size: clamp(1.8rem,3.5vw,2.6rem); }
.stats-left .stat-number { color: var(--fjord); }
.stats-left .stat-suffix { color: var(--fjord); }
.stats-left .stat-label { color: var(--stone); font-size: 0.82rem; margin: 0; }
.stats-left .stats-text { color: var(--stone); font-size: 0.9rem; text-align: left; max-width: none; margin: 0; }

.stats-right {
  flex: 0 0 240px;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 6px 32px rgba(15,34,54,0.08);
  border: 1px solid rgba(28,58,94,0.07);
}
.google-block-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.google-block-logo { width: 110px; height: auto; }
.google-block-stars { font-size: 1.5rem; color: #F5A623; letter-spacing: 3px; line-height: 1; }
.google-block-score {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--fjord);
  line-height: 1;
}
.google-block-label { font-size: 0.82rem; color: var(--stone); text-align: center; line-height: 1.4; }
.google-block-cta { font-size: 0.82rem; font-weight: 600; color: var(--fjord); text-decoration: underline; text-underline-offset: 3px; }
.google-block-link:hover .google-block-cta { color: var(--terra); }

@media (max-width: 700px) {
  .stats-two-col { flex-direction: column; }
  .stats-right { width: 100%; flex: none; }
  .stats-left .section-intro,
  .stats-left .stats-grid,
  .stats-left .stat-item,
  .stats-left .stat-number-wrap,
  .stats-left .stat-label,
  .stats-left .stats-text { text-align: left; justify-content: flex-start; }
}

/* === GOOGLE REVIEWS INLINE (dentro de testimonios) === */
.google-inline-strip {
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: center;
}
.google-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 14px;
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out-expo);
  text-decoration: none;
}
.google-inline-link:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.google-inline-logo { width: 72px; height: auto; }
.google-inline-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.1);
}
.google-inline-stars {
  color: #FBBC05;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.google-inline-score {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.google-inline-label {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.04em;
}
.google-inline-cta {
  font-size: 0.78rem;
  color: var(--fjord);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* === FECHAS MINIMAL (diseño elegante) === */
.fechas-minimal-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  max-width: 920px;
  margin: 0 auto;
}
.fechas-minimal-divider {
  background: rgba(255,255,255,0.07);
  margin: 0 16px;
}
.fechas-minimal-col {
  padding: 0 48px;
}
.fechas-minimal-col:first-child { padding-left: 0; }
.fechas-minimal-col:last-child  { padding-right: 0; }
.fechas-minimal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.fechas-minimal-header h3 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 5px;
}
.fechas-minimal-header p {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fechas-minimal-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
}
.fechas-minimal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}
.fechas-minimal-row:first-child {
  border-top: 1px solid rgba(255,255,255,0.055);
}
.fechas-minimal-date {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.fechas-minimal-status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.fechas-minimal-status.status-available { color: #7FC99B; }
.fechas-minimal-status.status-full      { color: rgba(255,255,255,0.2); text-decoration: line-through; }
.fechas-minimal-status.status-forming   { color: #E8C97A; }
.fechas-minimal-cta {
  display: inline-block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.fechas-minimal-cta:hover { color: var(--white); }

/* Fechas en sección light — cols como tarjetas navy */
.section-light .fechas-minimal-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
.section-light .fechas-minimal-divider { display: none; }
.section-light .fechas-minimal-col {
  background: var(--fjord-dark);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
}
.section-light .fechas-minimal-list { flex: 1; }
.section-light .fechas-minimal-col:first-child { padding-left: 44px; }
.section-light .fechas-minimal-col:last-child  { padding-right: 44px; }
.section-light #fechas-noruega .section-intro h2 { color: var(--ink); }
.section-light #fechas-noruega .section-intro p { color: var(--stone); }
.section-light .fechas-minimal-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 11px 22px;
  background: var(--white);
  color: var(--fjord);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 1;
  transition: background 0.2s, color 0.2s;
}
.section-light .fechas-minimal-cta:hover { background: rgba(255,255,255,0.85); }

@media (max-width: 860px) {
  .fechas-minimal-grid {
    grid-template-columns: 1fr;
  }
  .fechas-minimal-divider { display: none; }
  .fechas-minimal-col { padding: 0; margin-bottom: 48px; }
  .fechas-minimal-col:last-child { margin-bottom: 0; }
}
