/* ============================================================
   SWIMMING PIGS TOUR · Tours by David · styles.css
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --primary:           #00677d;
  --primary-container: #00b4d8;
  --on-primary:        #ffffff;
  --secondary:         #006a60;
  --tertiary:          #9b4500;
  --tertiary-container:#f8873d;
  --background:        #fbf9f5;
  --surface:           #ffffff;
  --surface-low:       #f5f3ef;
  --surface-variant:   #e4e2de;
  --outline:           #bcc9ce;
  --on-surface:        #1b1c1a;
  --on-surface-muted:  #3d494d;
  --shadow-sm:         0 2px 8px rgba(0,103,125,.10);
  --shadow-md:         0 6px 24px rgba(0,103,125,.14);
  --shadow-lg:         0 16px 48px rgba(0,103,125,.18);
  --radius-sm:         8px;
  --radius-md:         16px;
  --radius-lg:         24px;
  --radius-xl:         32px;
  --font-display:      'Playfair Display', Georgia, serif;
  --font-body:         'Montserrat', system-ui, sans-serif;
  --transition:        .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }

/* ── Utilities ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 64px);
}
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-container);
  display: block;
  margin-bottom: 10px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--on-surface);
}
.section-heading.center { text-align: center; }
.section-sub {
  font-size: 16px;
  color: var(--on-surface-muted);
  margin-top: 10px;
  max-width: 560px;
}
.section-sub.center { text-align: center; margin-inline: auto; }
.section-intro { margin-bottom: clamp(40px, 6vw, 72px); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary-container);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,180,216,.35);
}
.btn-primary:hover {
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(0,103,125,.40);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--on-surface-muted);
  font-weight: 500;
  font-size: 14px;
}
.btn-ghost:hover { color: var(--primary); }

.btn-large { padding: 16px 36px; font-size: 15px; }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(251,249,245,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  justify-content: flex-start;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

.main-nav {
  display: flex;
  gap: 2px;
  margin-left: auto;
  flex-shrink: 1;
  min-width: 0;
}
.main-nav a {
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--on-surface-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--primary);
  background: rgba(0,103,125,.08);
}

.header-cta { flex-shrink: 0; }

.translate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 100px;
  border: 1.5px solid var(--outline);
  background: var(--surface-low);
  color: var(--on-surface-muted);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  flex-shrink: 0;
  order: 2;
}
.translate-btn:hover {
  border-color: var(--primary-container);
  color: var(--primary);
  background: rgba(0,180,216,.06);
}
.translate-label { line-height: 1; }

.goog-te-banner-frame, .skiptranslate { display: none !important; }
body { top: 0 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 48px;
  min-height: 48px;
  padding: 12px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--surface-low); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Panel deslizante desde la derecha (móvil) ── */
/* Overlay oscuro detrás del panel — solo decorativo */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9990;
  pointer-events: none;
}
.mobile-menu-overlay.active { display: block; }

/* Panel deslizante del menú móvil */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  height: 100dvh;
  z-index: 9999;
  background: #ffffff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 48px;
  transform: translateX(110%);
  transition: transform .35s ease;
  box-shadow: -4px 0 24px rgba(0,0,0,.2);
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Cabecera del panel: logo + botón cerrar */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1;
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: #1a1a1a;
  transition: background .15s;
  flex-shrink: 0;
}
.mobile-menu-close:hover { background: #e8e8e8; }
.mobile-menu-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}
.mobile-link {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,103,125,.15);
  cursor: pointer;
}
.mobile-link:hover { background: #f8f8f8; color: var(--primary); }
.mobile-cta {
  display: block;
  margin: 20px 20px 0;
  text-align: center;
  background: var(--primary);
  color: #fff !important;
  border-radius: 40px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 700;
  border-bottom: none;
  text-decoration: none;
}
.mobile-cta:hover { background: #005f73 !important; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(56px, 8vw, 96px);
  padding-top: 72px;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-bg {
  width: 100%;
  height: 100%;
  background-image: url('hero-beach.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08) translateY(0px);
  will-change: transform;
  transition: transform .05s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,20,30,.88) 0%,
    rgba(0,20,30,.50) 45%,
    rgba(0,20,30,.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(248,135,61,.18);
  border: 1px solid rgba(248,135,61,.4);
  color: #ffb68d;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  width: fit-content;
  animation: fadeSlideUp .7s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #f8873d;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero-text-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeSlideUp .7s .1s ease both;
  width: 100%;
}

.hero-phrases {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  flex-wrap: wrap;
}
.hero-phrase {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 42px);
  font-style: italic;
  font-weight: 600;
  color: var(--primary-container);
  letter-spacing: .02em;
  white-space: nowrap;
  text-shadow: 2px 2px 8px rgba(0,0,0,.7);
}
.hero-phrase-sep {
  font-size: clamp(20px, 2.5vw, 34px);
  color: rgba(255,255,255,.5);
  font-weight: 300;
  line-height: 1;
  text-shadow: 1px 1px 6px rgba(0,0,0,.6);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0,0,0,.75);
  white-space: nowrap;
}
.hero-title em {
  font-style: italic;
  color: var(--primary-container);
  text-shadow: 2px 2px 10px rgba(0,0,0,.75);
}

@media (max-width: 768px) {
  .hero-title { white-space: normal; }
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,.92);
  max-width: 80%;
  text-align: center;
  line-height: 1.65;
  text-shadow: 1px 1px 6px rgba(0,0,0,.65);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  animation: fadeSlideUp .7s .3s ease both;
}

.btn-outline-white {
  background: transparent;
  text-shadow: 1px 1px 4px rgba(0,0,0,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
  animation: fadeSlideUp .7s .4s ease both;
  width: fit-content;
  padding: 10px 20px;
}
.stat { display: flex; flex-direction: column; padding-inline: 16px; }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 11px; color: rgba(255,255,255,.7); font-weight: 500; margin-top: 3px; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,.2); flex-shrink: 0; }

.scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
  opacity: .7;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── About ───────────────────────────────────────────────── */
.about-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background-image: url('pig-beach-scene.jpg');
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface);
  white-space: nowrap;
  border: 1px solid var(--outline);
}
.float-icon { font-size: 24px; }

.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-body { font-size: 16px; color: var(--on-surface-muted); line-height: 1.75; }

.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
}
.feature-item span {
  font-size: 13px;
  color: var(--on-surface-muted);
}

/* ── Calendar ────────────────────────────────────────────── */
.calendar-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface-low);
}

