/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --blue-dark: #050e1f;
  --blue-mid: #0a1f3d;
  --blue: #0d2d6e;
  --gold: #f5c518;
  --gold-light: #ffe066;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray-light: #e2e8f0;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--blue-dark); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }

/* ===========================
   LAYOUT
   =========================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 120px 0; position: relative; }

/* ===========================
   NAV
   =========================== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 20px 0;
  transition: background 0.3s, padding 0.3s;
}
#navbar.scrolled {
  background: rgba(5,14,31,0.96); backdrop-filter: blur(14px);
  padding: 12px 0; border-bottom: 1px solid rgba(245,197,24,0.15);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.nav-links { display: flex; gap: 14px; align-items: center; flex-wrap: nowrap; }
.nav-links a { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--blue-dark) !important; padding: 9px 16px; border-radius: 50px; letter-spacing: 0.05em !important; }
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: rgba(5,14,31,0.98); backdrop-filter: blur(16px); border-top: 1px solid rgba(245,197,24,0.15); padding: 24px; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.95rem; font-weight: 600; color: rgba(255,255,255,0.8); letter-spacing: 0.06em; text-transform: uppercase; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-mobile a:last-child { border-bottom: none; background: rgba(245,197,24,0.1); border-radius: 10px; text-align: center; color: var(--gold); margin-top: 8px; padding: 14px 8px; }

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--blue-dark);
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 50px;
  transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { transform: translateY(-3px); background: var(--gold-light); box-shadow: 0 12px 40px rgba(245,197,24,0.35); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--gold);
  border: 1.5px solid rgba(245,197,24,0.5); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 32px; border-radius: 50px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  width: 100%; text-align: center; margin-top: 8px;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(245,197,24,0.07); transform: translateY(-2px); }
.btn-large { padding: 20px 48px; font-size: 1rem; margin-top: 12px; }

/* ===========================
   HERO
   =========================== */
#hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, #0d2d6e 0%, #050e1f 70%); overflow: hidden; }
.stars { position: absolute; inset: 0; pointer-events: none; }
.star { position: absolute; background: var(--white); border-radius: 50%; animation: twinkle var(--dur, 3s) ease-in-out infinite; animation-delay: var(--delay, 0s); }
@keyframes twinkle { 0%,100%{opacity:.2;transform:scale(1)} 50%{opacity:1;transform:scale(1.3)} }
.castle-silhouette {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 320px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 700 320'%3E%3Cpath d='M0 320 L0 220 L50 220 L50 170 L70 150 L70 110 L75 110 L75 95 L82 95 L82 110 L87 110 L87 150 L100 170 L100 220 L130 220 L130 170 L145 148 L145 120 L153 100 L160 120 L160 148 L172 170 L172 220 L190 220 L190 130 L202 105 L210 80 L218 55 L225 80 L233 105 L245 130 L245 220 L270 220 L270 170 L283 148 L283 120 L290 100 L298 120 L298 148 L310 170 L310 220 L330 220 L330 260 L342 260 L342 220 L350 200 L358 220 L358 260 L370 260 L370 220 L390 220 L390 170 L402 148 L402 120 L410 100 L418 120 L418 148 L430 170 L430 220 L455 220 L455 130 L467 105 L475 80 L483 55 L490 80 L498 105 L510 130 L510 220 L530 220 L530 170 L543 148 L543 120 L550 100 L558 120 L558 148 L570 170 L570 220 L600 220 L600 170 L614 150 L614 110 L619 110 L619 95 L626 95 L626 110 L631 110 L631 150 L650 170 L650 220 L700 220 L700 320 Z' fill='%230a1836' fill-opacity='0.85'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: contain; opacity: 0.5;
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero-badge {
  display: inline-block; background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.4);
  color: var(--gold); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 8px 20px; border-radius: 50px; margin-bottom: 24px;
}
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(4rem, 10vw, 8rem); line-height: 1; margin-bottom: 24px; }
.hero-title span { display: block; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--purple-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; font-weight: 300; }

