/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --ink: #0d1117;
  --text: #2d3748;
  --muted: #64748b;
  --white: #ffffff;
  --paper: #fafbfc;

  --sun: #FFE000;
  --orange: #FF6B00;
  --coral: #FF3366;
  --blue: #0066FF;
  --blue-dark: #0047CC;
  --teal: #00BFA5;
  --green: #00A854;
  --green-dark: #007a3e;
  --violet: #7C3AED;
  --gold: #F59E0B;
  --rust: #C2410C;

  --shadow-sm: 0 4px 16px rgba(0,0,0,0.08);
  --shadow:    0 12px 40px rgba(0,0,0,0.13);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.20);
  --shadow-xl: 0 40px 100px rgba(0,0,0,0.28);

  --radius:    16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* ============================================================
   BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
h1,h2,h3,h4 { font-family: "Outfit", system-ui, sans-serif; letter-spacing: -0.02em; line-height: 1.05; }
.section-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* ============================================================
   EYEBROW
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font: 800 0.76rem "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--sun);
  color: #1a1000;
  margin-bottom: 16px;
}
.eyebrow i { width: 13px; height: 13px; }
.eyebrow.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}
.eyebrow.dark {
  background: rgba(0,0,0,0.07);
  color: var(--text);
}

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-heading { margin-bottom: 40px; }
.section-heading h2,
.family-copy h2,
.why-copy h2,
.conditions h2,
.final-cta h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  color: var(--ink);
}
/* gradient italic accents */
h2 em, h3 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-heading.centered {
  text-align: center;
  max-width: none;
}
.section-heading.centered h2 { margin-inline: auto; max-width: 820px; }
.section-heading.centered p {
  margin: 0 auto;
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
}
.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font: 900 1rem "Outfit", sans-serif;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,168,84,0.38);
}
.btn.primary:hover { box-shadow: 0 20px 56px rgba(0,168,84,0.55); }
.btn.secondary {
  background: rgba(255,255,255,0.13);
  border: 2px solid rgba(255,255,255,0.32);
  color: #fff;
  backdrop-filter: blur(12px);
}
.btn.secondary:hover { background: rgba(255,255,255,0.22); }
.btn.mega { min-height: 68px; padding: 0 40px; font-size: 1.15rem; }
.btn i { width: 20px; height: 20px; }
.glow-btn { animation: glow-pulse 2.5s ease-in-out infinite; }
@keyframes glow-pulse {
  0%,100% { box-shadow: 0 12px 40px rgba(0,168,84,0.38); }
  50% { box-shadow: 0 18px 60px rgba(0,168,84,0.65), 0 0 0 8px rgba(0,168,84,0.12); }
}

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font: 900 0.9rem "Outfit", sans-serif;
  box-shadow: 0 16px 48px rgba(37,211,102,0.45);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 24px 64px rgba(37,211,102,0.60); }
.whatsapp-float i { width: 22px; height: 22px; }