.calendar-widget {
  max-width: 560px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--outline);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cal-month-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
  text-transform: capitalize;
}
.cal-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--on-surface-muted);
  transition: background var(--transition), color var(--transition);
}
.cal-nav:hover { background: var(--surface-low); color: var(--primary); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}
.cal-weekdays span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--on-surface-muted);
  padding: 6px 0;
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid transparent;
  position: relative;
}
.cal-day:hover:not(.cal-day--empty):not(.cal-day--past):not(.cal-day--full) {
  transform: scale(1.08);
}
.cal-day--empty { cursor: default; }
.cal-day--past { color: var(--outline); cursor: not-allowed; }
.cal-day--available { color: var(--primary); }
.cal-day--available:hover { background: rgba(0,180,216,.12); }
.cal-day--limited { color: var(--tertiary); }
.cal-day--limited:hover { background: rgba(155,69,0,.10); }
.cal-day--full { color: #aaa; cursor: not-allowed; text-decoration: line-through; }
.cal-day--selected {
  background: var(--primary-container) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 4px 12px rgba(0,180,216,.4);
}
.cal-day--today { border-color: var(--outline); }

.cal-dot-indicator {
  position: absolute;
  bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
}
.cal-day--available .cal-dot-indicator { background: var(--primary-container); }
.cal-day--limited .cal-dot-indicator { background: var(--tertiary-container); }

.cal-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.cal-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--on-surface-muted);
}
.cal-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.cal-dot.available { background: var(--primary-container); }
.cal-dot.limited { background: var(--tertiary-container); }
.cal-dot.full { background: #ccc; }

.cal-selected-info {
  margin-top: 24px;
  padding: 20px;
  background: var(--surface-low);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-container);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cal-selected-info p {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 520px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-container);
}

.pricing-card--featured {
  border-color: var(--primary-container);
  background: linear-gradient(160deg, rgba(0,180,216,.04) 0%, var(--surface) 60%);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-container);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-icon { font-size: 32px; }
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--on-surface);
}
.plan-desc {
  font-size: 14px;
  color: var(--on-surface-muted);
  line-height: 1.6;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--outline);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-unit { font-size: 14px; color: var(--on-surface-muted); }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--on-surface);
}

.plan-features--plain { gap: 12px; }
.plan-features--plain li {
  display: block;
  font-size: 14px;
  color: var(--on-surface-muted);
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--primary-container);
}
.plan-feature-disabled { color: var(--outline); }
.check { color: var(--primary-container); font-weight: 800; }
.cross { color: var(--outline); font-weight: 700; }

.plan-cta { margin-top: auto; }
.pricing-card--featured .plan-cta { box-shadow: 0 6px 20px rgba(0,180,216,.30); }

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--on-surface-muted);
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface-low);
}

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

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}
.testi-text {
  font-size: 15px;
  color: var(--on-surface-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-container), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--on-surface);
  font-style: normal;
}
.testi-origin { font-size: 12px; color: var(--on-surface-muted); }

.testi-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--outline);
  transition: transform var(--transition), box-shadow var(--transition);
  max-width: 480px;
  margin-inline: auto;
}
.testi-photo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testi-photo-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.testi-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-photo-caption {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.testi-photo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--on-surface);
}
.testi-photo-meta {
  font-size: 13px;
  color: var(--on-surface-muted);
  letter-spacing: .02em;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface);
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--outline);
}

.faq-item { border-bottom: 1px solid var(--outline); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--surface);
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-surface);
  transition: background var(--transition), color var(--transition);
}
.faq-question:hover { background: var(--surface-low); color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); background: rgba(0,180,216,.05); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px 20px;
  background: rgba(0,180,216,.03);
  animation: fadeIn .25s ease;
}
.faq-answer p {
  font-size: 14px;
  color: var(--on-surface-muted);
  line-height: 1.75;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-map-figure {
  margin: 16px 0 4px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--outline);
}
.faq-map-iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  object-fit: cover;
  object-position: center 40%;
}
.faq-map-caption {
  font-size: 12px;
  color: var(--on-surface-muted);
  padding: 8px 12px;
  background: var(--surface-low);
}

/* ── CTA Final ───────────────────────────────────────────── */
.cta-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: linear-gradient(135deg, var(--primary) 0%, #005566 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Ccircle fill='%23ffffff' fill-opacity='0.04' cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,.75); margin-top: 12px; max-width: 480px; }

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}
.cta-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 800;
}
.cta-btn:hover { background: rgba(255,255,255,.9); box-shadow: 0 8px 32px rgba(0,0,0,.25); }
.cta-btn-secondary { color: rgba(255,255,255,.8); }
.cta-btn-secondary:hover { color: #fff; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #00677d;
  color: rgba(255,255,255,.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 80px);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { color: #fff; }
.footer-logo .logo-text { color: #fff; }
.footer-tagline { font-size: 13px; line-height: 1.7; }

.footer-social { display: flex; gap: 12px; margin-top: 4px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--primary-container); color: #fff; }

.footer-nav { display: contents; }
.footer-col h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.88);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--primary-container); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 20px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── WhatsApp FAB ────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 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 6px 20px rgba(37,211,102,.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37,211,102,.55);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card { padding: 28px 24px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .stat-divider { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 4/3; }
  .about-badge-float { bottom: 16px; right: 16px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-stats .stat { align-items: center; }
  .cal-day { font-size: 12px; }
  .about-badge-float { display: none; }
}


/* ── Itinerary prose (Your Perfect Day) ─────────────────── */
.itin-prose {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  gap: 0;
}

.itin-step {
  text-align: center;
  padding: 14px 8px;
}

.itin-step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.itin-emoji {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.itin-step-header em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
}

.itin-step-body {
  font-size: 13.5px;
  color: var(--on-surface-muted);
  line-height: 1.75;
  max-width: 400px;
  margin-inline: auto;
}

.itin-sep {
  text-align: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--primary-container);
  opacity: .45;
  line-height: 1;
  padding: 2px 0;
  user-select: none;
  pointer-events: none;
}

/* ── Rentals ─────────────────────────────────────────────── */
.rentals-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface-low);
}

.rental-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.rental-hero-grid--three {
  grid-template-columns: 1fr 1fr 1fr;
}
.rental-hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition), box-shadow var(--transition);
}
.rental-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.rental-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,15,20,.92) 0%,
    rgba(0,15,20,.65) 50%,
    rgba(0,15,20,.20) 100%
  );
  pointer-events: none;
}
.rental-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(20px, 3vw, 32px);
}
.rental-hero-top { margin-bottom: auto; }
.rental-hero-badge {
  display: inline-block;
  background: rgba(0,180,216,.25);
  border: 1px solid rgba(0,180,216,.5);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}