/* COUNTDOWN */
.countdown-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 36px; }
.cd-block { display: flex; flex-direction: column; align-items: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px 20px; min-width: 72px; }
.cd-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.cd-label { font-size: 0.65rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.cd-sep { font-size: 1.5rem; color: var(--gold); opacity: 0.6; margin-bottom: 16px; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 1; transition: opacity 0.4s ease;
  pointer-events: none;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-arrow { animation: scrollBounce 1.6s ease-in-out infinite; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(8px); opacity: 1; }
}

/* ===========================
   SECTION LABELS & HEADERS
   =========================== */
.section-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.25); padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; }
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 20px; }
.section-desc { color: rgba(255,255,255,0.6); font-weight: 300; max-width: 540px; margin: 0 auto; line-height: 1.8; }

/* ===========================
   ABOUT
   =========================== */
#about { background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.15; margin: 16px 0 24px; }
.about-text p { color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.parks-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.park-badge { font-size: 0.78rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; }
.park-disney { background: rgba(13,45,110,0.6); border: 1px solid rgba(245,197,24,0.3); color: var(--gold-light); }
.park-universal { background: rgba(124,58,237,0.2); border: 1px solid rgba(167,139,250,0.3); color: var(--purple-light); }
.park-volcano { background: rgba(220,38,38,0.15); border: 1px solid rgba(252,165,165,0.3); color: #fca5a5; }
.stats-row { display: flex; gap: 40px; margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(245,197,24,0.2); }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.72rem; color: var(--gray); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.about-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 20px; }

/* ===========================
   ITINERARY TIMELINE
   =========================== */
#itinerary { background: var(--blue-mid); overflow: hidden; }
.trip-bg-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Playfair Display', serif; font-size: clamp(80px, 18vw, 200px); font-weight: 900; color: rgba(255,255,255,0.02); pointer-events: none; white-space: nowrap; }

.timeline { position: relative; padding-left: 120px; }
.timeline::before { content: ''; position: absolute; left: 90px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, rgba(245,197,24,0.3) 10%, rgba(245,197,24,0.3) 90%, transparent); }

.tl-item { display: grid; grid-template-columns: 0px 24px 1fr; gap: 0 24px; align-items: start; margin-bottom: 40px; position: relative; }
.tl-date { position: absolute; left: -120px; width: 96px; text-align: right; padding-top: 20px; }
.tl-day { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.tl-dd { display: block; font-size: 0.8rem; color: var(--gray); font-weight: 600; margin-top: 2px; }
.tl-dot { width: 14px; height: 14px; background: rgba(245,197,24,0.3); border: 2px solid var(--gold); border-radius: 50%; margin-top: 24px; flex-shrink: 0; transition: background 0.3s; position: relative; z-index: 2; }
.tl-dot--gold { background: var(--gold); border-color: var(--gold-light); box-shadow: 0 0 16px rgba(245,197,24,0.4); }
.tl-dot--purple { background: var(--purple); border-color: var(--purple-light); }
.tl-dot--blue { background: #1d4ed8; border-color: #93c5fd; }
.tl-item:hover .tl-dot { background: var(--gold); }

.tl-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 24px 28px; transition: transform 0.3s, background 0.3s, border-color 0.3s; grid-column: 3; }
.tl-card:hover { transform: translateX(6px); background: rgba(245,197,24,0.05); border-color: rgba(245,197,24,0.2); }
.tl-card--special { background: rgba(124,58,237,0.08); border-color: rgba(167,139,250,0.2); }
.tl-card--last { background: rgba(245,197,24,0.06); border-color: rgba(245,197,24,0.25); }
.tl-icon { font-size: 1.6rem; margin-bottom: 10px; }
.tl-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.tl-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; margin-bottom: 4px; }
.tl-card p strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.tl-item--transition .tl-card { border-color: rgba(167,139,250,0.25); }

/* ===========================
   GALLERY
   =========================== */
#editions { background: var(--blue-dark); }

