/* ============================================================
   EL MUNDO IMPOSIBLE — Design System v3 · NEON PALETTE
   purple · neon-yellow · hot-pink
   ============================================================ */

:root {
  --black:   #03010a;
  --dark:    #07030f;
  --dark2:   #0e0620;
  --dark3:   #160a30;
  --purple:  #b44fff;
  --purple2: #7c22e8;
  --purple3: #d580ff;
  --yellow:  #e8ff00;
  --yellow2: #c8e000;
  --pink:    #ff0099;
  --pink2:   #ff40c0;
  --white:   #ffffff;
  --grey:    #8a7aaa;
  --grey2:   #5a4a7a;
  --card-bg: rgba(180,79,255,.06);
  --card-border: rgba(180,79,255,.18);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Outfit', sans-serif;
  --radius:    20px;
  --radius-lg: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--pink);
  overflow: hidden;
  padding: 11px 0;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(12px,1.6vw,17px);
  letter-spacing: .12em;
  color: var(--black);
  padding: 0 22px;
}
.ticker-track span::before { content: "★"; margin-right: 14px; color: var(--yellow); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky; top: 0; z-index: 90;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 13px clamp(16px,4vw,56px);
  background: rgba(7,3,15,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180,79,255,.22);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: clamp(15px,2vw,23px);
  letter-spacing: .06em; color: var(--white); flex-shrink: 0;
}
.brand img { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.brand .logo-word { color: var(--yellow); }
.nav { display: flex; align-items: center; gap: clamp(10px,1.8vw,26px); font-weight: 700; font-size: .9rem; }
.nav a { color: var(--grey); transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a.active { border-bottom: 2px solid var(--yellow); padding-bottom: 2px; }
.nav-cta {
  background: var(--yellow); color: var(--black) !important;
  padding: 10px 20px; border-radius: 999px; font-weight: 900;
  border-bottom: 0 !important;
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,255,0,.4); }
.menu-btn { display: none; border: 0; background: transparent; color: var(--white); padding: 8px; font-size: 24px; line-height: 1; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple3);
}
.eyebrow::before { content: ''; display: block; width: 22px; height: 2px; background: var(--purple3); flex-shrink: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-weight: 900; font-size: .98rem; padding: 14px 28px;
  border-radius: 999px; border: 0;
  transition: transform .15s, box-shadow .15s; letter-spacing: .02em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(232,255,0,.45); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(180,79,255,.5); color: var(--white);
  font-weight: 700; font-size: .98rem; padding: 12px 24px;
  border-radius: 999px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.btn-ghost:hover { border-color: var(--purple3); background: rgba(180,79,255,.1); box-shadow: 0 0 24px rgba(180,79,255,.2); }
.btn-pink {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: var(--white);
  font-weight: 900; font-size: 1rem; padding: 15px 34px;
  border-radius: 999px;
  transition: transform .15s, box-shadow .15s;
}
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(255,0,153,.45); }