.rental-hero-body { display: flex; flex-direction: column; gap: 12px; }
.rental-hero-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.rental-hero-desc {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.rental-hero-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.rental-hero-from {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
.rental-hero-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-container);
  line-height: 1;
  transition: all .2s ease;
}
.rental-hero-unit {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

.rental-duration-picker--hero .rental-duration-title { color: rgba(255,255,255,.65); }
.rental-duration-picker--hero .duration-pill {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
}
.rental-duration-picker--hero .duration-pill:hover {
  border-color: var(--primary-container);
  background: rgba(0,180,216,.20);
}
.rental-duration-picker--hero .duration-option--active .duration-pill,
.rental-duration-picker--hero .duration-option input:checked + .duration-pill {
  background: rgba(0,180,216,.25);
  border-color: var(--primary-container);
}
.rental-duration-picker--hero .duration-time { color: rgba(255,255,255,.75); }
.rental-duration-picker--hero .duration-option--active .duration-time,
.rental-duration-picker--hero .duration-option input:checked + .duration-pill .duration-time { color: #fff; }
.rental-duration-picker--hero .duration-price { color: #fff; }

.rental-combo-note--hero {
  background: rgba(248,135,61,.15);
  border-color: rgba(248,135,61,.35);
  color: rgba(255,255,255,.85);
}
.rental-combo-note--hero strong { color: #ffb68d; }

.rental-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.rental-hero-btn-primary { background: var(--primary-container); color: #fff; flex: 1; min-width: 140px; }
.rental-hero-btn-primary:hover { background: var(--primary); }
.rental-hero-btn-secondary { flex: 1; min-width: 120px; font-size: 13px; }

/* Buggy: grid de botones de precio/duración */
.buggy-price-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.buggy-price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .2s, border-color .2s, transform .15s;
  backdrop-filter: blur(4px);
}
.buggy-price-btn:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
  transform: translateY(-2px);
}
.buggy-price-btn--featured {
  grid-column: 1 / -1;
  background: var(--primary-container);
  border-color: var(--primary-container);
}
.buggy-price-btn--featured:hover { background: var(--primary); border-color: var(--primary); }

/* Variante para tarjetas de fondo claro (Scooter, Polaris, etc.) */
.buggy-price-btn--dark {
  background: var(--surface-low);
  border-color: var(--outline);
  color: var(--on-surface);
}
.buggy-price-btn--dark:hover {
  background: rgba(0,180,216,.1);
  border-color: var(--primary-container);
  color: var(--primary);
}

@media (max-width: 400px) {
  .buggy-price-btns { grid-template-columns: 1fr; }
  .buggy-price-btn--featured { grid-column: span 1; }
}

.rentals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.rental-card {
  background: var(--surface);
  border: 2px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.rental-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-container);
}
.rental-card-header { display: flex; align-items: flex-start; gap: 16px; }
.rental-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.rental-card-header > div:nth-child(2) { flex: 1; }
.rental-name {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 600;
  color: var(--on-surface); line-height: 1.2;
}
.rental-desc { font-size: 13px; color: var(--on-surface-muted); margin-top: 4px; line-height: 1.5; }
.rental-price-display { flex-shrink: 0; text-align: right; }
.rental-price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--primary); line-height: 1;
  transition: all .2s ease;
}
.rental-price-unit { display: block; font-size: 12px; color: var(--on-surface-muted); margin-top: 2px; }

.rental-duration-picker { border: none; padding: 0; }
.rental-duration-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--on-surface-muted); margin-bottom: 10px; display: block;
}
.rental-duration-options { display: flex; flex-wrap: wrap; gap: 8px; }
.duration-option { cursor: pointer; }
.duration-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.duration-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 14px; border-radius: var(--radius-md);
  border: 2px solid var(--outline); background: var(--surface);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  min-width: 80px;
}
.duration-pill:hover { border-color: var(--primary-container); transform: translateY(-1px); }
.duration-option--active .duration-pill,
.duration-option input:checked + .duration-pill {
  border-color: var(--primary-container); background: rgba(0,180,216,.10);
}
.duration-time { font-size: 12px; font-weight: 600; color: var(--on-surface-muted); }
.duration-option--active .duration-time,
.duration-option input:checked + .duration-pill .duration-time { color: var(--primary); }
.duration-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--on-surface); }
.duration-option--active .duration-price,
.duration-option input:checked + .duration-pill .duration-price { color: var(--primary); }
.duration-pill--full { background: rgba(0,103,125,.05); }
.duration-option input:checked + .duration-pill--full { background: rgba(0,180,216,.12); }

.rental-combo-note {
  font-size: 13px; color: var(--on-surface-muted);
  background: rgba(248,135,61,.08); border: 1px solid rgba(248,135,61,.25);
  border-radius: var(--radius-sm); padding: 10px 14px; line-height: 1.5;
}
.rental-combo-note strong { color: var(--tertiary); }
.rental-cta { margin-top: auto; }

@media (max-width: 768px) {
  .rental-hero-grid,
  .rental-hero-grid--three { grid-template-columns: 1fr; }
  .rental-hero-card { min-height: 460px; }
  .rentals-grid { grid-template-columns: 1fr; }
  .rental-hero-actions { flex-direction: column; }
  .rental-hero-btn-primary,
  .rental-hero-btn-secondary { width: 100%; min-width: unset; }
  .rental-duration-options { gap: 6px; }
  .duration-pill { min-width: 70px; padding: 8px 10px; }
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
}
.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ── Price pop animation ────────────────────────────────────── */
.price-pop {
  transform: scale(1.18) !important;
  transition: transform .12s ease !important;
}
.rental-hero-amount {
  transition: transform .2s ease, color .2s ease;
}

/* ── Escape bar ───────────────────────────────────────────── */
.escape-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--outline);
  padding-block: clamp(36px, 5vw, 56px);
}
.escape-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.escape-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.escape-question {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 22px);
  color: var(--on-surface);
}
.escape-question em {
  font-style: italic;
  font-weight: 500;
}
.escape-sep {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--primary-container);
  opacity: .5;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.escape-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.escape-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}
.escape-text {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--on-surface-muted);
  line-height: 1.75;
}

/* ── Why David section ───────────────────────────────────── */
.why-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: linear-gradient(160deg, rgba(0,103,125,.04) 0%, var(--surface) 60%);
}

.vs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.vs-card {
  background: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: var(--radius-xl);
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.vs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-container);
}

.vs-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.vs-col--ours  { color: var(--primary); }
.vs-col--theirs { color: var(--on-surface-muted); }

.vs-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,180,216,.12);
  border: 2px solid var(--primary-container);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-container);
  flex-shrink: 0;
  line-height: 1;
}
.vs-cross {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,.04);
  border: 2px solid var(--outline);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #bbb;
  flex-shrink: 0;
  line-height: 1;
}
.vs-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.vs-col--ours  .vs-label { color: var(--on-surface); }
.vs-col--theirs .vs-label { color: var(--on-surface-muted); text-decoration: line-through; text-decoration-color: rgba(0,0,0,.2); }

.vs-badge {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary-container);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,180,216,.35);
}

.moments-gallery {
  border-top: 1px solid var(--outline);
  padding-top: 40px;
}
.moments-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--on-surface);
  text-align: center;
  margin-bottom: 24px;
}
.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.moment-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface-variant);
}
.moment-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.moment-item:hover img { transform: scale(1.05); }

.moment-item--video video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.moment-item--video:hover video { transform: scale(1.05); }

@media (max-width: 640px) {
  .vs-grid { grid-template-columns: 1fr; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .moments-grid { grid-template-columns: 1fr; }
  .vs-card { gap: 8px; }
  .vs-label { font-size: 12px; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .vs-grid { grid-template-columns: 1fr; }
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface-low);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--surface-variant);
  border: none;
  padding: 0;
  display: block;
  aspect-ratio: 4/3;
}
.gallery-item--large,
.gallery-item--tall {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  display: block;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.06);
}
.gallery-item:focus-visible {
  outline: 3px solid var(--primary-container);
  outline-offset: 3px;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,20,30,.85) 0%, rgba(0,20,30,.0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus-visible .gallery-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(.7);
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: transform var(--transition), background var(--transition);
}
.gallery-item:hover .gallery-zoom-icon {
  transform: translate(-50%,-50%) scale(1);
  background: rgba(255,255,255,.28);
}
.gallery-caption {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-overlay { opacity: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  transition: opacity .15s ease;
  user-select: none;
}
.lb-caption { display: none; }
.lb-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.lb-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) translateX(-3px); }
.lb-next:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) translateX(3px); }

@media (max-width: 600px) {
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-img { max-height: 70vh; }
}