.video-featured { margin-bottom: 48px; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-caption { text-align: center; color: var(--gray); font-size: 0.82rem; margin-top: 12px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: pointer; }
.gallery-item--wide { grid-column: span 2; aspect-ratio: 16/7; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,14,31,0.85) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.06em; text-transform: uppercase; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lightbox-caption { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 14px; letter-spacing: 0.08em; text-transform: uppercase; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ===========================
   PRICES
   =========================== */
#prices { background: linear-gradient(180deg, var(--blue-dark) 0%, var(--blue-mid) 100%); }

/* DEADLINE BANNER */
.deadline-banner {
  background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(239,68,68,0.05));
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 16px; padding: 20px 28px; margin-bottom: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.deadline-left { display: flex; align-items: center; gap: 16px; }
.deadline-icon { font-size: 2rem; }
.deadline-left strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fca5a5; margin-bottom: 4px; }
.deadline-left p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.deadline-left p strong { display: inline; font-size: 0.9rem; letter-spacing: normal; text-transform: none; color: #fff; }
.deadline-countdown { display: flex; align-items: center; gap: 6px; }
.dl-block { display: flex; flex-direction: column; align-items: center; background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; padding: 10px 14px; min-width: 58px; }
.dl-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fca5a5; line-height: 1; }
.dl-label { font-size: 0.6rem; color: rgba(252,165,165,0.7); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px; }
.dl-sep { font-size: 1.2rem; color: rgba(252,165,165,0.4); margin-bottom: 12px; }

/* CUPO LIMITADO */
.cupo-banner {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(245,197,24,0.12), rgba(245,197,24,0.05));
  border: 1.5px solid rgba(245,197,24,0.4); border-radius: 12px;
  padding: 14px 22px; margin-bottom: 28px; font-size: 0.9rem;
}
.cupo-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.5);
  animation: pulse-green 1.6s ease-in-out infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.cupo-banner strong { color: var(--gold); }
.cupo-banner span { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* PARK IMAGE IN TIMELINE */
.tl-card--hasimg { cursor: pointer; }
.tl-img-btn {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; padding: 8px 16px; border-radius: 50px;
  background: rgba(245,197,24,0.1); border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  cursor: pointer; font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em; transition: background 0.2s, border-color 0.2s;
}
.tl-img-btn:hover { background: rgba(245,197,24,0.18); border-color: var(--gold); }
.tl-park-img {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), margin-top 0.3s;
  margin-top: 0;
}
.tl-park-img.open {
  max-height: 360px; margin-top: 14px;
}
.tl-park-img img {
  width: 100%; border-radius: 10px; object-fit: cover;
  max-height: 340px; display: block;
  cursor: zoom-in;
  transition: opacity 0.2s;
}
.tl-park-img img:hover { opacity: 0.88; }