/* ===== HERO ===== */
.hero {
  min-height: calc(100svh - 96px);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px,6vw,90px) clamp(20px,4vw,64px);
  background: linear-gradient(135deg, var(--dark) 55%, rgba(124,34,232,.08));
  position: relative;
}
.hero-left::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(180,79,255,.4), transparent);
}
.hero-left h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem,10vw,9rem);
  line-height: .88; letter-spacing: .02em; color: var(--white); margin-bottom: 24px;
}
.hero-left h1 .accent { color: var(--yellow); display: block; }
.hero-left h1 .accent-pink { color: var(--pink); display: block; }
.hero-lead { font-size: clamp(1rem,1.8vw,1.25rem); color: var(--grey); max-width: 480px; line-height: 1.65; margin-bottom: 36px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge { background: rgba(180,79,255,.1); border: 1px solid rgba(180,79,255,.25); border-radius: 999px; padding: 7px 13px; font-weight: 700; font-size: .82rem; color: var(--white); }
.hero-right { position: relative; overflow: hidden; background: var(--dark2); }
.hero-animation { position: relative; width: 100%; height: 100%; min-height: 520px; display: flex; align-items: center; justify-content: center; isolation: isolate; }
.hero-bg-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(180,79,255,.14) 0%, transparent 70%); pointer-events: none; }
.hero-image-wrapper { position: relative; z-index: 5; width: min(100%,600px); padding: clamp(14px,2.5vw,28px); animation: floatHero 5s ease-in-out infinite; }
.hero-image { width: 100%; height: min(70vh,620px); object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 80px rgba(180,79,255,.12); }
.ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(180,79,255,.12); pointer-events: none; animation: rotateRing linear infinite; }
.ring-1 { width: 60%; aspect-ratio: 1; animation-duration: 18s; }
.ring-2 { width: 80%; aspect-ratio: 1; animation-duration: 26s; animation-direction: reverse; border-color: rgba(255,0,153,.1); }
.ring-3 { width: 96%; aspect-ratio: 1; animation-duration: 38s; border-color: rgba(232,255,0,.07); }
.fcard { position: absolute; background: rgba(7,3,15,.95); backdrop-filter: blur(12px); border: 1px solid rgba(180,79,255,.25); padding: 10px 14px; border-radius: 16px; font-weight: 800; font-size: clamp(11px,1.2vw,14px); box-shadow: 0 8px 28px rgba(0,0,0,.4); z-index: 10; white-space: nowrap; animation: floatCard 4s ease-in-out infinite; }
.fcard .em { margin-right: 5px; }
.fcard-1 { top: 10%; left: 2%; animation-delay: 0s; border-color: rgba(232,255,0,.4); }
.fcard-2 { bottom: 12%; left: 3%; animation-delay: 1.3s; border-color: rgba(180,79,255,.45); }
.fcard-3 { top: 20%; right: 2%; animation-delay: 2.4s; border-color: rgba(255,0,153,.4); }
@keyframes floatHero { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: clamp(52px,8vw,100px) clamp(16px,4vw,56px) clamp(40px,6vw,80px);
  background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(180,79,255,.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem,7vw,6rem); letter-spacing: .03em; line-height: .9; color: var(--white); max-width: 900px; margin-bottom: 18px; }
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { font-size: clamp(1rem,1.8vw,1.2rem); color: var(--grey); max-width: 640px; margin-bottom: 28px; line-height: 1.65; }
.page-hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero .eyebrow { margin-bottom: 14px; }

/* ===== SECTIONS ===== */
.section { padding: clamp(52px,6vw,90px) clamp(16px,4vw,56px); }
.section-head { text-align: center; margin-bottom: clamp(36px,5vw,54px); }
.section-head .eyebrow { justify-content: center; margin-bottom: 12px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2.4rem,5.5vw,5rem); letter-spacing: .03em; line-height: .92; color: var(--white); }
.section-head h2 .accent { color: var(--yellow); }
.section-head h2 .accent-pink { color: var(--pink); }
.section-head p { font-size: clamp(.93rem,1.5vw,1.1rem); color: var(--grey); max-width: 580px; margin: 14px auto 0; line-height: 1.65; }

/* ===== CARDS ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; max-width: 1360px; margin: 0 auto; }
.card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 26px 22px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.card:hover { border-color: rgba(180,79,255,.5); transform: translateY(-4px); box-shadow: 0 0 32px rgba(180,79,255,.1); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.08rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.card p { font-size: .9rem; color: var(--grey); line-height: 1.6; }

/* ===== HIGHLIGHT BAND ===== */
.highlight-band {
  background: linear-gradient(90deg, var(--purple2), var(--pink));
  color: var(--white); padding: 18px clamp(16px,4vw,56px);
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center;
}
.highlight-band strong { font-family: var(--font-display); font-size: clamp(1.2rem,2.5vw,1.8rem); letter-spacing: .04em; color: var(--yellow); }
.highlight-band span { font-weight: 700; font-size: clamp(.85rem,1.3vw,1rem); opacity: .85; }
.highlight-band .sep { opacity: .4; font-size: 1.2rem; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(90deg, var(--purple2) 0%, var(--pink) 100%); color: var(--white); padding: 36px clamp(16px,4vw,56px); }
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 960px; margin: 0 auto; text-align: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,4rem); letter-spacing: .02em; line-height: 1; color: var(--yellow); }
.stat-label { font-size: .82rem; font-weight: 700; opacity: .8; margin-top: 4px; }