.cal-nav:disabled {
  opacity: .3;
  cursor: not-allowed;
}
.cal-nav:disabled:hover {
  background: none;
  color: var(--on-surface-muted);
}

/* ── Experiences ─────────────────────────────────────────── */
.experiences-section {
  padding-block: clamp(56px, 9vw, 100px);
  background: var(--surface-low);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.exp-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--outline);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition:
    transform .3s cubic-bezier(.4,0,.2,1),
    box-shadow .3s cubic-bezier(.4,0,.2,1),
    border-color .3s ease;
  position: relative;
}
.exp-card:hover,
.exp-card:focus-visible {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,103,125,.18);
  border-color: var(--primary-container);
  outline: none;
}
.exp-card:focus-visible {
  outline: 3px solid var(--primary-container);
  outline-offset: 2px;
}

.exp-card-img {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform .5s ease;
}
.exp-card:hover .exp-card-img {
  transform: scale(1.04);
}
.exp-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.05) 0%, rgba(0,0,0,.35) 100%);
}

.exp-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.exp-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
}
.exp-badge--tour {
  background: rgba(0,180,216,.12);
  color: var(--primary);
  border: 1px solid rgba(0,180,216,.3);
}
.exp-badge--rental {
  background: rgba(248,135,61,.12);
  color: var(--tertiary);
  border: 1px solid rgba(248,135,61,.35);
}

.exp-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--on-surface);
  line-height: 1.25;
}
.exp-card-desc {
  font-size: 13px;
  color: var(--on-surface-muted);
  line-height: 1.5;
}

.exp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--outline);
}
.exp-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.exp-price-amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.exp-price-unit {
  font-size: 12px;
  color: var(--on-surface-muted);
  font-weight: 500;
}
.exp-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-container);
  white-space: nowrap;
  transition: gap .2s ease, color .2s ease;
}
.exp-card:hover .exp-card-cta {
  gap: 9px;
  color: var(--primary);
}

.exp-nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.exp-nav-btn {
  min-width: 220px;
  justify-content: center;
}

.exp-footer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-surface-muted);
  padding: 12px 24px;
  background: var(--surface);
  border-radius: 100px;
  border: 1px solid var(--outline);
  width: fit-content;
  margin-inline: auto;
}
.exp-trust-sep {
  color: var(--outline);
  font-weight: 400;
}

@keyframes sectionHighlight {
  0%   { box-shadow: 0 0 0 0 rgba(0,180,216,.0); }
  20%  { box-shadow: 0 0 0 6px rgba(0,180,216,.35); }
  100% { box-shadow: 0 0 0 0 rgba(0,180,216,.0); }
}
.section-highlight {
  animation: sectionHighlight 1.1s ease forwards;
  border-radius: var(--radius-xl);
}

@media (max-width: 640px) {
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card-img { height: 180px; }
  .exp-nav-buttons { flex-direction: column; align-items: stretch; }
  .exp-nav-btn { min-width: unset; width: 100%; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .exp-card-img { height: 160px; }
  .exp-price-amount { font-size: 24px; }
}

/* ── Booking Widget ──────────────────────────────────────── */
.booking-section {
  padding-block: clamp(64px, 10vw, 112px);
  padding-bottom: 120px;
  background: var(--surface-low);
}

.bk-widget {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--outline);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin-inline: auto;
  overflow: hidden;
}

.bk-section { padding: 24px; }

.bk-divider {
  height: 1px;
  background: var(--outline);
  margin: 0 24px;
}

.bk-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary-container);
  margin-bottom: 14px;
}

.bk-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bk-pkg-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: var(--radius-md);
  border: 2px solid var(--outline);
  background: var(--surface-low);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  font-family: var(--font-body);
  position: relative;
}
.bk-pkg-btn:hover { border-color: var(--primary-container); transform: translateY(-2px); }
.bk-pkg-btn.selected {
  border-color: var(--primary-container);
  background: rgba(0,180,216,.09);
}
.bk-pkg-star {
  font-size: 10px;
  font-weight: 700;
  color: #B45309;
  background: #FEF3C7;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 2px;
  white-space: nowrap;
}
.bk-pkg-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--on-surface);
}
.bk-pkg-btn.selected .bk-pkg-name { color: var(--primary); }
.bk-pkg-price {
  font-size: 12px;
  color: var(--on-surface-muted);
}
.bk-pkg-btn.selected .bk-pkg-price { color: var(--primary-container); font-weight: 700; }

.bk-date-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}
.bk-date-strip::-webkit-scrollbar { display: none; }

.bk-date-pill {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  border: 2px solid var(--outline);
  background: var(--surface-low);
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  min-width: 90px;
  font-family: var(--font-body);
}
.bk-date-pill:hover:not(:disabled) { border-color: var(--primary-container); transform: translateY(-2px); }
.bk-date-pill.selected { border-color: var(--primary-container); background: rgba(0,180,216,.09); }
.bk-date-pill:disabled { opacity: .4; cursor: not-allowed; }
.bk-pill-name { font-size: 14px; font-weight: 700; color: var(--on-surface); }
.bk-date-pill.selected .bk-pill-name { color: var(--primary); }

.bk-dot { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; }
.bk-dot--available { background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.18); }
.bk-dot--full      { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.15); }
.bk-dot--closed    { background: #9ca3af; }
.bk-dot--past      { background: #9ca3af; }

.bk-more-dates-btn {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-container);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: var(--font-body);
  display: block;
}

#bk-datepicker-wrap { margin-top: 14px; }
#bk-datepicker-wrap input[type="date"] {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--outline);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--on-surface);
  background: var(--surface-low);
  cursor: pointer;
}
#bk-datepicker-wrap input:focus {
  outline: none;
  border-color: var(--primary-container);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
}

.bk-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bk-time-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--outline);
  background: var(--surface-low);
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-body);
}
.bk-time-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.bk-time-btn.selected  { border-color: var(--primary-container); background: rgba(0,180,216,.09); }
.bk-time-btn:disabled  { opacity: .5; cursor: not-allowed; }
.bk-time-btn.time-full { border-color: #ef4444; background: rgba(239,68,68,.04); }
.bk-time-dot { width: 14px; height: 14px; border-radius: 50%; }
.bk-time-val { font-size: 20px; font-weight: 700; color: var(--on-surface); }
.bk-time-status { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }

.bk-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--outline);
}
.bk-counter-row:last-of-type { border-bottom: none; }
.bk-counter-label { display: block; font-size: 16px; font-weight: 700; color: var(--on-surface); }
.bk-counter-sub   { font-size: 12px; color: var(--on-surface-muted); margin-top: 2px; display: block; }
.bk-counter-ctrl  { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.bk-counter-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 2px solid var(--outline);
  background: var(--surface);
  font-size: 26px;
  font-weight: 300;
  color: var(--on-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color .15s, background .15s, color .15s;
  font-family: var(--font-body);
  touch-action: manipulation;
}
.bk-counter-btn:hover:not(:disabled) { border-color: var(--primary-container); background: rgba(0,180,216,.09); color: var(--primary); }
.bk-counter-btn:active:not(:disabled) { transform: scale(.93); }
.bk-counter-btn:disabled { opacity: .3; cursor: not-allowed; }

.bk-counter-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--on-surface);
  min-width: 38px;
  text-align: center;
}