.exchange-widget { background: rgba(255,255,255,0.04); border: 1px solid rgba(245,197,24,0.2); border-radius: 16px; padding: 20px 28px; margin-bottom: 48px; }
.exchange-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.exchange-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.exchange-rate-display { display: flex; align-items: center; gap: 10px; }
.exchange-flag { font-size: 1.3rem; }
.exchange-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.exchange-eq { color: var(--gray); }
.exchange-value { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
.exchange-source { font-size: 0.72rem; color: var(--gray); }

.prices-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; align-items: start; }
.price-card-v2 { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 36px 28px; position: relative; display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s; }
.price-card-v2:hover { transform: translateY(-6px); border-color: rgba(245,197,24,0.3); }
.price-card-v2--featured { background: linear-gradient(140deg,#0d2d6e,#1e1b4b); border-color: rgba(245,197,24,0.4); box-shadow: 0 20px 60px rgba(13,45,110,0.4); transform: scale(1.03); }
.price-card-v2--featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge-top { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--blue-dark); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 5px 18px; border-radius: 50px; white-space: nowrap; }
.price-room-type { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.price-people { font-size: 0.82rem; color: var(--gray); margin-bottom: 20px; }
.price-usd { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.price-usd span { font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 600; color: rgba(245,197,24,0.7); }
.price-mxn-label { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-bottom: 4px; }
.price-mxn-note { font-size: 0.72rem; color: var(--gray); margin-bottom: 24px; }
.price-includes { margin-bottom: 28px; flex: 1; }
.price-includes li { font-size: 0.85rem; color: rgba(255,255,255,0.75); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 8px; }

.payment-plan { background: rgba(245,197,24,0.05); border: 1px solid rgba(245,197,24,0.15); border-radius: 20px; padding: 48px 40px; margin-bottom: 48px; }
.payment-plan-inner { max-width: 900px; margin: 0 auto; }
.payment-plan h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 12px; }
.payment-plan > .payment-plan-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-weight: 300; line-height: 1.7; }
.payment-steps-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.ps-step { display: flex; gap: 14px; align-items: flex-start; flex: 1; min-width: 160px; }
.ps-num { width: 36px; height: 36px; background: var(--gold); color: var(--blue-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; }
.ps-step strong { display: block; font-size: 0.88rem; margin-bottom: 4px; }
.ps-step p { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 300; }
.ps-arrow { color: var(--gold); font-size: 1.4rem; padding-top: 8px; opacity: 0.5; }

.budget-tips { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 16px; padding: 36px 32px; }
.budget-tips h3 { font-size: 1rem; font-weight: 700; margin-bottom: 24px; color: var(--gold-light); }
.budget-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.budget-item { display: flex; flex-direction: row; align-items: flex-start; gap: 14px; background: rgba(255,255,255,.04); border-radius: 12px; padding: 16px; }
.budget-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.budget-item-text { display: flex; flex-direction: column; gap: 4px; }
.budget-item strong { font-size: 0.88rem; color: var(--white); }
.budget-amount { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); }
.budget-item small { font-size: 0.75rem; color: var(--gray); }

/* ===========================
   PRACTICAL INFO
   =========================== */
#indicaciones { background: var(--blue-dark); }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.info-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 28px 24px; transition: transform 0.3s, border-color 0.3s; }
.info-card:hover { transform: translateY(-5px); border-color: rgba(245,197,24,0.2); }
.info-icon { font-size: 2rem; margin-bottom: 14px; }
.info-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; }
.info-card ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.info-card ul li { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; padding-left: 14px; position: relative; }
.info-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--gold); }
.info-note { font-size: 0.78rem; color: var(--gray); line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 12px; }

/* ===========================
   REGLAMENTO
   =========================== */