/* ============================================================
   ATTRACTION TAGS
============================================================ */
.atag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font: 800 0.72rem "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.atag.radical { background: rgba(255,51,102,0.9); color: #fff; }
.atag.fire { background: linear-gradient(135deg,#ff4e00,#ff0080); color: #fff; }
.atag.show { background: linear-gradient(135deg,var(--blue),var(--violet)); color: #fff; }
.atag.family-tag { background: linear-gradient(135deg,var(--green),var(--teal)); color: #fff; }
.atag.classic { background: rgba(255,224,0,0.92); color: #1a1000; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg,#0a0f2e 0%,#0f1f5c 50%,#1a0a3d 100%);
  color: #fff;
  overflow: hidden;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  animation: hero-zoom 22s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(8,12,38,0.90) 0%,
    rgba(15,30,90,0.80) 40%,
    rgba(25,8,55,0.84) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 8%  18%, rgba(255,255,255,0.55) 0%,transparent 100%),
    radial-gradient(2px 2px at 28% 8%,  rgba(255,224,0,0.50)   0%,transparent 100%),
    radial-gradient(1px 1px at 52% 32%, rgba(255,255,255,0.45) 0%,transparent 100%),
    radial-gradient(2px 2px at 72% 14%, rgba(255,107,0,0.42)   0%,transparent 100%),
    radial-gradient(1px 1px at 87% 28%, rgba(255,255,255,0.48) 0%,transparent 100%),
    radial-gradient(2px 2px at 18% 62%, rgba(255,224,0,0.30)   0%,transparent 100%),
    radial-gradient(1px 1px at 92% 58%, rgba(255,255,255,0.38) 0%,transparent 100%),
    radial-gradient(1px 1px at 44% 75%, rgba(124,58,237,0.35)  0%,transparent 100%);
}

/* Topbar */
.topbar {
  position: relative;
  z-index: 10;
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo {
  width: clamp(110px,12vw,160px);
  height: auto; max-height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}
.nav-links { display: flex; gap: 28px; font: 700 0.9rem "Outfit", sans-serif; }
.nav-links a { color: rgba(255,255,255,0.78); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg,var(--green),var(--teal));
  color: #fff;
  font: 800 0.88rem "Outfit", sans-serif;
  box-shadow: 0 8px 28px rgba(0,168,84,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,168,84,0.55); }
.nav-cta i { width: 18px; height: 18px; }

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(280px,380px);
  align-items: center;
  gap: 48px;
  min-height: calc(100vh - 96px);
  padding: 40px 0 80px;
}
.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem,7.5vw,6.5rem);
  font-weight: 900;
  color: #fff;
  max-width: 820px;
}
.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy p {
  margin: 0;
  font-size: clamp(1.05rem,1.8vw,1.28rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xl);
}
.hero-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.hero-card-title i { width: 15px; height: 15px; }
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.09);
  margin-bottom: 9px;
  transition: background 0.2s;
}
.hero-card-item:hover { background: rgba(255,255,255,0.17); }
.hero-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius);
  background: rgba(255,224,0,0.22);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.hero-card-icon i { width: 20px; height: 20px; color: var(--sun); }
.hero-card-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 3px;
}
.hero-card-item strong {
  display: block;
  font: 800 1.02rem "Outfit", sans-serif;
  color: #fff;
}
.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg,var(--sun),var(--orange));
  color: var(--ink);
  font: 900 0.94rem "Outfit", sans-serif;
  box-shadow: 0 8px 28px rgba(255,107,0,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.hero-card-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,0,0.55); }
.hero-card-cta i { width: 17px; height: 17px; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.45);
  font-size: 0.74rem;
  animation: bounce-hint 2s ease-in-out infinite;
}
@keyframes bounce-hint {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}
.hero-scroll-hint i { width: 20px; height: 20px; }

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip { background: #0d1117; }
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}
.trust-item:hover { background: rgba(255,255,255,0.04); }
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: rgba(255,224,0,0.14);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-icon i { width: 24px; height: 24px; color: var(--sun); }
.trust-item strong { display: block; color: #fff; font: 800 0.94rem "Outfit", sans-serif; }
.trust-item span { display: block; color: rgba(255,255,255,0.50); font-size: 0.78rem; margin-top: 2px; }

/* ============================================================
   INCLUDED
============================================================ */
.included {
  padding: 100px 0;
  background: linear-gradient(160deg,#ffffff 0%,#f0fff8 100%);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.included-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,var(--blue),#3385ff);
}
.included-card:nth-child(2)::before { background: linear-gradient(90deg,var(--green),var(--teal)); }
.included-card:nth-child(3)::before { background: linear-gradient(90deg,var(--orange),var(--sun)); }
.included-card:nth-child(4)::before { background: linear-gradient(90deg,var(--violet),var(--coral)); }
.included-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.included-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.included-icon.blue { background: rgba(0,102,255,0.11); }
.included-icon.blue i { color: var(--blue); }
.included-icon.green { background: rgba(0,168,84,0.11); }
.included-icon.green i { color: var(--green); }
.included-icon.orange { background: rgba(255,107,0,0.11); }
.included-icon.orange i { color: var(--orange); }
.included-icon.purple { background: rgba(124,58,237,0.11); }
.included-icon.purple i { color: var(--violet); }
.included-icon i { width: 26px; height: 26px; }
.included-card h3 { margin: 0 0 9px; font: 800 1.18rem "Outfit", sans-serif; color: var(--ink); }
.included-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.included-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(0,168,84,0.10);
  color: var(--green-dark);
  font: 800 0.73rem "Outfit", sans-serif;
  text-transform: uppercase;
}

/* ============================================================
   PARK STATS
============================================================ */
.park-stats {
  position: relative;
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(160deg,#050b2e 0%,#0a1a6e 45%,#12006e 100%);
  overflow: hidden;
}
.park-stats-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%,rgba(255,107,0,0.14) 0%,transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%,rgba(124,58,237,0.18) 0%,transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 90%,rgba(0,102,255,0.22) 0%,transparent 70%);
  pointer-events: none;
}
.park-stats-inner { position: relative; z-index: 1; }
.park-stats .section-heading.centered h2 { color: #fff; }
.park-stats .section-heading.centered h2 em {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.park-stats .section-heading.centered p { color: rgba(255,255,255,0.72); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 16px;
  margin-bottom: 44px;
}
.stat-card {
  padding: 26px 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: transform 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
}
.stat-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.14); }
.stat-card.highlight {
  background: linear-gradient(135deg,rgba(255,107,0,0.32),rgba(255,51,102,0.22));
  border-color: rgba(255,107,0,0.40);
}
.stat-numline { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-number {
  font: 900 2.7rem "Outfit", sans-serif;
  color: var(--sun);
  line-height: 1;
}
.stat-plus { font: 900 1.8rem "Outfit", sans-serif; color: var(--sun); }
.stat-card > span {
  display: block;
  margin-top: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}
.stat-icon {
  position: absolute;
  bottom: 10px; right: 12px;
  opacity: 0.16;
}
.stat-icon i { width: 30px; height: 30px; color: #fff; }

.diff-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.diff-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.88);
  font: 700 0.84rem "Outfit", sans-serif;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}