.bk-under3 {
  font-size: 13px;
  color: var(--on-surface-muted);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--outline);
  text-align: center;
}

.bk-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 85;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -6px 24px rgba(0,0,0,.12);
}
.bk-breakdown { flex: 1; min-width: 0; }
.bk-breakdown-hint { font-size: 12px; color: var(--on-surface-muted); line-height: 1.4; }
.bk-breakdown strong { display: block; font-size: 19px; font-weight: 700; color: var(--on-surface); white-space: nowrap; }
.bk-breakdown small  { font-size: 12px; color: var(--on-surface-muted); }

.bk-cta-btn {
  flex-shrink: 0;
  background: #9ca3af;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
  touch-action: manipulation;
  white-space: nowrap;
}
.bk-cta-btn.ready { background: var(--primary-container); box-shadow: 0 6px 18px rgba(0,180,216,.4); }
.bk-cta-btn.ready:hover { background: var(--primary); transform: translateY(-2px); }
.bk-cta-btn:disabled { cursor: not-allowed; }
.bk-cta-sub { font-size: 11px; font-weight: 400; opacity: .85; }

@media (min-width: 768px) {
  .booking-section { padding-bottom: clamp(64px, 10vw, 112px); }
  .bk-cta-bar {
    position: static;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    max-width: 600px;
    margin: 16px auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .bk-breakdown { text-align: center; }
  .bk-breakdown-hint { font-size: 14px; }
  .bk-cta-btn { padding: 18px 32px; font-size: 16px; width: 100%; border-radius: 100px; }
}

@media (max-width: 480px) {
  .bk-pkg-grid { grid-template-columns: 1fr; }
  .bk-time-grid { grid-template-columns: 1fr; }
  .bk-counter-btn { width: 52px; height: 52px; }
}

/* ── Pricing cards ───────────────────────────────────────── */
.pcard {
  background: var(--surface);
  border: 1.5px solid var(--outline);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.pcard:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 36px rgba(0,103,125,.15);
}

.pcard--featured {
  border-color: #D97706;
  box-shadow: 0 8px 32px rgba(217,119,6,.20);
}
.pcard--featured:hover {
  box-shadow: 0 16px 48px rgba(217,119,6,.28);
}

.pcard-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--on-surface);
}

.pcard-banner {
  display: inline-flex;
  align-items: center;
  background: #FEF3C7;
  color: #B45309;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  padding: 6px 16px;
  border-radius: 40px;
  width: fit-content;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 12px 0;
  border-top: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}
.pcard-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.pcard-unit {
  font-size: 0.9rem;
  color: var(--on-surface-muted);
}

.pcard-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 0;
  margin: 0;
}
.pcard-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--on-surface);
  line-height: 1.45;
}
.pcard-features li::before {
  content: '✔';
  color: var(--primary-container);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pcard-btn {
  background: var(--primary-container);
  color: #fff;
  border-radius: 40px;
  padding: 13px 24px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  margin-top: auto;
  box-shadow: 0 4px 14px rgba(0,180,216,.3);
}
.pcard-btn:hover {
  background: var(--primary);
  box-shadow: 0 8px 22px rgba(0,103,125,.35);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

/* ══════════════════════════════════════════════════════════
   YOUR PERFECT DAY — Dos columnas + Tarjeta roja
   ══════════════════════════════════════════════════════════ */

/* Grid de dos columnas */
.about-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .about-bottom-grid {
    grid-template-columns: 1fr;
  }
}

/* Texto descriptivo izquierdo */
.about-desc p {
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 15px;
  color: var(--on-surface-muted);
}

/* Tarjeta roja */
.info-card--alert {
  background-color: #fff0f0;
  border: 1.5px solid #fecaca;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.08);
  color: #991b1b;
}

.info-card--alert .info-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #7f1d1d;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.info-card--alert .info-card-subtitle {
  font-weight: 600;
  font-size: 0.95rem;
  color: #991b1b;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #fecaca;
  padding-bottom: 0.5rem;
}

.info-card--alert .info-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-card--alert .info-card-list li {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #991b1b;
}

.info-card--alert .info-card-note {
  font-size: 0.88rem;
  color: #b91c1c;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.info-card--centered {
  max-width: 600px;
  margin: 2.5rem auto 0;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 2.5rem;
  max-width: 900px;
  margin-inline: auto;
}
.info-cards-grid .info-card {
  margin: 0;
  max-width: none;
}

@media (max-width: 768px) {
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .info-card--centered {
    margin-inline: 16px;
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS (320px – 480px)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
    padding-bottom: 40px;
  }
  .hero-title {
    font-size: clamp(24px, 7vw, 32px);
    white-space: normal;
  }
  .hero-phrase {
    font-size: clamp(18px, 5.5vw, 26px);
  }
  .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;
    padding-inline: 8px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px;
  }
  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }

  .header-inner { height: 60px; }
  .logo-text { font-size: 16px; }

  .mobile-link {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }

  .escape-question { font-size: 16px; }
  .escape-title { font-size: 22px; }
  .escape-text { font-size: 14px; }

  .section-heading { font-size: clamp(24px, 6vw, 32px); }
  .section-sub { font-size: 14px; }

  .exp-card-body { padding: 16px; }
  .exp-card-title { font-size: 18px; }
  .exp-price-amount { font-size: 24px; }

  .itin-step-body { font-size: 14px; }
  .itin-step-header em { font-size: 14px; }

  .bk-section { padding: 18px 16px; }
  .bk-divider { margin: 0 16px; }
  .bk-counter-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
  .bk-counter-num { font-size: 22px; min-width: 32px; }
  .bk-time-val { font-size: 17px; }
  .bk-time-btn { padding: 16px 12px; }
  .bk-date-pill { padding: 10px 14px; min-width: 78px; }
  .bk-cta-bar { padding: 10px 16px; }
  .bk-cta-btn { padding: 12px 18px; font-size: 13px; }

  .pcard { padding: 22px 18px; }
  .pcard-amount { font-size: 2rem; }
  .pcard-name { font-size: 20px; }
  .pcard-btn { padding: 14px 20px; min-height: 48px; }
  .pcard-features li { font-size: 14px; }

  .rental-hero-card { min-height: 400px; }
  .rental-hero-content { padding: 18px; }
  .rental-hero-name { font-size: 24px; }
  .rental-hero-desc { font-size: 13px; }
  .buggy-price-btn { min-height: 44px; font-size: 13px; padding: 10px 12px; }

  .faq-question { padding: 16px 0; font-size: 15px; min-height: 48px; }

  .testi-photo-card { max-width: 100%; }
  .testi-photo-name { font-size: 16px; }
  .testi-photo-caption { padding: 12px 16px; }

  .moments-title { font-size: 18px; }
  .moments-grid { gap: 12px; }

  .cta-heading { font-size: clamp(24px, 6vw, 32px); }
  .cta-sub { font-size: 14px; }
  .cta-btn { padding: 14px 24px; font-size: 14px; }

  .whatsapp-fab {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .footer-inner { gap: 24px; }
  .footer-tagline { font-size: 13px; }
  .footer-col-title { font-size: 13px; }
  .footer-col ul li a { font-size: 13px; }

  .lb-prev, .lb-next { width: 44px; height: 44px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 22px; }
  .hero-phrase { font-size: 17px; }
  .bk-pkg-btn { padding: 12px 6px; }
  .bk-pkg-name { font-size: 14px; }
  .buggy-price-btns { grid-template-columns: 1fr; }
  .buggy-price-btn--featured { grid-column: span 1; }
  .rental-hero-card { min-height: 380px; }
  .exp-card-img { height: 160px; }
}