/* ===== GRID LIST ===== */
.grid-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; max-width: 1360px; margin: 0 auto; }
.grid-list-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 16px; padding: 16px 18px; font-weight: 800; font-size: .93rem; display: flex; align-items: center; gap: 10px; transition: border-color .2s; }
.grid-list-item:hover { border-color: rgba(255,0,153,.4); }
.grid-list-item .bullet { color: var(--pink); font-size: 1.1rem; flex-shrink: 0; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item:hover { border-color: rgba(180,79,255,.45); }
.faq-item summary { font-weight: 900; font-size: 1rem; color: var(--white); cursor: pointer; list-style: none; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--yellow); flex-shrink: 0; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--grey); font-size: .95rem; line-height: 1.7; border-top: 1px solid var(--card-border); padding-top: 16px; }

/* ===== BOOKING FORM ===== */
.form-wrap { max-width: 760px; margin: 0 auto; }
.booking-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-form label { display: flex; flex-direction: column; gap: 7px; font-weight: 800; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase; color: var(--grey); }
.booking-form input, .booking-form select, .booking-form textarea {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 13px 16px; font: inherit; font-size: .97rem;
  color: var(--white); transition: border-color .2s; outline: none; -webkit-appearance: none;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--purple3); box-shadow: 0 0 0 3px rgba(180,79,255,.15); }
.booking-form select option { background: var(--dark2); color: var(--white); }
.booking-form input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1); }
.booking-form .full { grid-column: 1/-1; }
.booking-form textarea { resize: vertical; min-height: 100px; }
.form-notice { grid-column: 1/-1; background: rgba(232,255,0,.07); border: 1px solid rgba(232,255,0,.2); border-radius: 14px; padding: 14px 18px; font-weight: 800; font-size: .9rem; color: var(--yellow); }
.form-submit { grid-column: 1/-1; display: flex; justify-content: center; margin-top: 8px; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 960px; margin: 0 auto; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 36px; left: calc(16.6% + 27px); right: calc(16.6% + 27px); height: 2px; background: linear-gradient(90deg, var(--yellow), var(--pink)); pointer-events: none; }
.step { text-align: center; padding: 28px 20px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--yellow); color: var(--black); font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 14px; }
.step h3 { font-weight: 900; font-size: 1.03rem; color: var(--white); margin-bottom: 8px; }
.step p { color: var(--grey); font-size: .88rem; line-height: 1.6; }

/* ===== EXP SHOWCASE ===== */
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 1360px; margin: 0 auto; }
.exp-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.exp-card.tall { aspect-ratio: 3/4; }
.exp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.exp-card:hover img { transform: scale(1.05); }
.exp-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(14,6,32,.9) 0%,rgba(14,6,32,.05) 55%,transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(18px,3vw,34px); }
.exp-tag { display: inline-block; background: var(--pink); color: var(--white); font-size: .68rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 10px; width: fit-content; }
.exp-overlay h3 { font-family: var(--font-display); font-size: clamp(1.6rem,3vw,2.8rem); letter-spacing: .04em; line-height: .95; color: var(--white); margin-bottom: 10px; }
.exp-overlay p { color: rgba(255,255,255,.72); font-size: clamp(.85rem,1.2vw,.98rem); max-width: 380px; line-height: 1.5; }