.diff-chip:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.diff-chip i { width: 14px; height: 14px; color: var(--sun); }

/* ============================================================
   ATTRACTIONS CAROUSEL
============================================================ */
.attractions {
  padding: 100px 0;
  background: linear-gradient(160deg,#100020 0%,#1a0050 50%,#0a0020 100%);
  color: #fff;
  overflow: hidden;
}
.attractions .section-heading.split h2 {
  color: #fff;
  font-size: clamp(2.4rem,4.8vw,4.5rem);
}
.attractions .section-heading.split h2 em {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.attraction-grid {
  display: flex;
  gap: 16px;
  height: 580px;
}
.attraction-card {
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: #0a001a;
  transition: flex 500ms cubic-bezier(0.4,0,0.2,1), transform 500ms ease;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}
.attraction-card:hover { flex: 2.2; transform: translateY(-8px); }
.attraction-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
  transition: transform 500ms ease;
}
.attraction-card:hover img { transform: scale(1.07); }
.attraction-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 26px;
  background: linear-gradient(0deg,rgba(10,0,26,0.97) 0%,rgba(10,0,26,0.55) 70%,transparent 100%);
}
.attraction-overlay h3 {
  margin: 10px 0 8px;
  font: 900 2rem "Outfit", sans-serif;
  color: #fff;
}
.attraction-overlay p { margin: 0; color: rgba(255,255,255,0.76); font-size: 0.88rem; max-width: 380px; }
.carousel-controls { display: flex; gap: 10px; }
.icon-btn {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.icon-btn:hover { background: rgba(255,255,255,0.24); transform: scale(1.08); }
.icon-btn i { width: 20px; height: 20px; }

/* ============================================================
   PARK MAIN ATTRACTIONS GRID
============================================================ */
.park-main {
  padding: 100px 0;
  background: linear-gradient(160deg,#fff9f5 0%,#fff 50%,#f0f8ff 100%);
}
.park-attraction-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}
.park-attraction-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.park-attraction-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-xl); }
.park-attraction-card.tall { grid-row: span 2; }
.park-attraction-card.wide { grid-column: span 2; }
.park-attraction-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.05);
  transition: transform 0.5s ease;
}
.park-attraction-card:hover img { transform: scale(1.08); }
.pac-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(0deg,rgba(10,0,26,0.96) 0%,rgba(10,0,26,0.50) 70%,transparent 100%);
}
.pac-overlay h4 { margin: 8px 0 6px; font: 900 1.44rem "Outfit", sans-serif; color: #fff; }
.pac-overlay p { margin: 0; color: rgba(255,255,255,0.78); font-size: 0.84rem; }

/* ============================================================
   SHOWS SECTION
============================================================ */
.shows-section {
  padding: 100px 0;
  background: linear-gradient(160deg,#0a0020 0%,#1a0050 40%,#2a0040 100%);
  color: #fff;
}
.shows-section .section-heading.centered h2 { color: #fff; }
.shows-section .section-heading.centered h2 em {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.shows-section .section-heading.centered p { color: rgba(255,255,255,0.70); }
.show-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.show-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 420px;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.show-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.show-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.2);
  transition: transform 0.5s ease;
}
.show-card:hover img { transform: scale(1.08); }
.show-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg,rgba(10,0,26,0.97) 0%,rgba(10,0,26,0.52) 70%,transparent 100%);
}
.show-overlay h4 { margin: 10px 0 7px; font: 900 1.32rem "Outfit", sans-serif; color: #fff; }
.show-overlay p { margin: 0; color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* ============================================================
   FAMILY SECTION
============================================================ */
.family {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  overflow: hidden;
}
.family-photo { position: relative; overflow: hidden; }
.family-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.family:hover .family-photo img { transform: scale(1.04); }
.family-photo-overlay {
  position: absolute; inset: 0;
  display: none;
}
.family-copy {
  align-self: center;
  padding: 80px min(7vw,88px);
  background: #fff9f5;
}
.family-copy h2 { color: var(--ink); }
.family-copy p { color: var(--muted); font-size: 1.05rem; margin-bottom: 28px; }
.family-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.fp-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  font: 800 0.88rem "Outfit", sans-serif;
}
.fp-card.blue   { background: rgba(0,102,255,0.10); color: var(--blue-dark); }
.fp-card.orange { background: rgba(255,107,0,0.12); color: var(--rust); }
.fp-card.purple { background: rgba(124,58,237,0.10); color: var(--violet); }
.fp-card i { width: 16px; height: 16px; }

/* ============================================================
   SCHEDULE
============================================================ */
.schedule {
  padding: 100px 0;
  background: linear-gradient(160deg,#e8f4ff 0%,#f0f8ff 50%,#e8fff4 100%);
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.schedule-card {
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.schedule-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.scard-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.scard-icon.blue   { background: rgba(0,102,255,0.11); }
.scard-icon.blue i { color: var(--blue); }
.scard-icon.orange   { background: rgba(255,107,0,0.11); }
.scard-icon.orange i { color: var(--orange); }
.scard-icon.green   { background: rgba(0,168,84,0.11); }
.scard-icon.green i { color: var(--green); }
.scard-icon i { width: 24px; height: 24px; }
.scard-label {
  display: block;
  font: 800 0.74rem "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 5px;
}
.schedule-card strong {
  display: block;
  font: 900 2.3rem "Outfit", sans-serif;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 12px;
}
.schedule-card p { margin: 0; color: var(--muted); }

/* ============================================================
   ROADMAP / TIMELINE
============================================================ */
.roadmap {
  padding: 100px 0;
  background: linear-gradient(160deg,#0a1a3e 0%,#0f2a6e 50%,#1a0a3d 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.roadmap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%,rgba(0,102,255,0.14) 0%,transparent 70%);
  pointer-events: none;
}
.roadmap .section-shell { position: relative; z-index: 1; }
.roadmap .section-heading.split h2 { color: #fff; }
.roadmap .section-heading.split h2 em {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.wpp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font: 700 0.88rem "Outfit", sans-serif;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.wpp-link:hover { background: rgba(255,255,255,0.20); transform: translateY(-2px); }
.wpp-link i { width: 17px; height: 17px; }
.roadmap-share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  max-width: 360px;
}
.roadmap-share p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: right;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 16px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg,var(--sun),var(--orange),var(--coral),var(--violet),var(--blue));
  opacity: 0.45;
}
.tl-card { padding: 16px 14px; text-align: center; position: relative; }
.tl-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--sun),var(--orange));
  color: var(--ink);
  font: 900 0.88rem "Outfit", sans-serif;
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  box-shadow: 0 8px 28px rgba(255,107,0,0.44);
}
.tl-card:nth-child(2) .tl-day { background: linear-gradient(135deg,var(--blue),#6633ff); color:#fff; box-shadow: 0 8px 28px rgba(0,102,255,0.44); }
.tl-card:nth-child(3) .tl-day { background: linear-gradient(135deg,var(--green),var(--teal)); color:#fff; box-shadow: 0 8px 28px rgba(0,168,84,0.44); }
.tl-card:nth-child(4) .tl-day { background: linear-gradient(135deg,var(--orange),var(--coral)); color:#fff; box-shadow: 0 8px 28px rgba(255,107,0,0.44); }
.tl-card:nth-child(5) .tl-day { background: linear-gradient(135deg,var(--violet),#a855f7); color:#fff; box-shadow: 0 8px 28px rgba(124,58,237,0.44); }
.tl-content h3 { font: 800 1.03rem "Outfit", sans-serif; color: #fff; margin: 0 0 9px; }
.tl-content p  { margin: 0; color: rgba(255,255,255,0.63); font-size: 0.83rem; }

/* ============================================================
   PAYMENT
============================================================ */
.payment { padding: 100px 0; background: #fff; }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.pay-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pay-card.blue   { background: linear-gradient(160deg,#fff 0%,#f0f6ff 100%); }
.pay-card.green  { background: linear-gradient(160deg,#fff 0%,#f0fff6 100%); }
.pay-card.orange { background: linear-gradient(160deg,#fff 0%,#fff8f0 100%); }
.pay-card.warn   { background: linear-gradient(160deg,#fff 0%,#fff5f0 100%); border: 2px dashed rgba(194,65,12,0.22); }
.pay-card:hover  { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pay-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.pay-card.blue   .pay-icon { background: rgba(0,102,255,0.11); }
.pay-card.blue   .pay-icon i { color: var(--blue); }
.pay-card.green  .pay-icon { background: rgba(0,168,84,0.11); }
.pay-card.green  .pay-icon i { color: var(--green); }
.pay-card.orange .pay-icon { background: rgba(255,107,0,0.11); }
.pay-card.orange .pay-icon i { color: var(--orange); }
.pay-card.warn   .pay-icon { background: rgba(194,65,12,0.09); }
.pay-card.warn   .pay-icon i { color: var(--rust); }
.pay-icon i { width: 26px; height: 26px; }
.pay-card h3 { margin: 0 0 9px; font: 800 1.13rem "Outfit", sans-serif; color: var(--ink); }
.pay-card p  { margin: 0; color: var(--muted); font-size: 0.90rem; }

/* ============================================================
   PRICES
============================================================ */
.prices {
  position: relative;
  padding: 100px 0;
  color: #fff;
  background: linear-gradient(160deg,#1a0600 0%,#5c1500 40%,#1a0030 100%);
  overflow: hidden;
}
.prices-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 30% 50%,rgba(255,107,0,0.24) 0%,transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 30%,rgba(255,224,0,0.14) 0%,transparent 70%);
  pointer-events: none;
}
.prices-inner { position: relative; z-index: 1; }
.prices .section-heading.centered h2 { color: #fff; }
.prices .section-heading.centered h2 em {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.prices .section-heading.centered p { color: rgba(255,255,255,0.70); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
  align-items: stretch;
  max-width: 960px;
  margin-inline: auto;
}
.price-card {
  padding: 26px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.17); }
.price-card.featured {
  background: linear-gradient(160deg,rgba(255,224,0,0.22),rgba(255,107,0,0.18));
  border: 2px solid rgba(255,224,0,0.48);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-18px); }
.price-card.child {
  background: linear-gradient(160deg,rgba(0,168,84,0.18),rgba(0,191,165,0.13));
  border-color: rgba(0,168,84,0.28);
}
.pc-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  background: linear-gradient(135deg,var(--sun),var(--orange));
  color: var(--ink);
  font: 800 0.72rem "Outfit", sans-serif;
  text-transform: uppercase;
  border-radius: 0 0 var(--radius) var(--radius);
}
.pc-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 22px;
}
.price-card:not(.featured) .pc-header { padding-top: 0; }
.pc-header i { width: 22px; height: 22px; color: var(--sun); }
.pc-header span { font: 700 0.87rem "Outfit", sans-serif; color: rgba(255,255,255,0.78); }
.pc-price { display: flex; flex-direction: column; gap: 4px; }
.pc-price strong { font: 900 2.5rem "Outfit", sans-serif; color: #fff; line-height: 1; }
.pc-price small  { font-size: 0.78rem; color: rgba(255,255,255,0.52); font-weight: 700; }
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.13);
  color: #fff;
  font: 800 0.88rem "Outfit", sans-serif;
  transition: background 0.2s, transform 0.2s;
  margin-top: auto;
}
.pc-btn:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.pc-btn.featured-btn {
  background: linear-gradient(135deg,var(--sun),var(--orange));
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(255,107,0,0.50);
}
.pc-btn.featured-btn:hover { box-shadow: 0 14px 40px rgba(255,107,0,0.65); }

/* ============================================================
   WHY DEDÉ
============================================================ */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  overflow: hidden;
}
.why-image { position: relative; overflow: hidden; }
.why-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.why:hover .why-image img { transform: scale(1.04); }
.why-img-overlay {
  position: absolute; inset: 0;
  display: none;
}
.why-copy {
  align-self: center;
  padding: 80px min(7vw,88px);
  background: #fff;
}
.why-copy h2 { color: var(--ink); }
.why-copy p  { color: var(--muted); font-size: 1.03rem; margin-bottom: 28px; }
.check-list {
  list-style: none;
  padding: 0; margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  font: 700 0.98rem "Outfit", sans-serif;
  color: var(--ink);
}
.cl-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,168,84,0.13);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.cl-icon i { width: 15px; height: 15px; color: var(--green); }

/* ============================================================
   CONDITIONS
============================================================ */
.conditions {
  padding: 80px 0;
  background: linear-gradient(135deg,#00a854 0%,#00bfa5 50%,#00a854 100%);
  color: #fff;
}
.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.conditions h2 { color: #fff; margin: 14px 0; font-size: clamp(1.9rem,3.5vw,2.9rem); }
.conditions .eyebrow { background: rgba(255,255,255,0.22); color: #fff; }
.conditions ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conditions li { display: flex; align-items: flex-start; gap: 13px; }
.ci-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-icon i { width: 17px; height: 17px; color: var(--sun); }
.conditions li span { color: rgba(255,255,255,0.88); font-weight: 600; padding-top: 7px; }

/* ============================================================
   FAQ
============================================================ */
.faq {
  padding: 100px 0;
  background: linear-gradient(160deg,#fafbff 0%,#f4f0ff 100%);
}
.faq .section-heading.centered h2 em {
  background: linear-gradient(135deg,var(--violet),var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}
.faq-item {
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover  { box-shadow: var(--shadow); }
.faq-item[open]  { box-shadow: var(--shadow); border-color: rgba(124,58,237,0.18); }
.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  font: 800 0.98rem "Outfit", sans-serif;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font: 700 1.4rem "Outfit", sans-serif;
  color: var(--violet);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 14px;
}

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(160deg,#080c1e 0%,#0f1a5c 40%,#1a0060 70%,#080c1e 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%,rgba(0,102,255,0.22) 0%,transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%,rgba(255,107,0,0.18) 0%,transparent 70%),
    radial-gradient(ellipse 30% 50% at 80% 20%,rgba(124,58,237,0.18) 0%,transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: rgba(255,224,0,0.13);
  border: 1px solid rgba(255,224,0,0.38);
  color: var(--sun);
  font: 800 0.80rem "Outfit", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 26px;
  animation: badge-glow 2.2s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,224,0,0); }
  50%      { box-shadow: 0 0 0 8px rgba(255,224,0,0.09); }
}
.cta-badge i { width: 15px; height: 15px; }
.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(3rem,7vw,7rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
}
.final-cta p {
  max-width: 640px;
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
  margin: 0 0 38px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font: 700 0.83rem "Outfit", sans-serif;
}
.cta-trust i { width: 15px; height: 15px; color: var(--sun); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 34px 0 80px;
  background: #060810;
  color: rgba(255,255,255,0.45);
}
.footer-content {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-logo { height: 40px; width: auto; opacity: 0.45; filter: grayscale(1); }
.footer p { margin: 0; font-size: 0.84rem; }

/* ============================================================
   RESPONSIVE — 980px
============================================================ */
@media (max-width: 980px) {
  .nav-links { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 28px;
    min-height: auto;
    padding-bottom: 56px;
  }
  .hero-card { max-width: 540px; }

  .trust-inner { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.07); }
  .trust-item:last-child, .trust-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .included-grid { grid-template-columns: repeat(2,1fr); }

  .stats-grid { grid-template-columns: repeat(3,1fr); }

  .attraction-grid {
    height: 500px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
  }
  .attraction-card, .attraction-card:hover {
    flex: 0 0 min(84vw,400px);
    scroll-snap-align: start;
    transform: none;
  }

  .park-attraction-grid,
  .show-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 14px;
  }
  .park-attraction-card,
  .park-attraction-card.tall,
  .park-attraction-card.wide,
  .show-card {
    flex: 0 0 min(80vw,400px);
    min-height: 460px;
    scroll-snap-align: start;
    grid-column: auto;
    grid-row: auto;
  }

  .family, .why { grid-template-columns: 1fr; }
  .family-photo-overlay { display: none; }
  .family-photo img, .why-image img { max-height: 460px; width: 100%; }
  .why-img-overlay { display: none; }

  .schedule-grid { grid-template-columns: repeat(2,1fr); }

  .timeline { grid-template-columns: repeat(3,1fr); gap: 16px; }
  .timeline::before { display: none; }

  .payment-grid { grid-template-columns: repeat(2,1fr); }

  .price-grid { grid-template-columns: repeat(3,1fr); }
  .price-card.featured { transform: none; }

  .conditions-grid { grid-template-columns: 1fr; gap: 32px; }

  .faq-list { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 640px
============================================================ */
@media (max-width: 640px) {
  .section-shell, .topbar {
    width: min(100% - 28px,1160px);
  }
  .topbar { padding: 14px 0; }
  .brand-logo { width: 108px; }
  .nav-cta { padding: 0 14px; font-size: 0.80rem; }

  .hero { min-height: auto; }
  .hero-content { gap: 26px; padding-bottom: 52px; }
  .hero-copy h1 { font-size: clamp(2.5rem,15vw,3.7rem); }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-card { width: 100%; }

  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .trust-item:nth-child(odd) { border-right: none; }

  .included-grid,
  .schedule-grid,
  .payment-grid { grid-template-columns: 1fr; }

  .stats-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
  }
  .stat-card { flex: 0 0 175px; scroll-snap-align: start; }

  .diff-chips { gap: 8px; }

  .attraction-grid { height: 480px; }
  .attraction-card, .attraction-card:hover { flex-basis: 88vw; }

  .section-heading.split {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .roadmap-share {
    align-items: flex-start;
    max-width: none;
  }
  .roadmap-share p { text-align: left; }

  .timeline { grid-template-columns: 1fr; gap: 12px; }
  .tl-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
  }
  .tl-day { margin: 0; flex-shrink: 0; }

  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-10px); }

  .family-copy, .why-copy { padding: 48px 20px; }

  .final-cta { padding: 88px 0; }
  .final-cta h2 { font-size: clamp(2.5rem,14vw,3.8rem); }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-trust { gap: 14px; }

  .footer { padding-bottom: 96px; }
  .footer-content { flex-direction: column; gap: 14px; }

  .whatsapp-float { right: 12px; left: 12px; justify-content: center; bottom: 12px; }

  .included, .payment, .schedule, .faq, .roadmap,
  .conditions, .park-main, .shows-section, .park-stats,
  .final-cta, .attractions, .prices, .why { padding: 70px 0; }
  .family { min-height: auto; }
}


/* ==========================================================================
   Integracao ao site da Dede Viagens
   Adicionado ao CSS original da landing: breadcrumb no topo e navegacao no
   rodape, para a pagina nao ficar isolada do resto do site.
   ========================================================================== */
.dv-breadcrumb{position:relative;z-index:5;display:flex;flex-wrap:wrap;align-items:center;gap:8px;
  max-width:1180px;margin:0 auto;padding:14px 24px 0;font-size:12.5px;color:rgba(255,255,255,.62)}
.dv-breadcrumb a{color:rgba(255,255,255,.62);text-decoration:none;transition:color .2s}
.dv-breadcrumb a:hover{color:#fff}
.dv-breadcrumb span{color:rgba(255,255,255,.32)}
.dv-breadcrumb b{color:#fff;font-weight:600}
.dv-footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 22px;margin-top:22px}
.dv-footer-nav a{color:rgba(255,255,255,.72);font-size:13.5px;font-weight:600;text-decoration:none;transition:color .2s}
.dv-footer-nav a:hover{color:#fff;text-decoration:underline}
.dv-footer-legal a{font-size:12.5px;font-weight:500;color:rgba(255,255,255,.5)}
.dv-footer-legal-line{margin-top:22px;font-size:12px;color:rgba(255,255,255,.45)}
@media(max-width:640px){.dv-breadcrumb{padding:12px 18px 0;font-size:11.5px}}

/* Respeita a preferencia de reduzir movimento, como no resto do site. */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:1ms!important;animation-iteration-count:1!important;
    transition-duration:150ms!important;scroll-behavior:auto!important}
  .reveal{opacity:1!important;transform:none!important}
  .hero-media img{transform:none!important}
}