/* ══════════════════════════════════════════════════════════
   REDISEÑO HOME — Hero trust pills
   ══════════════════════════════════════════════════════════ */

.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 520px;
}

.hero-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

/* ══════════════════════════════════════════════════════════
   PRUEBA SOCIAL
   ══════════════════════════════════════════════════════════ */

.social-proof-section {
  background: var(--surface);
  padding-top: 60px;
  overflow: hidden;
}

.sp-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  text-align: center;
}

.sp-stars {
  font-size: 22px;
  letter-spacing: 3px;
}

.sp-score {
  font-size: 42px;
  font-weight: 800;
  color: var(--on-surface);
  line-height: 1;
  font-family: var(--font-display);
}

.sp-max {
  font-size: 22px;
  color: var(--on-surface-muted);
  font-weight: 400;
}

.sp-separator {
  font-size: 24px;
  color: var(--outline);
}

.sp-count {
  font-size: 16px;
  color: var(--on-surface-muted);
}

.sp-photo-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 24px 48px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sp-photo-strip::-webkit-scrollbar { display: none; }

.sp-photo-item {
  flex-shrink: 0;
  width: 240px;
  height: 170px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-variant);
}

.sp-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}

.sp-photo-item:hover img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════════════
   CATEGORÍAS PRINCIPALES
   ══════════════════════════════════════════════════════════ */

.categories-section {
  padding-block: clamp(64px, 10vw, 112px);
  background: var(--surface-low);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cat-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #111;
}

.cat-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}

.cat-card:hover .cat-card-img { transform: scale(1.07); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.40) 50%,
    rgba(0,0,0,0.08) 100%
  );
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: white;
}

.cat-card-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 20px;
  padding: 4px 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.cat-card-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.cat-card-price {
  font-size: 14px;
  opacity: .85;
  margin-bottom: 18px;
}

.cat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all .25s ease;
}

.cat-card-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,103,125,.35);
}

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
  .cat-card { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .sp-photo-item { width: 190px; height: 140px; }
  .hero-trust-pills { gap: 6px; }
  .trust-pill { font-size: 12px; padding: 6px 11px; }
}

/* ══════════════════════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════════════════════ */

.final-cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #004d61 100%);
  padding-block: clamp(72px, 12vw, 120px);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta-section .section-heading {
  color: white;
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform .2s, box-shadow .2s;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.btn-ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
}

/* ══════════════════════════════════════════════════════════
   DROPDOWN NAVIGATION
   ══════════════════════════════════════════════════════════ */

/* ── Desktop nav base ── */
@media (min-width: 901px) {
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
}

/* ── Pantallas medianas: reducir tamaño de fuente del nav ── */
@media (min-width: 901px) and (max-width: 1200px) {
  .nav-link, .nav-trigger {
    font-size: 13px !important;
    padding: 6px 8px !important;
  }
  .header-inner { gap: 6px; }
  .header-cta {
    font-size: 13px !important;
    padding: 8px 14px !important;
  }
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  text-decoration: none;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--surface-low); color: var(--primary); }

/* ── Dropdown item (parent container) ── */
.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface);
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-trigger:hover { background: var(--surface-low); color: var(--primary); }

.nav-chevron {
  transition: transform .2s ease;
  flex-shrink: 0;
}
.nav-item.open .nav-chevron,
.nav-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown panel (desktop) ── */
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 230px;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.14);
  padding: 6px;
  z-index: 300;
  animation: dropdownIn .18s ease;
}

@keyframes dropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Show on hover (desktop) */
.nav-item:hover .nav-dropdown-panel,
.nav-item.open .nav-dropdown-panel {
  display: block;
}

.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface);
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown-item:hover {
  background: var(--surface-low);
  color: var(--primary);
}
.nav-dropdown-item--popular {
  color: #D97706;
  font-weight: 600;
}
.nav-dropdown-item--popular:hover {
  background: #FEF3C7;
  color: #B45309;
}

.nav-dropdown-sep {
  height: 1px;
  background: var(--outline);
  margin: 4px 8px;
}

/* main-nav se oculta en el bloque @media (max-width: 900px) de arriba */

/* ══════════════════════════════════════════════════════════
   MOBILE MENU — Dropdown acordeón
   ══════════════════════════════════════════════════════════ */

.mobile-nav-item {
  border-bottom: none;
}

.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 14px 20px;
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}
.mobile-dropdown-trigger:hover { background: #f8f8f8; }

.mobile-nav-item.open .nav-chevron {
  transform: rotate(180deg);
}

.mobile-dropdown-panel {
  display: none;
  background: #f8f9fa;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item.open .mobile-dropdown-panel {
  display: block;
}

.mobile-dropdown-link {
  display: block;
  padding: 12px 20px 12px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color .15s, background .15s;
}
.mobile-dropdown-link:last-child { border-bottom: none; }
.mobile-dropdown-link:hover {
  color: var(--primary);
  background: #edf9fc;
}

/* ══════════════════════════════════════════════════════════
   INNER PAGES — Page Hero & Coming Soon
   ══════════════════════════════════════════════════════════ */

.page-hero {
  padding: clamp(80px, 12vw, 140px) 0 clamp(48px, 7vw, 80px);
  background: linear-gradient(135deg, var(--primary) 0%, #005f73 100%);
  text-align: center;
  color: #fff;
}

.page-hero-icon {
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1;
  margin-bottom: 20px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-sub {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(255,255,255,.82);
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}

.coming-soon-section {
  padding: clamp(64px, 10vw, 120px) 0;
}

.coming-soon-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-low);
  border: 1px solid var(--outline);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-muted);
}

.coming-soon-text {
  font-size: 18px;
  color: var(--on-surface-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* ── Footer ── */
.site-footer {
  background: #00677d;
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.footer-tagline {
  font-size: 14px;
  color: var(--on-surface-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-nav a {
  font-size: 14px;
  color: var(--on-surface-muted);
  text-decoration: none;
  transition: color .15s;
}

.footer-nav a:hover { color: var(--primary); }

.footer-copy {
  font-size: 13px;
  color: var(--on-surface-muted);
}

.footer-copy a { color: var(--primary); text-decoration: none; }

/* Active nav link */
.nav-link--active {
  color: var(--primary) !important;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   PÁGINAS DE PAQUETE — Package Detail Pages
   ══════════════════════════════════════════════════════════ */

/* Breadcrumb */
.pkg-breadcrumb {
  background: var(--surface-low);
  border-bottom: 1px solid var(--outline);
  padding: 12px 0;
}
.pkg-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--on-surface-muted);
}
.pkg-breadcrumb-list a {
  color: var(--primary);
  text-decoration: none;
}
.pkg-breadcrumb-list a:hover { text-decoration: underline; }
.pkg-breadcrumb-list [aria-current="page"] { font-weight: 600; color: var(--on-surface); }

/* ── Hero ── */
.pkg-hero {
  position: relative;
  min-height: clamp(480px, 70vh, 680px);
  display: flex;
  align-items: center;
}
.pkg-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.pkg-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.72) 100%);
}
.pkg-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 56px;
}
.pkg-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pkg-hero-badge--popular {
  background: rgba(255,180,0,.25);
  border-color: rgba(255,200,50,.5);
  color: #ffe066;
}
.pkg-hero-badge--vip {
  background: rgba(180,120,255,.25);
  border-color: rgba(200,160,255,.5);
  color: #e8d0ff;
}
.pkg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pkg-hero-sub {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.pkg-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  border-radius: 16px;
  padding: 12px 28px;
  margin-bottom: 28px;
}
.pkg-price-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  line-height: 1;
}
.pkg-price-per {
  font-size: 16px;
  opacity: .85;
}
.pkg-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.pkg-cta-btn { min-width: 240px; font-size: 18px; padding: 16px 36px; }
.pkg-hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