/* ===== LOCATION ===== */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,4vw,60px); align-items: start; max-width: 1200px; margin: 0 auto; }
.loc-info h2 { font-family: var(--font-display); font-size: clamp(2rem,4vw,3.8rem); letter-spacing: .03em; line-height: .92; color: var(--white); margin-bottom: 16px; }
.loc-info h2 .accent { color: var(--yellow); }
.loc-info p { color: var(--grey); font-size: .98rem; line-height: 1.7; margin-bottom: 24px; }
.loc-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.loc-row { display: flex; align-items: flex-start; gap: 14px; font-size: .95rem; font-weight: 700; line-height: 1.5; }
.loc-row .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }
/* MAP EMBED */
.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 2px solid rgba(180,79,255,.3);
  box-shadow: 0 0 40px rgba(180,79,255,.12);
  position: relative;
}
.map-embed-wrap iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
  filter: invert(90%) hue-rotate(200deg) saturate(1.4) brightness(0.85);
}

/* ===== GROUPS ===== */
.group-types { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1100px; margin: 0 auto; }
.group-card { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 30px 24px; transition: border-color .25s, transform .25s, box-shadow .25s; }
.group-card:hover { border-color: rgba(255,0,153,.45); transform: translateY(-4px); box-shadow: 0 0 32px rgba(255,0,153,.1); }
.group-card .g-icon { font-size: 2.6rem; margin-bottom: 16px; display: block; }
.group-card h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .04em; color: var(--white); margin-bottom: 10px; }
.group-card p { font-size: .93rem; color: var(--grey); line-height: 1.65; }
.group-card .tag { display: inline-block; background: rgba(255,0,153,.12); border: 1px solid rgba(255,0,153,.3); color: var(--pink2); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }

/* ===== SPIRAL + APERTURA ===== */
.spiral-section { background: #0a0a12; padding: clamp(52px,7vw,90px) clamp(16px,4vw,56px) 0; overflow: hidden; }
.spiral-canvas-wrap { width: min(100%,560px); aspect-ratio: 1; margin: 0 auto; display: block; }
.spiral-canvas-wrap canvas { width: 100%; height: 100%; display: block; }
.apertura-band {
  background: linear-gradient(160deg, #07030f 0%, #0e0620 50%, #160830 100%);
  border-top: 1px solid rgba(180,79,255,.25);
  padding: clamp(36px,5vw,64px) clamp(16px,4vw,56px) clamp(52px,7vw,90px);
  text-align: center; position: relative; overflow: hidden;
}
.apertura-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(180,79,255,.18) 0%, transparent 60%); pointer-events: none; }
.apertura-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 900; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); border: 1px solid rgba(232,255,0,.35); padding: 7px 18px; border-radius: 999px; margin-bottom: 20px; animation: pillPulse 2.2s ease-in-out infinite; }
@keyframes pillPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,255,0,0); } 50% { box-shadow: 0 0 24px 6px rgba(232,255,0,.2); } }
.apertura-title { font-family: var(--font-display); font-size: clamp(3rem,9vw,8rem); letter-spacing: .04em; line-height: .88; color: var(--white); margin-bottom: 16px; position: relative; }
.apertura-title .accent { color: var(--yellow); }
.apertura-title .glow { color: var(--purple3); text-shadow: 0 0 40px rgba(180,79,255,.6); }
.apertura-sub { font-family: var(--font-body); font-size: clamp(1rem,1.8vw,1.2rem); font-weight: 700; color: rgba(255,255,255,.45); margin-bottom: 32px; letter-spacing: .04em; }
.apertura-sub em { color: var(--pink2); font-style: normal; }
.apertura-url { display: block; margin-top: 28px; font-family: var(--font-display); font-size: clamp(.9rem,1.4vw,1.1rem); letter-spacing: .24em; color: rgba(255,255,255,.18); }

/* ===== BOOKING PANEL ===== */
.booking-panel { background: linear-gradient(135deg, var(--pink) 0%, var(--purple2) 100%); padding: clamp(44px,6vw,80px) clamp(16px,4vw,56px); text-align: center; }
.booking-panel h2 { font-family: var(--font-display); font-size: clamp(2.4rem,6vw,5.5rem); letter-spacing: .03em; line-height: .9; color: var(--white); margin: 10px 0 18px; }
.booking-panel p { font-size: clamp(.92rem,1.5vw,1.1rem); font-weight: 700; color: rgba(255,255,255,.7); max-width: 540px; margin: 0 auto 28px; line-height: 1.65; }
.booking-panel .eyebrow { color: rgba(255,255,255,.55); }
.booking-note { margin-top: 14px; font-size: .83rem; font-weight: 700; color: rgba(255,255,255,.55); }