#reglamento { background: var(--blue-mid); }
.tabs { display: flex; gap: 8px; margin-bottom: 0; flex-wrap: wrap; }
.tab-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; padding: 12px 24px; border-radius: 10px 10px 0 0; cursor: pointer; transition: background 0.2s, color 0.2s, border-color 0.2s; }
.tab-btn--active { background: rgba(245,197,24,0.1); border-color: rgba(245,197,24,0.3); color: var(--gold); border-bottom-color: transparent; }
.tab-btn:hover:not(.tab-btn--active) { background: rgba(255,255,255,0.07); color: var(--white); }
.tab-content { display: none; background: rgba(255,255,255,0.03); border: 1px solid rgba(245,197,24,0.15); border-radius: 0 12px 12px 12px; padding: 36px 40px; margin-bottom: 40px; }
.tab-content--active { display: block; }
.reglamento-header { background: rgba(245,197,24,0.05); border-left: 3px solid var(--gold); padding: 16px 20px; border-radius: 0 8px 8px 0; margin-bottom: 28px; }
.reglamento-header p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8; }
.reglamento-list { padding-left: 0; list-style: none; counter-reset: reg-counter; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.reglamento-list > li {
  position: relative;
  font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  padding: 12px 16px 12px 50px;
  background: rgba(255,255,255,0.03); border-radius: 8px;
  counter-increment: reg-counter;
}
.reglamento-list > li::before {
  content: counter(reg-counter);
  position: absolute;
  left: 14px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.35);
  border-radius: 50%;
  color: var(--gold);
  font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; flex-shrink: 0;
}
.reglamento-list.reglamento-list--bullets { counter-reset: none; }
.reglamento-list.reglamento-list--bullets li { list-style: disc; margin-left: 20px; background: none; padding: 4px 0; border-radius: 0; }
.reglamento-list.reglamento-list--bullets li::before { display: none; }
.reglamento-list.reglamento-list--bullets li::marker { color: var(--gold); }
li.reg-importante { background: rgba(239,68,68,0.08) !important; border-left: 3px solid rgba(239,68,68,0.5); }
.reglamento-list li strong { color: var(--white); }
.reglamento-firma { margin-top: 24px; padding: 16px 20px; background: rgba(255,255,255,0.03); border-radius: 8px; font-size: 0.82rem; color: var(--gray); line-height: 1.8; }
.disney-reg-section { margin-bottom: 24px; }
.disney-reg-section h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold-light); margin-bottom: 12px; }
.reg-importante-box { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.2); border-radius: 10px; padding: 20px; }
.reg-importante-box h4 { color: #fca5a5; }
.reg-importante-box p { font-size: 0.87rem; color: rgba(255,255,255,0.7); line-height: 1.7; }
.reglamento-cta { text-align: center; margin-top: 16px; }
.reglamento-cta p { color: rgba(255,255,255,0.6); margin-bottom: 16px; font-size: 0.9rem; }

/* ===========================
   CONTACT
   =========================== */
#contact { padding: 140px 0; text-align: center; overflow: hidden; }
.contact-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, #0d2d6e 0%, #050e1f 70%); }
.contact-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.contact-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.5rem); line-height: 1.15; margin: 16px 0 24px; }
.contact-inner > p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 40px; font-weight: 300; }
.contact-cards { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.contact-card { display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; padding: 20px 28px; transition: transform 0.25s, background 0.25s, border-color 0.25s; }
.contact-card:hover { transform: translateY(-4px); background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.3); }
.contact-icon { font-size: 1.8rem; }
.contact-card strong { display: block; font-size: 0.72rem; color: var(--gray); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.contact-card span { font-size: 1rem; font-weight: 700; color: var(--white); }
.contact-name { font-size: 0.85rem; color: var(--gray); margin-bottom: 32px; }

/* ===========================
   FOOTER
   =========================== */
footer { background: #020912; padding: 48px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); margin-bottom: 12px; }
footer p { color: rgba(255,255,255,0.3); font-size: 0.8rem; line-height: 2.2; }

/* ===========================
   RESPONSIVE
   =========================== */

/* ---- Touch: gallery overlay siempre visible ---- */
@media (hover: none) {
  .gallery-overlay { opacity: 1; }
  .gallery-item:hover img { transform: none; }
}

/* ---- 1024px – tablet landscape ---- */
@media (max-width: 1024px) {
  .prices-grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .price-card-v2--featured { transform: none; order: -1; grid-column: span 2; }
  .price-card-v2--featured:hover { transform: translateY(-6px); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 900px – tablet portrait ---- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/9; max-height: 380px; }

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

  .timeline { padding-left: 80px; }
  .timeline::before { left: 54px; }
  .tl-date { left: -80px; width: 60px; }
  .tl-day { font-size: 0.6rem; }
  .tl-dd { font-size: 0.72rem; }

  .payment-plan { padding: 36px 28px; }
  .budget-grid { grid-template-columns: repeat(3, 1fr); }
  .cotizacion-teaser { gap: 20px; }
  .cotizacion-teaser-text h2 { font-size: 1.7rem; }

  .prices-grid-3 { grid-template-columns: 1fr 1fr; max-width: 100%; }
  .price-card-v2--featured { order: -1; grid-column: span 2; }
}

/* ---- 640px – móvil ---- */
@media (max-width: 640px) {
  /* Base */
  section { padding: 72px 0; }
  .container { padding: 0 16px; }

  /* Nav mobile */
  .nav-mobile a { font-size: 1rem; padding: 6px 0; }
  .nav-logo { font-size: 1.1rem; }

  /* Hero */
  .hero-content { padding: 0 16px; }
  .hero-badge { font-size: 0.65rem; letter-spacing: 0.12em; padding: 7px 14px; }
  .hero-sub { font-size: 0.9rem; line-height: 1.65; }
  .countdown-row { gap: 5px; margin-bottom: 28px; flex-wrap: nowrap; }
  .cd-block { min-width: 60px; padding: 10px 10px; border-radius: 10px; }
  .cd-num { font-size: 1.5rem; }
  .cd-sep { font-size: 1.1rem; margin-bottom: 14px; }
  .btn-primary { padding: 14px 28px; font-size: 0.85rem; }
  .btn-large { padding: 16px 32px; font-size: 0.9rem; }
  .scroll-hint { bottom: 20px; }

  /* About */
  .stats-row { gap: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 2rem; }
  .about-image { aspect-ratio: 4/3; max-height: 280px; }

  /* Trip cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Itinerary */
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .tl-item {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 16px;
  }
  .tl-date {
    position: static; width: auto; text-align: left; padding: 0 0 8px 0;
    display: flex; align-items: center; gap: 8px;
  }
  .tl-day { font-size: 0.7rem; }
  .tl-dd { font-size: 0.75rem; margin-top: 0; }
  .tl-dot { display: none; }
  .tl-card { grid-column: auto; border-radius: 12px; padding: 18px 20px; }
  .tl-card:hover { transform: none; }
  .tl-card h3 { font-size: 0.95rem; }
  .tl-card p { font-size: 0.82rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-item--wide { grid-column: span 2; aspect-ratio: 16/9; }
  .gallery-overlay { opacity: 1; }

  /* Deadline banner */
  .deadline-banner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px 20px; }
  .deadline-countdown { justify-content: flex-start; gap: 5px; }
  .dl-block { min-width: 52px; padding: 8px 10px; }
  .dl-num { font-size: 1.2rem; }

  /* Exchange widget */
  .exchange-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .exchange-rate-display { flex-wrap: wrap; gap: 8px; }

  /* Prices */
  .prices-grid-3 { max-width: 100%; grid-template-columns: 1fr; gap: 20px; }
  .price-card-v2 { padding: 28px 20px; }
  .price-usd { font-size: 2rem; }

  /* Payment plan */
  .payment-plan { padding: 28px 20px; }
}

/* ===========================
   GALLERY — PRÓXIMAMENTE 2026
   =========================== */
.gallery-item--prox {
  background: linear-gradient(135deg, #07152b 0%, #0d2d6e 60%, #1a0a3d 100%);
  border: 1px solid rgba(245,197,24,.25);
  cursor: default;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item--prox .gallery-overlay { background: rgba(5,14,31,.6); }
.gallery-prox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.gallery-prox-year {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.gallery-prox-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ===========================
   EARLY BIRD BANNER
   =========================== */
.early-bird-wrap {
  margin: 28px 0;
  border-radius: 16px;
  border: 1.5px solid rgba(245,197,24,.4);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245,197,24,.08) 0%, rgba(255,224,102,.04) 100%);
}
.early-bird-teaser {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background .2s;
}
.early-bird-teaser:hover { background: rgba(245,197,24,.06); }
.eb-icon { font-size: 1.6rem; flex-shrink: 0; }
.eb-text { flex: 1; }
.eb-text strong { display: block; color: var(--gold); font-size: 1rem; margin-bottom: 2px; }
.eb-sub { font-size: .82rem; color: rgba(255,255,255,.6); }
.eb-arrow {
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s;
}
.early-bird-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 24px;
}
.early-bird-details.open {
  max-height: 320px;
  padding: 4px 24px 24px;
}
.eb-details-title { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.eb-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.eb-list li { font-size: .95rem; color: rgba(255,255,255,.9); }
.eb-cta { display: inline-block; }

/* ===========================
   COTIZACIÓN FORM SECTION
   =========================== */
#cotizacion { padding: 80px 0; background: linear-gradient(180deg, var(--blue-dark) 0%, #060e1e 100%); }

/* Teaser (siempre visible) */
.cotizacion-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto 0;
  flex-wrap: wrap;
}
.cotizacion-teaser-text .section-tag { margin-bottom: 10px; display: inline-block; }
.cotizacion-teaser-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 8px; }
.cotizacion-teaser-text p { color: rgba(255,255,255,.65); font-size: .95rem; margin: 0; }
.cotizacion-open-btn { flex-shrink: 0; white-space: nowrap; }

/* Collapse */
.cotizacion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  max-width: 780px;
  margin: 0 auto;
}
.cotizacion-collapse.open { max-height: 1800px; }