/* ── Resumen rápido ── */
.pkg-summary-section {
  padding: 0;
  position: relative;
  z-index: 3;
  margin-top: -48px;
}
.pkg-summary-card {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--outline);
}
.pkg-summary-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--outline);
  border-bottom: 1px solid var(--outline);
}
.pkg-summary-item:nth-child(3n) { border-right: none; }
.pkg-summary-item:nth-child(n+4) { border-bottom: none; }
.pkg-summary-icon { font-size: 28px; flex-shrink: 0; }
.pkg-summary-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 2px;
}
.pkg-summary-item span { font-size: 13px; color: var(--on-surface-muted); }
@media (max-width: 700px) {
  .pkg-summary-card { grid-template-columns: repeat(2, 1fr); }
  .pkg-summary-item:nth-child(3n) { border-right: 1px solid var(--outline); }
  .pkg-summary-item:nth-child(2n) { border-right: none; }
  .pkg-summary-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 420px) {
  .pkg-summary-card { grid-template-columns: 1fr; }
  .pkg-summary-item { border-right: none !important; }
  .pkg-summary-item:last-child { border-bottom: none; }
}

/* ── Incluye / No incluye ── */
.pkg-details-section {
  padding: clamp(48px, 7vw, 96px) 0;
}
.pkg-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .pkg-details-grid { grid-template-columns: 1fr; } }

.pkg-details-card {
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--outline);
}
.pkg-details-card--yes { background: #f0fdf4; border-color: #bbf7d0; }
.pkg-details-card--no  { background: #fff5f5; border-color: #fecaca; }

.pkg-details-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 20px;
}
.pkg-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-details-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  color: var(--on-surface);
  padding-left: 20px;
  position: relative;
}
.pkg-details-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}
.pkg-details-list--no li::before { content: '❌'; }

.pkg-upsell-link {
  font-size: 12px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.pkg-upsell-link:hover { text-decoration: underline; }

/* ── Para quién es ── */
.pkg-for-section {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--surface-low);
}
.pkg-for-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--on-surface);
}
.pkg-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .pkg-for-grid { grid-template-columns: 1fr; } }

.pkg-for-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--outline);
}
.pkg-for-icon { font-size: 40px; display: block; margin-bottom: 12px; }
.pkg-for-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.pkg-for-card p { font-size: 14px; color: var(--on-surface-muted); line-height: 1.6; }

/* ── Comparativa de paquetes ── */
.pkg-compare-section {
  padding: clamp(48px, 7vw, 96px) 0;
}
.pkg-compare-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  text-align: center;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.pkg-compare-sub {
  text-align: center;
  color: var(--on-surface-muted);
  margin-bottom: 40px;
  font-size: 16px;
}
.pkg-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 800px) {
  .pkg-compare-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

.pkg-compare-card {
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.pkg-compare-card--active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}
.pkg-compare-card--popular {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px #f59e0b;
}
.pkg-compare-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-compare-card--popular .pkg-compare-badge { background: #f59e0b; }
.pkg-compare-card--active .pkg-compare-badge { background: var(--primary); }

.pkg-compare-icon { font-size: 36px; text-align: center; }
.pkg-compare-name { font-size: 18px; font-weight: 700; text-align: center; color: var(--on-surface); }
.pkg-compare-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--primary);
}
.pkg-compare-price span { font-size: 14px; font-weight: 500; color: var(--on-surface-muted); }

.pkg-compare-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--on-surface-muted);
  flex: 1;
}

/* ── CTA final ── */
.pkg-cta-section {
  padding: clamp(64px, 10vw, 120px) 0;
  background: linear-gradient(135deg, var(--primary) 0%, #005f73 100%);
  text-align: center;
}
.pkg-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.pkg-cta-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
}
.pkg-cta-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.85);
  max-width: 540px;
  line-height: 1.65;
}
.pkg-cta-section .pkg-cta-btn {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
}
.pkg-cta-section .pkg-cta-btn:hover {
  background: var(--surface-low);
}
.pkg-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

/* nav-dropdown-item activo */
.nav-dropdown-item--active {
  background: var(--surface-low);
  font-weight: 700;
  color: var(--primary);
}

/* ══════════════════════════════════════════════════════════
   WIDGET DE RESERVAS — Página de Paquete
   ══════════════════════════════════════════════════════════ */

.bk-section {
  padding: clamp(48px, 7vw, 96px) 0 clamp(80px, 12vw, 140px);
  background: var(--surface-low);
}

.bk-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.bk-section-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: var(--on-surface);
  margin-bottom: 8px;
}
.bk-section-sub {
  font-size: 16px;
  color: var(--on-surface-muted);
}

/* Widget card */
.bk-widget {
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid var(--outline);
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  max-width: 680px;
  margin-inline: auto;
  overflow: hidden;
}

/* Cada paso */
.bk-step {
  padding: 24px 28px;
  border-bottom: 1px solid var(--outline);
}
.bk-step:last-of-type { border-bottom: none; }

.bk-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--on-surface-muted);
  margin-bottom: 16px;
}
.bk-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Selector de paquete */
.bk-pkg-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 520px) { .bk-pkg-row { grid-template-columns: 1fr; } }

.bk-pkg-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 10px;
  border: 2px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  font-family: var(--font-body);
}
.bk-pkg-btn:hover { border-color: var(--primary); background: var(--surface-low); }
.bk-pkg-btn.selected {
  border-color: var(--primary);
  background: rgba(0,103,125,.08);
  box-shadow: 0 0 0 3px rgba(0,103,125,.20);
}
.bk-pkg-icon { font-size: 24px; }
.bk-pkg-name { font-size: 14px; font-weight: 700; color: var(--on-surface); }
.bk-pkg-price { font-size: 16px; font-weight: 700; color: var(--primary); }
.bk-pkg-price small { font-size: 11px; font-weight: 500; color: var(--on-surface-muted); }
.bk-pkg-popular {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Tira de fechas */
.bk-date-strip {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.bk-date-strip::-webkit-scrollbar { display: none; }

.bk-date-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  border: 2px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--on-surface);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.bk-date-pill:hover { border-color: var(--primary); background: var(--surface-low); }
.bk-date-pill.selected {
  border-color: var(--primary);
  background: rgba(0,103,125,.08);
}
.bk-pill-name { font-weight: 700; font-size: 13px; }

.bk-more-dates-link {
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}
.bk-more-dates-link:hover { text-decoration: underline; }

.bk-datepicker {
  margin-top: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--outline);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--on-surface);
}
.bk-datepicker:focus { outline: none; border-color: var(--primary); }