/* ===== FOOTER ===== */
.footer { background: var(--black); padding: clamp(36px,5vw,64px) clamp(16px,4vw,56px) 90px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; border-top: 1px solid rgba(180,79,255,.12); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .06em; }
.footer-brand .name .acc { color: var(--yellow); }
.footer-brand p { color: var(--grey); font-size: .88rem; max-width: 270px; line-height: 1.65; }
.footer-col h4 { font-weight: 900; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--purple3); margin-bottom: 12px; }
.footer-col p, .footer-col a { color: var(--grey); font-size: .87rem; line-height: 1.9; display: block; }
.footer-col a:hover { color: var(--yellow); }

/* ===== STICKY CTA ===== */
.sticky-cta { position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 95; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(7,3,15,.96); backdrop-filter: blur(20px); border: 1px solid rgba(180,79,255,.22); border-radius: 999px; padding: 8px 8px 8px 20px; box-shadow: 0 8px 40px rgba(180,79,255,.2); }
.sticky-cta-text { font-weight: 800; font-size: .88rem; color: var(--white); }
.sticky-cta-text strong { color: var(--yellow); }
.sticky-cta a { background: var(--yellow); color: var(--black); font-weight: 900; padding: 11px 22px; border-radius: 999px; font-size: .9rem; white-space: nowrap; }

/* ===== RESPONSIVE ===== */
@media(max-width:1060px){ .stats-inner{grid-template-columns:repeat(2,1fr)} }
@media(max-width:900px){
  .menu-btn{display:block}
  .nav{position:fixed;inset:auto 0 0 0;background:var(--dark2);border-top:1px solid rgba(180,79,255,.2);padding:18px 20px 34px;display:none;flex-direction:column;align-items:stretch;gap:4px;z-index:200}
  .nav.open{display:flex}
  .nav a{padding:12px 14px;border-radius:12px;font-size:1rem}
  .nav a:hover,.nav a.active{background:rgba(180,79,255,.1);border-bottom:0}
  .nav-cta{text-align:center;padding:14px}
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-right{min-height:55vw;max-height:500px}
  .hero-left::after{display:none}
  .exp-grid{grid-template-columns:1fr}
  .exp-card.tall{aspect-ratio:4/3}
  .location-grid{grid-template-columns:1fr}
  .group-types{grid-template-columns:1fr 1fr}
  .footer{grid-template-columns:1fr 1fr}
  .footer-brand{grid-column:1/-1}
  .steps-grid::before{display:none}
  .booking-form{grid-template-columns:1fr}
}
@media(max-width:600px){
  .hero-left h1{font-size:clamp(3.5rem,17vw,5rem)}
  .group-types{grid-template-columns:1fr}
  .steps-grid{grid-template-columns:1fr}
  .stats-inner{grid-template-columns:1fr 1fr}
  .footer{grid-template-columns:1fr}
  .sticky-cta-text{font-size:.78rem;max-width:155px}
  .ring{display:none}
  .fcard{position:relative!important;inset:auto!important;display:inline-flex;margin:5px;animation:none;transform:none}
  .hero-animation{flex-wrap:wrap;padding:18px;flex-direction:column;align-items:center}
  .hero-image-wrapper{width:100%;padding:0;margin-bottom:14px}
  .hero-image{aspect-ratio:4/3;height:auto}
  .grid-list{grid-template-columns:1fr}
  .apertura-title{font-size:clamp(2.6rem,14vw,4rem)}
}
@media(prefers-reduced-motion:reduce){
  .hero-image-wrapper,.ring,.fcard,.ticker-track{animation:none!important}
}