.cotizacion-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
  margin-top: 28px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-hint { font-weight: 400; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,.4); }
.form-section-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 0 0 12px;
}
.form-group input {
  background: #0c1a35;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245,197,24,.06);
}
.form-group input::placeholder { color: rgba(255,255,255,.3); }

/* Room counters */
.room-counters { display: flex; flex-direction: column; gap: 4px; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.08); }
.room-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  gap: 16px;
  transition: background .2s;
}
.room-counter-row:hover { background: rgba(255,255,255,.06); }
.room-counter-info { flex: 1; }
.room-name { display: block; font-weight: 700; font-size: .95rem; color: #fff; margin-bottom: 2px; }
.room-badge {
  display: inline-block;
  background: rgba(245,197,24,.15);
  color: var(--gold);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}
.room-price { font-size: .8rem; color: rgba(255,255,255,.5); }
.room-counter-ctrl { display: flex; align-items: center; gap: 12px; }
.room-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.room-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.room-count { font-size: 1.1rem; font-weight: 700; min-width: 20px; text-align: center; color: var(--gold); }

.cotizacion-send-btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }
.form-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin-top: 12px;
}

/* ===========================
   VISA SUPPORT SECTION
   =========================== */
#visa { padding: 0 0 80px; background: linear-gradient(180deg, #060e1e 0%, var(--blue-dark) 100%); }
.visa-support-inner {
  background: linear-gradient(135deg, rgba(30,80,200,.1) 0%, rgba(10,30,80,.18) 100%);
  border: 1px solid rgba(100,150,255,.2);
  border-radius: 20px;
  padding: 36px 40px;
  margin-top: 28px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.visa-flag-wrap { font-size: 3.5rem; flex-shrink: 0; line-height: 1; }
.visa-content { flex: 1; }
.visa-tag {
  display: inline-block;
  background: rgba(100,150,255,.15);
  border: 1px solid rgba(100,150,255,.3);
  color: #88aaff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.visa-content h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 10px; }
.visa-content p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 18px; }
.visa-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.visa-chip {
  background: rgba(100,150,255,.1);
  border: 1px solid rgba(100,150,255,.25);
  color: #aac4ff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.visa-form-row { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; align-items: flex-end; }
.visa-field { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 160px; }
.visa-field--sm { flex: 0 0 180px; }
.visa-field-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: rgba(255,255,255,.6); }
.visa-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: .95rem;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.visa-input:focus { outline: none; border-color: #88aaff; background: rgba(100,150,255,.06); }
.visa-input::placeholder { color: rgba(255,255,255,.3); }
.visa-agent-name { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.visa-agent-name strong { color: #fff; }
.visa-btns { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 700px) {
  .visa-support-card { flex-direction: column; gap: 20px; padding: 28px 20px; }
  .visa-btns { flex-direction: column; }
  .visa-btns .btn-primary, .visa-btns .btn-outline { text-align: center; }
  .visa-field--sm { flex: 1 1 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .cotizacion-form { padding: 24px 16px; }
  .cotizacion-teaser { flex-direction: column; align-items: flex-start; }
  .cotizacion-teaser-text h2 { font-size: 1.5rem; }
  .cotizacion-open-btn { width: 100%; text-align: center; }
  .early-bird-teaser { flex-wrap: wrap; }
  .room-counter-row { flex-wrap: wrap; gap: 10px; }
}
}

/* ---- 640px – continuación (estilos que estaban sueltos) ---- */
@media (max-width: 640px) {
  .payment-steps-row { flex-direction: column; gap: 20px; }
  .ps-arrow { display: none; }

  /* Budget */
  .budget-tips { padding: 24px 18px; }

  /* Info */
  .info-grid { grid-template-columns: 1fr; }

  /* Reglamento tabs */
  .tabs { flex-direction: column; gap: 4px; }
  .tab-btn { border-radius: 10px; text-align: left; border-bottom-color: rgba(255,255,255,0.1) !important; }
  .tab-btn--active { border-radius: 10px; }
  .tab-content { border-radius: 12px; padding: 20px 16px; }
  .disney-reg-section { margin-bottom: 20px; }

  /* Contact */
  .contact-cards { flex-direction: column; align-items: stretch; }
  .contact-card { justify-content: center; }

  /* Section headers */
  .section-header { margin-bottom: 48px; }
  .section-desc { font-size: 0.9rem; }
}

/* ---- 480px – móvil pequeño ---- */
@media (max-width: 480px) {
  section { padding: 60px 0; }

  /* Hero */
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .hero-sub { font-size: 0.85rem; }
  .countdown-row { gap: 3px; }
  .cd-block { min-width: 50px; padding: 8px 7px; }
  .cd-num { font-size: 1.25rem; }
  .cd-label { font-size: 0.55rem; }
  .cd-sep { font-size: 0.95rem; margin-bottom: 12px; }

  /* Gallery: 1 columna en pantallas muy pequeñas */
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; aspect-ratio: 4/3; }

  /* Stats */
  .stats-row { gap: 14px; }
  .stat-num { font-size: 1.7rem; }

  /* Price cards */
  .price-card-v2 { padding: 24px 16px; }
  .price-usd { font-size: 1.8rem; }

  /* Deadline */
  .deadline-banner { padding: 14px 16px; }
  .dl-block { min-width: 46px; }
  .dl-num { font-size: 1.1rem; }

  /* Budget — 2 columnas en móvil pequeño */
  .budget-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .budget-item { padding: 12px 10px; gap: 10px; }
  .budget-icon { font-size: 1.4rem; }
  .budget-item-text strong { font-size: .8rem; }
  .budget-amount { font-size: .85rem; }

  /* Cotización colapsable */
  .cotizacion-teaser { flex-direction: column; align-items: flex-start; }
  .cotizacion-teaser-text h2 { font-size: 1.4rem; }
  .cotizacion-open-btn { width: 100%; text-align: center; }
  .cotizacion-form { padding: 18px 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .room-counter-row { padding: 12px; }

  /* Visa */
  .visa-support-inner { padding: 20px 16px; }
  .visa-btns { flex-direction: column; }

  /* Early bird */
  .early-bird-teaser { padding: 14px 16px; gap: 10px; }
  .eb-text strong { font-size: .9rem; }

  /* Video */
  .video-featured { margin-bottom: 32px; }

  /* Footer */
  footer { padding: 36px 0; }
  footer p { font-size: 0.75rem; }
}

/* ===========================
   PARK EXPAND CARDS (About)
   =========================== */
.parks-expand-row {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.park-expand-card {
  flex: 1;
  min-width: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s;
}
.park-expand-card.open { border-color: rgba(255,255,255,0.2); }
.park-expand-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
  gap: 8px;
}
.park-expand-disney .park-expand-btn {
  background: rgba(30, 100, 220, 0.2);
}
.park-expand-disney .park-expand-btn:hover {
  background: rgba(30, 100, 220, 0.32);
}
.park-expand-universal .park-expand-btn {
  background: rgba(124, 58, 237, 0.2);
}
.park-expand-universal .park-expand-btn:hover {
  background: rgba(124, 58, 237, 0.32);
}
.park-expand-arrow {
  transition: transform 0.3s;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.park-expand-card.open .park-expand-arrow { transform: rotate(180deg); }
.park-expand-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: rgba(255,255,255,0.03);
  padding: 0 18px;
}
.park-expand-card.open .park-expand-list {
  max-height: 260px;
  padding: 12px 18px;
}
.park-expand-list span {
  display: block;
  padding: 7px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Montserrat', sans-serif;
}
.park-expand-list span:last-child { border-bottom: none; }

/* Disney conduct badge */
.disney-conduct-badge {
  display: inline-block;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 20px;
  border-radius: 40px;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
}