/* Semáforo — puntos */
.bk-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.bk-dot--available { background: #22c55e; }
.bk-dot--full      { background: #ef4444; }
.bk-dot--past      { background: #d1d5db; }

/* Botones de horario */
.bk-time-row { display: flex; gap: 12px; flex-wrap: wrap; }

.bk-time-btn {
  flex: 1;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 2px solid var(--outline);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color .2s, background .2s;
}
.bk-time-btn:hover:not(:disabled) { border-color: var(--primary); background: var(--surface-low); }
.bk-time-btn.selected {
  border-color: var(--primary);
  background: rgba(0,103,125,.08);
}
.bk-time-btn:disabled { opacity: .45; cursor: not-allowed; }
.bk-time-info { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.bk-time-info strong { font-size: 16px; color: var(--on-surface); }
.bk-time-status { font-size: 12px; color: var(--on-surface-muted); }

/* Contadores de viajeros */
.bk-travelers { display: flex; flex-direction: column; gap: 16px; }

.bk-traveler-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--outline);
}
.bk-traveler-row:last-of-type { border-bottom: none; }

.bk-traveler-info { display: flex; flex-direction: column; gap: 2px; }
.bk-traveler-type { font-size: 16px; font-weight: 700; color: var(--on-surface); }
.bk-traveler-sub  { font-size: 13px; color: var(--on-surface-muted); }

.bk-counter { display: flex; align-items: center; gap: 0; }
.bk-counter-btn {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 2px solid var(--outline);
  background: var(--surface);
  font-size: 24px;
  font-weight: 300;
  color: var(--on-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
  flex-shrink: 0;
}
.bk-counter-btn:hover:not(:disabled) { border-color: var(--primary); background: var(--surface-low); }
.bk-counter-btn:disabled { opacity: .35; cursor: not-allowed; }
.bk-counter-num {
  min-width: 48px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--on-surface);
}

.bk-infants-note {
  font-size: 13px;
  color: var(--on-surface-muted);
  margin-top: 4px;
  padding: 10px 14px;
  background: var(--surface-low);
  border-radius: 10px;
}

/* Resumen + botón */
.bk-summary-block {
  padding: 24px 28px;
  background: var(--surface-low);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bk-breakdown {
  font-size: 14px;
  color: var(--on-surface);
  min-height: 22px;
}
.bk-breakdown-hint { color: var(--on-surface-muted); }

.bk-cta-btn {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background .2s, opacity .2s, transform .15s;
}
.bk-cta-btn:not(:disabled):hover { background: #005f73; transform: translateY(-1px); }
.bk-cta-btn:disabled { opacity: .5; cursor: not-allowed; }
.bk-cta-btn.ready { background: #16a34a; }
.bk-cta-btn.ready:hover { background: #15803d; }

.bk-cta-price {
  background: rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.bk-cta-price.price-pop { transform: scale(1.15); }

.bk-cta-note {
  text-align: center;
  font-size: 12px;
  color: var(--on-surface-muted);
}

/* ── Sticky bar móvil ── */
.bk-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  box-shadow: 0 -4px 24px rgba(0,0,0,.12);
  padding: 12px 16px env(safe-area-inset-bottom, 0);
}
.bk-sticky-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin-inline: auto;
}
.bk-sticky-label {
  flex: 1;
  font-size: 13px;
  color: var(--on-surface-muted);
  line-height: 1.3;
}
.bk-sticky-btn {
  flex-shrink: 0;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.bk-sticky-btn:not(:disabled):hover { background: #005f73; }
.bk-sticky-btn:disabled { opacity: .5; cursor: not-allowed; }
.bk-sticky-btn.ready { background: #16a34a; }

@media (max-width: 900px) {
  .bk-sticky-bar { display: block; }
  /* Espacio para que el sticky no tape el contenido */
  .bk-section { padding-bottom: clamp(100px, 16vw, 120px); }
}

/* Bloquear scroll del body cuando el menú móvil está abierto */
body.menu-open { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════
   FAQ PAGE
   ══════════════════════════════════════════════════════════════ */

/* Hero */
.faq-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #005f73 100%);
  padding: clamp(56px, 10vw, 96px) 16px clamp(48px, 8vw, 80px);
  text-align: center;
  color: #fff;
}
.faq-hero-inner { max-width: 680px; margin-inline: auto; }
.faq-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.15;
}
.faq-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  opacity: .9;
  margin-bottom: 32px;
}

/* Search */
.faq-search-wrap {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}
.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  opacity: .7;
  pointer-events: none;
}
.faq-search-input {
  width: 100%;
  padding: 16px 48px 16px 48px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-family: var(--font-body);
  background: rgba(255,255,255,.95);
  color: var(--on-surface);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  outline: none;
  transition: box-shadow .2s;
  box-sizing: border-box;
}
.faq-search-input:focus { box-shadow: 0 6px 32px rgba(0,0,0,.22); }
.faq-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--on-surface-muted);
  display: none;
  padding: 4px;
  line-height: 1;
}

/* Category filter */
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.faq-cat-btn {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.45);
  background: transparent;
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.faq-cat-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.7); }
.faq-cat-btn.active { background: #fff; border-color: #fff; color: var(--primary); }

/* FAQ section */
.faq-section { padding: clamp(40px, 8vw, 80px) 16px; background: var(--background); }
.faq-container { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 40px; }

/* Group */
.faq-group { display: flex; flex-direction: column; gap: 0; }
.faq-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--outline);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Item */
.faq-item { border-bottom: 1px solid var(--outline); }
.faq-item:first-of-type { border-top: 1px solid var(--outline); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 8px;
  font-size: clamp(15px, 2vw, 16.5px);
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--on-surface);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-question[aria-expanded="true"] { color: var(--primary); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 20px;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  color: var(--on-surface-muted);
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-answer {
  overflow: hidden;
  padding: 0 8px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-surface-muted);
  animation: faq-open .25s ease;
}
.faq-answer[hidden] { display: none; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* No results */
.faq-no-results {
  display: none;
  text-align: center;
  padding: 48px 16px;
  color: var(--on-surface-muted);
  font-size: 1.1rem;
}
.faq-no-results-icon { font-size: 3rem; margin-bottom: 12px; }

/* CTA section */
.faq-cta-section {
  background: var(--surface);
  border-top: 1px solid var(--outline);
  padding: clamp(48px, 8vw, 80px) 16px;
  text-align: center;
}
.faq-cta-inner { max-width: 560px; margin-inline: auto; }
.faq-cta-title { font-size: clamp(1.4rem, 3.5vw, 2rem); font-weight: 800; margin-bottom: 10px; }
.faq-cta-sub { font-size: 1rem; color: var(--on-surface-muted); margin-bottom: 28px; }

/* Items hidden by search/category */
.faq-item[data-hidden] { display: none; }
.faq-group[data-hidden] { display: none; }

/* ── Botón idioma ES / EN ── */
/* lang-toggle obsoleto — reemplazado por translate-btn */

/* ── Rental content grid: 2 col desktop → 1 col móvil ── */
.rental-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 700px) {
  .rental-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
