/* ================================================================
   METROBOWL GUATEMALA — STYLE.CSS v2
   Brand Colors: Navy #1B2058 | Pink #E8196A | Aqua #00C8C8
   Aesthetic: Bold Entertainment — Vivid, Energetic, Professional
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Outfit:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ---- TOKENS ---- */
:root {
  --navy:        #1B2058;
  --navy-dark:   #10163a;
  --navy-deep:   #0a0e28;
  --pink:        #E8196A;
  --pink-light:  #ff3d85;
  --pink-glow:   rgba(232, 25, 106, 0.3);
  --aqua:        #00C8C8;
  --aqua-light:  #33d9d9;
  --aqua-glow:   rgba(0, 200, 200, 0.25);
  --white:       #ffffff;
  --off-white:   #f0f4ff;
  --gray:        #8892b8;
  --light:       #c8d0ee;
  --card-bg:     rgba(27, 32, 88, 0.6);
  --border:      rgba(255,255,255,0.1);
  --border-aqua: rgba(0, 200, 200, 0.25);
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Outfit', sans-serif;
  --font-alt:    'Bebas Neue', sans-serif;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --trans:       0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:      0 12px 48px rgba(0,0,0,0.5);
  --shadow-pink: 0 0 48px var(--pink-glow);
  --shadow-aqua: 0 0 48px var(--aqua-glow);
}

/* ---- RESET ---- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy-deep);
  color: var(--light);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aqua);
}
.text-pink  { color: var(--pink); }
.text-aqua  { color: var(--aqua); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }

/* ---- LAYOUT ---- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
section { padding: 7rem 0; }

/* ================================================================
   CUSTOM CURSOR
   ================================================================ */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--pink);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 2px solid rgba(0,200,200,0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

/* ================================================================
   ANNOUNCEMENT STRIP
   ================================================================ */
.strip {
  background: linear-gradient(90deg, var(--pink), var(--aqua), var(--pink));
  background-size: 200% 100%;
  animation: stripFlow 4s linear infinite;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  position: relative;
  z-index: 101;
}
@keyframes stripFlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(10, 14, 40, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img {
  height: 68px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  display: block;
  filter: none;
}
.logo-text {
  font-family: var(--font-alt);
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1;
}
.logo-text .pink  { color: var(--pink); }
.logo-text .aqua  { color: var(--aqua); }
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  font-family: var(--font-body);
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 0.1rem;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.navbar-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  transition: color var(--trans);
}
.navbar-links a::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%; right: 50%;
  height: 2px;
  background: var(--aqua);
  border-radius: 2px;
  transition: left var(--trans), right var(--trans);
}
.navbar-links a:hover,
.navbar-links a.active { color: var(--white); }
.navbar-links a:hover::before,
.navbar-links a.active::before { left: 0; right: 0; }

.nav-reserve {
  background: var(--pink);
  color: white !important;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  box-shadow: 0 4px 20px var(--pink-glow);
  transition: all var(--trans) !important;
}
.nav-reserve::before { display: none !important; }
.nav-reserve:hover { background: var(--pink-light) !important; transform: translateY(-2px); box-shadow: 0 8px 32px var(--pink-glow) !important; }


@media (max-width: 768px) {
  .navbar-logo img { height: 56px; max-width: 240px; }
}
@media (max-width: 480px) {
  .navbar-logo img { height: 48px; max-width: 205px; }
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--pink); }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--trans);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-pink  { background: var(--pink); color: white; box-shadow: 0 6px 24px var(--pink-glow); }
.btn-pink:hover  { box-shadow: 0 12px 36px var(--pink-glow); }
.btn-aqua  { background: var(--aqua); color: var(--navy-deep); box-shadow: 0 6px 24px var(--aqua-glow); }
.btn-aqua:hover  { box-shadow: 0 12px 36px var(--aqua-glow); }
.btn-navy  { background: var(--navy); color: white; border: 1px solid var(--border); }
.btn-outline-pink { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline-pink:hover { background: var(--pink); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-lg  { padding: 1.1rem 2.8rem; font-size: 0.88rem; }
.btn-sm  { padding: 0.55rem 1.4rem; font-size: 0.72rem; }

/* ================================================================
   HERO — FULL CINEMA
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}
/* Background image via JS / unsplash */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('img/boliche-pistas-azules.jpeg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.22;
  transform: scale(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, var(--navy-deep) 0%, transparent 30%, transparent 60%, var(--navy-deep) 100%),
    linear-gradient(90deg, var(--navy-deep) 0%, transparent 55%);
}
.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}
.hero-circle.c1 { width: 500px; height: 500px; background: var(--pink); right: 5%; top: -10%; animation-delay: 0s; }
.hero-circle.c2 { width: 360px; height: 360px; background: var(--aqua); right: 25%; bottom: 5%; animation-delay: -3s; }
.hero-circle.c3 { width: 250px; height: 250px; background: var(--navy); left: 15%; top: 20%; animation-delay: -5s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  padding-top: 6rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: slideUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--aqua);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}
.hero-title {
  opacity: 0;
  animation: slideUp 0.9s 0.35s ease forwards;
  margin-bottom: 1.25rem;
}
.hero-title .line1 { display: block; }
.hero-title .line2 { display: block; color: var(--pink); -webkit-text-stroke: 0; }
.hero-title .line3 {
  display: block;
  -webkit-text-stroke: 2px var(--aqua);
  color: transparent;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: slideUp 0.9s 0.5s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: slideUp 0.9s 0.65s ease forwards;
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: slideUp 0.9s 0.8s ease forwards;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num .unit { color: var(--pink); font-size: 1.8rem; }
.stat-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* Hero right panel */
.hero-panel {
  opacity: 0;
  animation: slideRight 1s 0.6s ease forwards;
}
.hero-card {
  background: rgba(27, 32, 88, 0.7);
  border: 1px solid var(--border-aqua);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow), var(--shadow-aqua);
  position: relative;
}
.hero-card-img {
  height: 260px;
  overflow: hidden;
  position: relative;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.hero-card:hover .hero-card-img img { transform: scale(1.06); }
.hero-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(27,32,88,0.8), transparent);
}
.hero-card-body { padding: 1.6rem 1.8rem; }
.hero-card-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua); margin-bottom: 0.5rem; }
.hero-card-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.hero-card-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.hero-card-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--pink); }
.hero-card-price span { font-family: var(--font-body); font-size: 0.8rem; color: var(--gray); }
.hero-card-badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--aqua);
  color: var(--navy-deep);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  z-index: 2;
}

@keyframes slideUp    { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes slideRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 5;
  animation: fadeInUp 1s 1.5s ease both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--aqua), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; }
  40%  { transform: scaleY(1); transform-origin: top; }
  60%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeInUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* ================================================================
   PROMO TICKER
   ================================================================ */
.ticker-wrap {
  background: var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--navy), transparent); }

.ticker-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
}
.ticker-dot { color: var(--aqua); font-size: 1.2rem; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   SECTION HEADER
   ================================================================ */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.section-header .eyebrow { margin-bottom: 0.75rem; }
.section-header .display-lg { margin-bottom: 1rem; }
.section-header p { color: var(--gray); font-size: 1rem; max-width: 540px; }
.section-header.center p { margin: 0 auto; }

/* Decorative line under title */
.title-accent {
  display: inline-block;
  position: relative;
}
.title-accent::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 60%; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--aqua));
  border-radius: 2px;
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services-sec {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.services-sec::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,200,0.06), transparent 70%);
}

/* Big service cards — editorial layout */
.services-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.srv-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  group: true;
}
.srv-card.tall { grid-row: span 2; }

.srv-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}
.srv-card.tall .srv-card-inner { min-height: 680px; }

.srv-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.srv-card:hover .srv-card-img { transform: scale(1.08); }

.srv-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,40,0.95) 0%, rgba(10,14,40,0.4) 50%, transparent 100%);
  transition: background var(--trans);
}
.srv-card:hover .srv-card-overlay {
  background: linear-gradient(to top, rgba(10,14,40,0.98) 0%, rgba(10,14,40,0.55) 60%, rgba(10,14,40,0.2) 100%);
}

.srv-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  transform: translateY(0);
  transition: transform var(--trans);
}

.srv-card-number {
  font-family: var(--font-alt);
  font-size: 5rem;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
}
.srv-card-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 0.5rem;
}
.srv-card-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 0.75rem;
}
.srv-card.tall .srv-card-name { font-size: 3rem; }
.srv-card-desc {
  font-size: 0.87rem;
  color: rgba(200,208,238,0.8);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  margin-bottom: 0;
}
.srv-card:hover .srv-card-desc { max-height: 100px; opacity: 1; margin-bottom: 1rem; }
.srv-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}
.srv-card:hover .srv-card-arrow { opacity: 1; transform: translateX(0); }

/* Pink border accent on hover */
.srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color var(--trans);
  pointer-events: none;
  z-index: 3;
}
.srv-card:hover::after { border-color: rgba(232, 25, 106, 0.4); }

/* ================================================================
   PROMOTIONS / FEATURES
   ================================================================ */
.promos-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.promos-sec::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,25,106,0.08), transparent 70%);
}
.promos-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.promos-visual {
  position: relative;
}
.promos-img-main {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.promos-img-main img { width: 100%; height: 100%; object-fit: cover; }
.promos-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,25,106,0.15), transparent);
  z-index: 1;
  border-radius: var(--radius-xl);
}
.promos-img-float {
  position: absolute;
  bottom: -2rem; right: -2rem;
  width: 200px; height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 4px solid var(--navy);
  box-shadow: var(--shadow);
}
.promos-img-float img { width: 100%; height: 100%; object-fit: cover; }

.promo-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.promo-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--pink), var(--aqua));
  opacity: 0;
  transition: opacity var(--trans);
}
.promo-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(0,200,200,0.2); transform: translateX(6px); }
.promo-card:hover::before { opacity: 1; }
.promo-icon {
  width: 48px; height: 48px;
  background: rgba(232,25,106,0.15);
  border: 1px solid rgba(232,25,106,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.promo-icon img { width: 24px; height: 24px; object-fit: contain; }
.promo-icon-text { font-size: 1.3rem; }
.promo-title { font-weight: 700; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.promo-sub { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.promo-highlight { color: var(--aqua); font-weight: 700; }

/* ================================================================
   EVENTOS SECTION
   ================================================================ */
.events-sec { background: var(--navy-deep); }

.events-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.evt-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--trans);
}
.evt-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.evt-card-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.evt-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.evt-card:hover .evt-card-img img { transform: scale(1.07); }
.evt-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,40,0.92) 30%, transparent 100%);
}
.evt-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.evt-card-cat { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--aqua); margin-bottom: 0.4rem; }
.evt-card-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: white; text-transform: uppercase; margin-bottom: 0.5rem; line-height: 0.95; }
.evt-card-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--pink); font-weight: 900; }
.evt-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--pink);
  color: white;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  z-index: 2;
}

.events-cta {
  background: var(--navy);
  border: 1px solid var(--border-aqua);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.events-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,200,200,0.06), transparent);
}
.events-cta-text { position: relative; }
.events-cta-text .display-md { margin-bottom: 0.5rem; }
.events-cta-text p { color: var(--gray); font-size: 0.95rem; }
.events-cta-actions { display: flex; gap: 1rem; flex-shrink: 0; position: relative; }

/* ================================================================
   GALLERY ROW
   ================================================================ */
.gallery-sec { background: var(--navy); padding: 5rem 0; overflow: hidden; }
.gallery-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: galleryScroll 30s linear infinite;
}
.gallery-row:nth-child(2) { animation-direction: reverse; animation-duration: 22s; margin-top: 1rem; }
@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.gallery-item {
  width: 260px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-sec {
  background: var(--navy);
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(232,25,106,0.18), transparent),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,200,200,0.12), transparent);
}
.cta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-alt);
  font-size: 22vw;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  pointer-events: none;
}
.cta-sec .display-lg { position: relative; color: white; margin-bottom: 1rem; }
.cta-sec p { position: relative; color: var(--gray); font-size: 1.1rem; max-width: 520px; margin: 0 auto 3rem; }
.cta-actions { position: relative; display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.page-hero {
  padding: 11rem 0 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}
.page-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--navy-deep) 100%);
}
.page-hero-content { position: relative; }

/* Contact layout */
.contact-sec { background: var(--navy-deep); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-aside .eyebrow { margin-bottom: 1rem; }
.contact-aside .display-md { margin-bottom: 1.25rem; }
.contact-aside > p { color: var(--gray); margin-bottom: 3rem; line-height: 1.8; }

.cinfo-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.cinfo-icon {
  width: 46px; height: 46px;
  background: rgba(0,200,200,0.1);
  border: 1px solid rgba(0,200,200,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--aqua);
}
.cinfo-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--aqua); margin-bottom: 0.25rem; }
.cinfo-val { color: var(--light); font-size: 0.93rem; }

.hours-box {
  background: rgba(27,32,88,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 2rem;
}
.hours-box-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--gray); }
.hours-row .time { color: var(--white); font-weight: 500; }
.hours-row .time.special { color: var(--aqua); }

.social-row { display: flex; gap: 0.75rem; margin-top: 2rem; }
.soc-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--trans);
  cursor: pointer;
  color: var(--gray);
  text-decoration: none;
}
.soc-btn:hover { background: var(--pink); border-color: var(--pink); color: white; transform: translateY(-3px); }

/* Form */
.form-box {
  background: rgba(27,32,88,0.5);
  border: 1px solid var(--border-aqua);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(16px);
}
.form-box-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 0.3rem; text-transform: uppercase; }
.form-box-sub { color: var(--gray); font-size: 0.88rem; margin-bottom: 2rem; }

.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.25rem; }
.f-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.f-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--trans), background var(--trans), box-shadow var(--trans);
  resize: none;
}
.f-input::placeholder { color: rgba(136,146,184,0.6); }
.f-input:focus { border-color: var(--aqua); background: rgba(0,200,200,0.05); box-shadow: 0 0 0 3px rgba(0,200,200,0.1); }
select.f-input { cursor: pointer; }
select.f-input option { background: var(--navy); }
textarea.f-input { min-height: 130px; }

.f-submit { width: 100%; margin-top: 0.25rem; font-size: 0.88rem; }
.f-success {
  background: linear-gradient(135deg, rgba(0,200,200,0.12), rgba(0,200,200,0.05));
  border: 1px solid rgba(0,200,200,0.28);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  color: var(--aqua);
  font-size: 0.9rem;
  margin-top: 1rem;
  display: none;
  gap: .55rem;
  flex-direction: column;
}
.f-success strong {
  color: white;
  font-size: .98rem;
  letter-spacing: .02em;
}
.form-status {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.form-status.is-visible { display: flex; }
.form-status.sending {
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,200,200,.06));
  border-color: rgba(255,255,255,.12);
}
.form-status.success {
  background: linear-gradient(135deg, rgba(24,196,143,.14), rgba(0,215,230,.08));
  border-color: rgba(24,196,143,.28);
}
.form-status.error {
  background: linear-gradient(135deg, rgba(246,28,125,.12), rgba(255,255,255,.04));
  border-color: rgba(246,28,125,.24);
}
.form-status-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: 0 0 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.08);
  color: var(--aqua);
  border: 1px solid rgba(255,255,255,.08);
}
.form-status.success .form-status-icon { color: #78ffd0; }
.form-status.error .form-status-icon { color: #ff8ab9; }
.form-status-icon svg { width: 24px; height: 24px; }
.form-status-copy { min-width: 0; }
.form-status-title {
  color: white;
  font-weight: 700;
  font-size: .96rem;
  margin-bottom: .2rem;
}
.form-status-text {
  color: var(--gray);
  line-height: 1.65;
  font-size: .86rem;
}
.status-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: currentColor;
  animation: spin 0.85s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================================================
   SERVICIOS PAGE
   ================================================================ */
.srv-detail {
  padding: 6rem 0;
  position: relative;
}
.srv-detail:nth-child(even) { background: var(--navy); }
.srv-detail:nth-child(odd)  { background: var(--navy-deep); }
.srv-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.srv-detail-layout.rev { direction: rtl; }
.srv-detail-layout.rev > * { direction: ltr; }

.srv-detail-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  height: 440px;
}
.srv-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.srv-detail-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,25,106,0.15), transparent);
  z-index: 1;
}
.srv-detail-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(10,14,40,0.92);
  border: 1px solid var(--border-aqua);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  z-index: 2;
  backdrop-filter: blur(12px);
}
.srv-detail-img-badge .price { font-family: var(--font-display); font-size: 2rem; color: var(--pink); line-height: 1; }
.srv-detail-img-badge .price-label { font-size: 0.68rem; color: var(--gray); margin-top: 0.1rem; }

.srv-detail-text .eyebrow { margin-bottom: 1rem; }
.srv-detail-text .display-md { margin-bottom: 1.25rem; }
.srv-detail-text > p { color: var(--gray); margin-bottom: 1.75rem; line-height: 1.85; font-size: 0.98rem; }
.srv-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.srv-feat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--light);
}
.srv-feat-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--pink);
}

.price-chips { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.price-chip {
  background: rgba(27,32,88,0.8);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1.1rem;
  font-size: 0.78rem;
  color: var(--light);
}
.price-chip strong { color: var(--aqua); font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

/* ================================================================
   PACKAGES
   ================================================================ */
.packages-sec { background: var(--navy-deep); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.pkg-card {
  background: rgba(27,32,88,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  text-align: center;
  transition: all var(--trans);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--aqua));
  opacity: 0;
  transition: opacity var(--trans);
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow), var(--shadow-pink); border-color: rgba(232,25,106,0.3); }
.pkg-card:hover::before { opacity: 1; }
.pkg-card.featured {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(232,25,106,0.12), rgba(27,32,88,0.8));
}
.pkg-card.featured::before { opacity: 1; }
.pkg-best {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--pink), var(--aqua));
  color: var(--navy-deep);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
}
.pkg-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; text-transform: uppercase; color: white; margin-bottom: 0.5rem; }
.pkg-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--pink); line-height: 1; margin-bottom: 0.2rem; }
.pkg-price small { font-family: var(--font-body); font-size: 0.78rem; color: var(--gray); }
.pkg-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; margin: 1.1rem 0 1.5rem; }
.pkg-list { text-align: left; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.75rem; }
.pkg-list li { font-size: 0.82rem; color: var(--light); display: flex; gap: 0.6rem; align-items: flex-start; }
.pkg-list li::before { content: '✓'; color: var(--aqua); flex-shrink: 0; font-weight: 700; }

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--navy-dark);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}
.footer-brand p { color: var(--gray); font-size: 0.87rem; line-height: 1.8; margin-top: 1rem; max-width: 260px; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.87rem; color: var(--gray); transition: color var(--trans); }
.footer-links a:hover { color: var(--aqua); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: var(--gray); }
.footer-copy span { color: var(--pink); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.35s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .services-editorial { grid-template-columns: 1fr; }
  .srv-card.tall .srv-card-inner { min-height: 380px; }
  .promos-layout { grid-template-columns: 1fr; gap: 3rem; }
  .promos-img-float { display: none; }
  .events-strip { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .srv-detail-layout { grid-template-columns: 1fr; }
  .srv-detail-layout.rev { direction: ltr; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 5rem 0; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .services-editorial { grid-template-columns: 1fr; }
  .events-strip { grid-template-columns: 1fr; }
  .events-cta { flex-direction: column; text-align: center; }
  .events-cta-actions { justify-content: center; }
  .f-row { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Local MetroBowl photo adjustments */
.srv-card-img,
.hero-bg-img,
.page-hero-img {
  background-position: center;
  background-size: cover;
}
.gallery-item img,
.evt-card-img img,
.evt-full-card-img img,
.srv-detail-img img,
.promos-img-main img,
.promos-img-float img,
.hero-card-img img {
  object-position: center;
}


/* Ajustes de contenido solicitados por MetroBowl */
.promo-featured-card {
  background: linear-gradient(135deg, rgba(232,25,106,0.12), rgba(0,200,200,0.08));
  border-color: rgba(0,200,200,0.22);
}
.promo-note {
  margin-top: 0.35rem;
  color: var(--light);
  font-size: 0.78rem;
  font-weight: 600;
}
.promo-info-card .promo-sub {
  color: var(--light);
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; }
  .promo-card { padding: 1.1rem; }
}

/* === AJUSTE METROBOWL: imágenes promocionales 4:3 sin recorte === */
/* Estas reglas evitan que los artes nuevos se corten en las tarjetas,
   carrusel/galería y vista móvil. */
.evt-card-img,
.gallery-item,
.promos-img-main,
.promos-img-float {
  background: #060a1d;
}
.evt-card-img {
  height: auto;
  aspect-ratio: 4 / 3;
}
.gallery-item {
  width: 280px;
  height: 210px;
}
.evt-card-img img[src*="eventos-lobby-gradas"],
.evt-card-img img[src*="eventos-lobby-baranda"],
.evt-card-img img[src*="salon-1er-nivel"],
.evt-card-img img[src*="salon-2do-nivel"],
.gallery-item img[src*="eventos-lobby-gradas"],
.gallery-item img[src*="eventos-lobby-baranda"],
.gallery-item img[src*="salon-1er-nivel"],
.gallery-item img[src*="salon-2do-nivel"],
.promos-img-main img[src*="eventos-lobby-frente"],
.promos-img-main img[src*="promo-all-you-can-play"],
.promos-img-float img[src*="eventos-lobby-frente"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #060a1d;
}
.srv-card-img[style*="eventos-lobby-baranda"],
.srv-card-img[style*="eventos-lobby-gradas"],
.srv-card-img[style*="salon-1er-nivel"],
.srv-card-img[style*="salon-2do-nivel"],
.page-hero-img[style*="eventos-lobby-frente"] {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-color: #060a1d !important;
  background-position: center center !important;
}
@media (max-width: 768px) {
  .evt-card-img { aspect-ratio: 4 / 3; }
  .gallery-item { width: 240px; height: 180px; }
  .promos-img-main { height: auto; aspect-ratio: 4 / 3; }
}

.footer-logo-img {
  width: min(260px, 100%);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}


/* Iconos SVG personalizados */
.icon-svg {
  width: 22px;
  height: 22px;
  display: block;
}
.promo-icon .icon-svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.cinfo-icon .icon-svg {
  width: 22px;
  height: 22px;
  color: var(--aqua);
}
.soc-btn .social-svg {
  width: 18px;
  height: 18px;
  color: currentColor;
}
.pkg-best {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mini-badge-icon {
  width: 12px;
  height: 12px;
}
.eventos-feature-art {
  background: radial-gradient(circle at top right, rgba(0,200,200,0.16), rgba(27,32,88,0.75) 46%, rgba(6,10,30,0.96));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.eventos-feature-art img.eventos-art-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius-xl) - 8px);
}
.eventos-feature-art::before {
  background: linear-gradient(135deg, rgba(232,25,106,0.08), rgba(0,200,200,0.04));
}


/* === Ajustes responsive finales METRO BOWL Junio 2026 === */
@media (max-width: 900px) {
  .services-mini-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 640px) {
  .services-mini-grid { grid-template-columns: 1fr !important; }
}


/* === CAMBIOS FINALES JUNIO 2026: video, boliche, restaurante y promociones === */
.cosmic-video-card video {
  object-fit: cover;
  object-position: center center;
}
.srv-card-img[style*="boliche-card-wide"] {
  background-position: center center !important;
}
.srv-card-img[style*="restaurante-card-wide"] {
  background-position: center center !important;
}
.promo-art-main {
  height: auto !important;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0,200,200,.20);
  box-shadow: 0 24px 70px rgba(0,0,0,.36), 0 0 44px rgba(232,25,106,.14);
}
.promo-art-main img {
  object-fit: cover !important;
  object-position: center center !important;
}
.promos-img-main img[src*="promociones-del-mes-metro-bowl"] {
  object-fit: cover !important;
  object-position: center center !important;
  background: #060a1d;
}
.promos-img-float {
  width: 185px;
  height: 185px;
}
.srv-detail-img img[src*="restaurante-detail-wide"],
.srv-detail-img img[src*="boliche-portada-nueva"] {
  object-position: center center;
}
.gallery-item img[src*="promociones-del-mes-metro-bowl"] {
  object-fit: cover !important;
}
@media (max-width: 900px) {
  .promo-art-main { aspect-ratio: 16 / 9; }
  .promos-img-float { display: none; }
}

/* White clean logo final */
.navbar-logo img, .footer-logo-img, .cosmic-logo-card img{filter:none !important;background:transparent !important;}


/* LOGO ORIGINAL A COLOR SIN FONDO */
.navbar-logo img,
.footer-logo-img,
.cosmic-logo-card img{
  background: transparent !important;
  filter: none !important;
  object-fit: contain !important;
}
.navbar-logo img{
  width: 275px !important;
  max-width: 275px !important;
  height: auto !important;
}
.navbar.scrolled .navbar-logo img{
  width: 238px !important;
  max-width: 238px !important;
}
.footer-logo-img{
  width: 250px !important;
  height: auto !important;
}
.cosmic-logo-card img{
  width: min(410px, 100%) !important;
  height: auto !important;
}
@media(max-width:768px){
  .navbar-logo img{ width: 210px !important; max-width: 210px !important; }
  .navbar.scrolled .navbar-logo img{ width: 190px !important; max-width: 190px !important; }
  .footer-logo-img{ width: 205px !important; }
}
@media(max-width:480px){
  .navbar-logo img{ width: 172px !important; max-width: 172px !important; }
  .navbar.scrolled .navbar-logo img{ width: 160px !important; max-width: 160px !important; }
  .footer-logo-img{ width: 175px !important; }
}


/* ================================================================
   VERSION POSITIVA / MODO BLANCO PREDETERMINADO
   ================================================================ */
body {
  background: #f7f9ff !important;
  color: #2f3958 !important;
}
::-webkit-scrollbar-track { background: #edf2ff !important; }

.navbar {
  background: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(27,32,88,0.08) !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 8px 28px rgba(16, 22, 58, 0.08) !important;
}
.nav-links a,
.nav-link {
  color: #5a6486 !important;
}
.nav-links a:hover,
.nav-links a.active,
.nav-link:hover,
.nav-link.active {
  color: #1B2058 !important;
}
.menu-toggle span { background: #1B2058 !important; }

/* Secciones claras */
.services-sec,
.promo-sec,
.events-sec,
.gallery-sec,
.contact-sec,
.packages-sec,
footer,
.srv-detail:nth-child(even),
.srv-detail:nth-child(odd) {
  background: #ffffff !important;
}

/* Fondos de apoyo claros */
.ticker,
.page-hero,
.page-hero-bg,
.hero-bg {
  background: #f7f9ff !important;
}
.ticker-wrap::before { background: linear-gradient(to right, #f7f9ff, transparent) !important; }
.ticker-wrap::after  { background: linear-gradient(to left, #f7f9ff, transparent) !important; }

/* Hero principal conserva imagen pero con apariencia más clara */
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247,249,255,0.88) 0%, rgba(247,249,255,0.58) 38%, rgba(13,20,51,0.18) 68%, rgba(13,20,51,0.26) 100%) !important;
}
.hero-sub,
.hero-card-price span,
.hero-eyebrow,
.hero-card-tag,
.hero-card-title,
.hero-card-row,
.hero-card-badge,
.hero-card-body,
.hero-card { }
.hero-title .line1,
.hero-title .line3,
.hero-sub,
.hero-eyebrow,
.hero-stats .stat-label,
.hero-stats .stat-value { color: #1B2058 !important; }
.hero-title .line2 { color: #E8196A !important; }
.hero-card {
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid rgba(27,32,88,0.08) !important;
  box-shadow: 0 14px 34px rgba(27,32,88,0.12) !important;
}
.hero-card-img::after {
  background: linear-gradient(to top, rgba(255,255,255,0.28), transparent) !important;
}
.hero-card-title { color: #1B2058 !important; }
.hero-card-badge { color: #08112f !important; }

/* Títulos oscuros en secciones blancas */
.services-sec .display-lg,
.promo-sec .display-lg,
.events-sec .display-lg,
.contact-sec .display-md,
.packages-sec .display-lg,
.srv-detail .display-md,
.footer-col-title,
.pkg-name,
.form-box-title,
.hours-row .time,
.cinfo-val,
.srv-feat,
.price-chip,
.pkg-list li {
  color: #1B2058 !important;
}

.services-sec .section-sub,
.promo-sec p,
.events-sec p,
.contact-sec p,
.pkg-desc,
.footer-brand p,
.footer-links a,
.hours-row .day,
.form-box-sub,
.f-label,
.cinfo-label,
.srv-detail-text > p,
.price-chip,
.f-input,
.f-input::placeholder {
  color: #5f6b8d !important;
}

/* Tarjetas claras */
.promo-card,
.pkg-card,
.pkg-card.featured,
.hours-box,
.form-box,
.soc-btn,
.price-chip,
.contact-location-highlight .mini-photo,
.location-photo-card {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 12px 28px rgba(27,32,88,0.08) !important;
}
.promo-card:hover,
.pkg-card:hover,
.soc-btn:hover { box-shadow: 0 18px 36px rgba(27,32,88,0.12) !important; }

.f-input {
  background: #f7f9ff !important;
  border: 1px solid rgba(27,32,88,0.12) !important;
}
select.f-input option { background: #ffffff !important; color: #1B2058 !important; }

/* Footer claro */
footer {
  border-top: 1px solid rgba(27,32,88,0.08) !important;
}
.footer-col-title { color: #1B2058 !important; }
.footer-links a:hover { color: #E8196A !important; }

/* Ajustes decorativos */
.cursor-ring { border-color: rgba(0, 200, 200, 0.45) !important; }

/* Mantener el logo original visible sobre fondo claro */
.navbar-logo img,
.footer-logo-img,
.cosmic-logo-card img {
  filter: none !important;
  background: transparent !important;
}


/* ================================================================
   VERSION POSITIVA / MODO BLANCO PREDETERMINADO — AJUSTADA
   ================================================================ */
body {
  background: #f7f9ff !important;
  color: #334064 !important;
}
::-webkit-scrollbar-track { background: #eef3ff !important; }
::-webkit-scrollbar-thumb { background: var(--pink) !important; }

/* Header claro */
.navbar {
  background: rgba(255,255,255,0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 1px solid rgba(27,32,88,0.08) !important;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 10px 26px rgba(16,22,58,0.08) !important;
}
.nav-links a, .nav-link { color: #5b6688 !important; }
.nav-links a:hover, .nav-links a.active,
.nav-link:hover, .nav-link.active { color: #1B2058 !important; }
.menu-toggle span { background: #1B2058 !important; }

/* Hero positivo mejor equilibrado */
.hero { background: #edf3ff !important; }
.hero-bg { background: #edf3ff !important; }
.hero-bg-img {
  opacity: 1 !important;
  filter: saturate(1.02) brightness(0.92) !important;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247,249,255,0.84) 0%, rgba(247,249,255,0.72) 32%, rgba(247,249,255,0.38) 52%, rgba(10,14,40,0.10) 74%, rgba(10,14,40,0.18) 100%) !important;
}
.hero-title .line1,
.hero-title .line3,
.hero-sub,
.hero-eyebrow,
.hero-stats .stat-label,
.hero-stats .stat-value { color: #1B2058 !important; }
.hero-title .line2 { color: var(--pink) !important; }
.hero-actions .btn-pink { color: #fff !important; }
.hero-actions .btn-outline-white {
  color: #1B2058 !important;
  border-color: rgba(27,32,88,0.28) !important;
  background: rgba(255,255,255,0.42) !important;
}
.hero-actions .btn-outline-white:hover {
  background: rgba(27,32,88,0.08) !important;
  border-color: rgba(27,32,88,0.45) !important;
}
.hero-card {
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(27,32,88,0.08) !important;
  box-shadow: 0 18px 42px rgba(27,32,88,0.14) !important;
}
.hero-card-img::after {
  background: linear-gradient(to top, rgba(255,255,255,0.14), transparent) !important;
}
.hero-card-title,
.hero-card-body,
.hero-card-price span,
.hero-card-row { color: #1B2058 !important; }
.hero-card-price { color: var(--pink) !important; }
.hero-card-badge { color: #08112f !important; }

/* Secciones positivas */
.services-sec,
.promo-sec,
.events-sec,
.gallery-sec,
.contact-sec,
.packages-sec,
footer,
.srv-detail:nth-child(even),
.srv-detail:nth-child(odd),
.page-hero,
.page-hero-bg,
.ticker {
  background: #ffffff !important;
}
.ticker-wrap::before { background: linear-gradient(to right, #ffffff, transparent) !important; }
.ticker-wrap::after  { background: linear-gradient(to left, #ffffff, transparent) !important; }

/* Títulos y textos */
.display-lg,
.display-md,
.footer-col-title,
.pkg-name,
.form-box-title,
.hours-row .time,
.cinfo-val,
.srv-feat,
.price-chip,
.pkg-list li,
.evt-card-title,
.form-box-title,
.hero-card-title,
.promo-card-title {
  color: #1B2058 !important;
}
.footer-brand p,
.footer-links a,
.hours-row .day,
.form-box-sub,
.f-label,
.cinfo-label,
.srv-detail-text > p,
.price-chip,
.f-input,
.f-input::placeholder,
.contact-sec p,
.events-sec p,
.promo-sec p,
.pkg-desc,
.section-sub { color: #5f6b8d !important; }

/* Cards positivas */
.promo-card,
.pkg-card,
.pkg-card.featured,
.hours-box,
.form-box,
.soc-btn,
.price-chip,
.contact-location-highlight .mini-photo,
.location-photo-card,
.cinfo-icon,
.evt-card,
.promo-featured-card,
.promo-info-card {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 12px 28px rgba(27,32,88,0.08) !important;
}
.promo-card:hover,
.pkg-card:hover,
.soc-btn:hover,
.evt-card:hover { box-shadow: 0 18px 36px rgba(27,32,88,0.12) !important; }

.f-input {
  background: #f7f9ff !important;
  border: 1px solid rgba(27,32,88,0.12) !important;
  color: #1B2058 !important;
}
select.f-input option { background: #ffffff !important; color: #1B2058 !important; }
.f-input:focus { background: #ffffff !important; }

/* Footer claro */
footer { border-top: 1px solid rgba(27,32,88,0.08) !important; }
.footer-links a:hover { color: var(--pink) !important; }

/* En positivo, mantener el logo original a color */
.navbar-logo img,
.footer-logo-img,
.cosmic-logo-card img {
  filter: none !important;
  background: transparent !important;
}



/* ================================================================
   MODO MIXTO ARREGLADO + BOTON A MODO OSCURO
   ================================================================ */
body.theme-mixed {
  background: #f7f8fd !important;
  color: #31405f !important;
}
body.theme-mixed .navbar {
  background: rgba(255,255,255,0.95) !important;
  border-bottom: 1px solid rgba(27,32,88,0.08) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.theme-mixed .navbar.scrolled {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 8px 28px rgba(18,22,60,0.08) !important;
}
body.theme-mixed .navbar-links a { color: #7480a3 !important; }
body.theme-mixed .navbar-links a:hover,
body.theme-mixed .navbar-links a.active { color: #1B2058 !important; }
body.theme-mixed .hamburger span { background: #1B2058 !important; }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(27,32,88,0.14);
  background: #ffffff;
  color: #1B2058;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(18,22,60,0.08);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}
.theme-toggle:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(18,22,60,0.12); }
.theme-toggle-icon { font-size: 1.15rem; line-height: 1; }
.theme-toggle-mobile { width: 48px; margin-top: 0.6rem; }
body.theme-dark .theme-toggle {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

/* HERO OSCURO */
body.theme-mixed .hero,
body.theme-mixed .hero-bg { background: #08153f !important; }
body.theme-mixed .hero-bg-img { opacity: 1 !important; filter: saturate(1.05) brightness(0.7) !important; }
body.theme-mixed .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6,13,44,0.92) 0%, rgba(6,13,44,0.82) 38%, rgba(7,17,50,0.56) 64%, rgba(13,10,43,0.46) 100%) !important;
}
body.theme-mixed .hero-title .line1 { color: #ffffff !important; }
body.theme-mixed .hero-title .line2 { color: var(--pink) !important; }
body.theme-mixed .hero-title .line3 { color: transparent !important; -webkit-text-stroke: 3px var(--aqua) !important; text-stroke: 3px var(--aqua) !important; }
body.theme-mixed .hero-sub,
body.theme-mixed .hero-eyebrow,
body.theme-mixed .stat-label,
body.theme-mixed .stat-num,
body.theme-mixed .scroll-hint span { color: #ffffff !important; }
body.theme-mixed .hero-card {
  background: rgba(11,21,63,0.92) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 22px 46px rgba(0,0,0,0.22) !important;
}
body.theme-mixed .hero-card-title,
body.theme-mixed .hero-card-body,
body.theme-mixed .hero-card-price span,
body.theme-mixed .hero-card-row { color: #ffffff !important; }
body.theme-mixed .hero-card-price { color: var(--pink) !important; }
body.theme-mixed .hero-card-tag { color: var(--aqua) !important; }
body.theme-mixed .btn-outline-white {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.36) !important;
  background: transparent !important;
}
body.theme-mixed .btn-outline-white:hover {
  background: rgba(255,255,255,0.08) !important;
}

/* COSMIC BLANCO */
body.theme-mixed .cosmic-section {
  background: #ffffff !important;
  color: #1B2058 !important;
}
body.theme-mixed .cosmic-section::before,
body.theme-mixed .cosmic-section::after { display: none !important; }
body.theme-mixed .cosmic-bg-glow { opacity: 0.18 !important; }
body.theme-mixed .cosmic-kicker,
body.theme-mixed .cosmic-video-caption { color: #1B2058 !important; }
body.theme-mixed .cosmic-info h2 span,
body.theme-mixed .cosmic-info h2 strong { color: #1B2058 !important; }
body.theme-mixed .cosmic-text { color: #53617f !important; }
body.theme-mixed .cosmic-features div {
  background: #f7f9ff !important;
  color: #1B2058 !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
}
body.theme-mixed .cosmic-video-card {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.12) !important;
  box-shadow: 0 16px 34px rgba(27,32,88,0.10) !important;
}
body.theme-mixed .cosmic-video-caption { background: #ffffff !important; }

/* SERVICIOS OSCURO */
body.theme-mixed .services-sec {
  background: linear-gradient(180deg, #0a1443 0%, #121f60 100%) !important;
}
body.theme-mixed .services-sec .eyebrow,
body.theme-mixed .services-sec h2,
body.theme-mixed .services-sec p,
body.theme-mixed .services-sec .section-header p { color: #ffffff !important; }
body.theme-mixed .services-sec .section-header p { color: rgba(255,255,255,0.72) !important; }
body.theme-mixed .services-sec .srv-card-content,
body.theme-mixed .services-sec .srv-card-name,
body.theme-mixed .services-sec .srv-card-tag,
body.theme-mixed .services-sec .srv-card-desc,
body.theme-mixed .services-sec .srv-card-arrow { color: #ffffff !important; }
body.theme-mixed .services-sec .srv-card-number { color: rgba(255,255,255,0.18) !important; }

/* PROMOCIONES BLANCO */
body.theme-mixed .promos-sec {
  background: #ffffff !important;
}
body.theme-mixed .promos-sec .display-lg,
body.theme-mixed .promos-sec .eyebrow,
body.theme-mixed .promos-sec .promo-title,
body.theme-mixed .promos-sec .promo-note,
body.theme-mixed .promos-sec .promo-sub { color: #1B2058 !important; }
body.theme-mixed .promos-sec p { color: #5c688a !important; }
body.theme-mixed .promos-sec .promo-card {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 10px 24px rgba(27,32,88,0.08) !important;
}
body.theme-mixed .promos-sec .promo-icon {
  background: #f7f9ff !important;
  color: var(--pink) !important;
  border-color: rgba(232,25,106,0.16) !important;
}
body.theme-mixed .promos-sec .btn-outline-white {
  color: #1B2058 !important;
  border-color: rgba(27,32,88,0.25) !important;
}

/* EVENTOS OSCURO */
body.theme-mixed .events-sec {
  background: linear-gradient(180deg, #08133f 0%, #111d59 100%) !important;
}
body.theme-mixed .events-sec .eyebrow,
body.theme-mixed .events-sec h2,
body.theme-mixed .events-sec p,
body.theme-mixed .events-sec .evt-card-title,
body.theme-mixed .events-sec .evt-card-cat,
body.theme-mixed .events-sec .evt-card-price,
body.theme-mixed .events-sec .events-cta h3,
body.theme-mixed .events-sec .events-cta p,
body.theme-mixed .events-sec .events-cta .text-aqua { color: #ffffff !important; }
body.theme-mixed .events-sec .events-cta p { color: rgba(255,255,255,0.72) !important; }
body.theme-mixed .events-sec .evt-card,
body.theme-mixed .events-sec .events-cta {
  background: rgba(15,27,76,0.95) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22) !important;
}

/* GALERIA BLANCO */
body.theme-mixed .gallery-sec {
  background: #ffffff !important;
}
body.theme-mixed .gallery-sec .eyebrow { color: #1B2058 !important; }
body.theme-mixed .gallery-item {
  box-shadow: 0 8px 18px rgba(27,32,88,0.08) !important;
}

/* CTA / FOOTER */
body.theme-mixed .cta-sec {
  background: linear-gradient(180deg, #08133f 0%, #121f5e 100%) !important;
}
body.theme-mixed .cta-sec p,
body.theme-mixed .cta-sec .eyebrow,
body.theme-mixed .cta-sec h2 { color: #ffffff !important; }
body.theme-mixed footer {
  background: #ffffff !important;
  border-top: 1px solid rgba(27,32,88,0.08) !important;
}
body.theme-mixed footer .footer-col-title,
body.theme-mixed footer .footer-copy span,
body.theme-mixed footer .footer-copy,
body.theme-mixed footer .footer-brand p,
body.theme-mixed footer .footer-links a { color: #405073 !important; }
body.theme-mixed footer .footer-col-title { color: #1B2058 !important; }
body.theme-mixed footer .soc-btn {
  background: #ffffff !important;
  color: #1B2058 !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
}

/* ================================================================
   MODO OSCURO / NEGATIVO CON LOGO BLANCO
   ================================================================ */
body.theme-dark {
  background: #07113b !important;
  color: #ffffff !important;
}
body.theme-dark .navbar {
  background: rgba(8,16,55,0.95) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
body.theme-dark .navbar.scrolled {
  background: rgba(8,16,55,0.98) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28) !important;
}
body.theme-dark .navbar-links a { color: rgba(255,255,255,0.72) !important; }
body.theme-dark .navbar-links a:hover,
body.theme-dark .navbar-links a.active { color: #ffffff !important; }
body.theme-dark .hamburger span { background: #ffffff !important; }
body.theme-dark .mobile-nav { background: rgba(8,16,55,0.98) !important; }
body.theme-dark .mobile-nav a { color: #ffffff !important; }

body.theme-dark .hero,
body.theme-dark .hero-bg,
body.theme-dark .cosmic-section,
body.theme-dark .services-sec,
body.theme-dark .promos-sec,
body.theme-dark .events-sec,
body.theme-dark .gallery-sec,
body.theme-dark .cta-sec,
body.theme-dark footer,
body.theme-dark .ticker {
  background: #07113b !important;
}
body.theme-dark .hero-bg-img { opacity: 1 !important; filter: saturate(1.05) brightness(0.72) !important; }
body.theme-dark .hero-overlay {
  background: linear-gradient(90deg, rgba(4,9,31,0.9) 0%, rgba(4,9,31,0.84) 42%, rgba(7,17,59,0.44) 72%, rgba(48,8,54,0.34) 100%) !important;
}
body.theme-dark .hero-title .line1,
body.theme-dark .hero-title .line2,
body.theme-dark .hero-sub,
body.theme-dark .hero-eyebrow,
body.theme-dark .stat-num,
body.theme-dark .stat-label,
body.theme-dark .scroll-hint span,
body.theme-dark .display-lg,
body.theme-dark .display-md,
body.theme-dark .eyebrow,
body.theme-dark .section-header p,
body.theme-dark .evt-card-title,
body.theme-dark .evt-card-cat,
body.theme-dark .evt-card-price,
body.theme-dark .promo-title,
body.theme-dark .promo-sub,
body.theme-dark .promo-note,
body.theme-dark .cosmic-text,
body.theme-dark .cosmic-kicker,
body.theme-dark .cosmic-video-caption,
body.theme-dark .footer-brand p,
body.theme-dark .footer-links a,
body.theme-dark .footer-col-title,
body.theme-dark .footer-copy,
body.theme-dark .cta-sec p,
body.theme-dark .contact-sec p,
body.theme-dark .services-sec .srv-card-desc,
body.theme-dark .services-sec .srv-card-name,
body.theme-dark .services-sec .srv-card-tag,
body.theme-dark .services-sec .srv-card-arrow { color: #ffffff !important; }
body.theme-dark .hero-title .line3,
body.theme-dark .text-aqua { color: var(--aqua) !important; -webkit-text-stroke: 0 !important; }
body.theme-dark .text-pink { color: var(--pink) !important; }
body.theme-dark .hero-card,
body.theme-dark .cosmic-video-card,
body.theme-dark .promo-card,
body.theme-dark .evt-card,
body.theme-dark .events-cta,
body.theme-dark .soc-btn,
body.theme-dark .hours-box,
body.theme-dark .form-box,
body.theme-dark .location-photo-card,
body.theme-dark .contact-location-highlight .mini-photo,
body.theme-dark .pkg-card {
  background: rgba(15,27,76,0.92) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22) !important;
}
body.theme-dark .hero-card-title,
body.theme-dark .hero-card-tag,
body.theme-dark .hero-card-body,
body.theme-dark .hero-card-price span,
body.theme-dark .hero-card-row { color: #ffffff !important; }
body.theme-dark .hero-card-price { color: var(--pink) !important; }
body.theme-dark .cosmic-features div,
body.theme-dark .f-input {
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
body.theme-dark .gallery-item { box-shadow: 0 10px 22px rgba(0,0,0,0.22) !important; }
body.theme-dark .btn-outline-white {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.32) !important;
  background: transparent !important;
}
body.theme-dark footer { border-top: 1px solid rgba(255,255,255,0.08) !important; }

@media (max-width: 1100px) {
  .theme-toggle .theme-toggle-label { display: none; }
  .theme-toggle { min-width: 48px; padding-inline: 0.9rem; }
}
@media (max-width: 768px) {
  body.theme-mixed .hero-title .line3 { -webkit-text-stroke: 2px var(--aqua) !important; }
}


/* ===== AJUSTE FINAL BOTON OSCURO + TEXTO BLANCO ===== */
body.theme-dark,
html[data-theme="dark"] body {
  background: #07113b !important;
  color: #ffffff !important;
}
body.theme-dark .navbar,
html[data-theme="dark"] body .navbar {
  background: linear-gradient(90deg, rgba(6,14,48,0.98) 0%, rgba(10,18,58,0.98) 58%, rgba(53,10,74,0.96) 100%) !important;
}
body.theme-dark .navbar-links a,
body.theme-dark .navbar-links a:visited,
body.theme-dark .mobile-nav a,
body.theme-dark .mobile-nav a:visited {
  color: #ffffff !important;
  opacity: 1 !important;
}
body.theme-dark .nav-reserve { color: #ffffff !important; }
body.theme-dark .mobile-nav,
body.theme-dark .hero,
body.theme-dark .hero-bg,
body.theme-dark .cosmic-section,
body.theme-dark .services-sec,
body.theme-dark .promos-sec,
body.theme-dark .events-sec,
body.theme-dark .gallery-sec,
body.theme-dark .contact-sec,
body.theme-dark .packages-sec,
body.theme-dark .cta-sec,
body.theme-dark footer,
body.theme-dark .ticker {
  background: #07113b !important;
}
body.theme-dark .promos-sec,
body.theme-dark .gallery-sec,
body.theme-dark footer,
body.theme-dark .contact-sec,
body.theme-dark .packages-sec {
  background: linear-gradient(180deg, #07113b 0%, #0b184c 100%) !important;
}
body.theme-dark .container,
body.theme-dark .section-header,
body.theme-dark section,
body.theme-dark footer,
body.theme-dark .contact-grid,
body.theme-dark .contact-card,
body.theme-dark .packages-grid,
body.theme-dark .promo-right,
body.theme-dark .events-grid,
body.theme-dark .gallery-track { color: #ffffff !important; }
body.theme-dark p,
body.theme-dark li,
body.theme-dark small,
body.theme-dark label,
body.theme-dark .section-header p,
body.theme-dark .hero-sub,
body.theme-dark .cosmic-text,
body.theme-dark .cosmic-video-caption,
body.theme-dark .promo-sub,
body.theme-dark .promo-note,
body.theme-dark .services-sec .srv-card-desc,
body.theme-dark .evt-card-price,
body.theme-dark .footer-brand p,
body.theme-dark .footer-links a,
body.theme-dark .footer-copy,
body.theme-dark .contact-sec p,
body.theme-dark .contact-sec a,
body.theme-dark .packages-sec p,
body.theme-dark .hours-box p,
body.theme-dark .location-photo-caption,
body.theme-dark .faq-a,
body.theme-dark .faq-a p,
body.theme-dark .accordion-content,
body.theme-dark .accordion-content p {
  color: rgba(255,255,255,0.92) !important;
}
body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6,
body.theme-dark .display-lg,
body.theme-dark .display-md,
body.theme-dark .promo-title,
body.theme-dark .evt-card-title,
body.theme-dark .footer-col-title,
body.theme-dark .hero-title .line1,
body.theme-dark .hero-title .line2,
body.theme-dark .stat-num,
body.theme-dark .stat-label,
body.theme-dark .scroll-hint span { color: #ffffff !important; }
body.theme-dark .hero-title .line3 { color: var(--aqua) !important; -webkit-text-stroke: 0 !important; }
body.theme-dark .text-pink { color: var(--pink) !important; }
body.theme-dark .text-aqua { color: var(--aqua) !important; }
body.theme-dark .promo-card,
body.theme-dark .evt-card,
body.theme-dark .events-cta,
body.theme-dark .hero-card,
body.theme-dark .cosmic-video-card,
body.theme-dark .hours-box,
body.theme-dark .form-box,
body.theme-dark .pkg-card,
body.theme-dark .location-photo-card,
body.theme-dark .contact-location-highlight .mini-photo,
body.theme-dark .soc-btn,
body.theme-dark .cosmic-features div {
  background: rgba(15,27,76,0.96) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.24) !important;
}
body.theme-dark .promo-icon {
  background: rgba(255,255,255,0.08) !important;
  color: var(--pink) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}
body.theme-dark .f-input,
body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select {
  background: rgba(255,255,255,0.06) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.12) !important;
}
body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder { color: rgba(255,255,255,0.62) !important; }
body.theme-dark .btn-outline-white {
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.34) !important;
}
body.theme-dark .theme-toggle {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.18) !important;
}
body.theme-dark .theme-toggle:hover {
  box-shadow: 0 12px 26px rgba(0,0,0,0.28) !important;
}
body.theme-dark .hamburger span { background: #ffffff !important; }


/* ================================================================
   FIX FINAL: BOTÓN OSCURO FUNCIONAL + TEXTO LEGIBLE
   ================================================================ */

/* Botón modo oscuro: solo icono */
.theme-toggle,
body.theme-mixed .theme-toggle,
body.theme-dark .theme-toggle {
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}
.theme-toggle-label { display: none !important; }
.theme-toggle-mobile { width: 46px !important; margin-inline: auto !important; }

/* El botón rosado siempre debe leerse */
.navbar-links a.nav-reserve,
body.theme-mixed .navbar-links a.nav-reserve,
body.theme-dark .navbar-links a.nav-reserve,
.mobile-nav a.btn,
.mobile-nav a.btn-pink {
  color: #ffffff !important;
  opacity: 1 !important;
  background: #E8196A !important;
  border-color: #E8196A !important;
  text-shadow: none !important;
}
.navbar-links a.nav-reserve:hover,
body.theme-mixed .navbar-links a.nav-reserve:hover,
body.theme-dark .navbar-links a.nav-reserve:hover {
  color: #ffffff !important;
  background: #ff3d85 !important;
}

/* Modo claro/mixto: navegación legible */
body.theme-mixed .navbar-links a:not(.nav-reserve) {
  color: #1B2058 !important;
  opacity: 1 !important;
}
body.theme-mixed .navbar-links a:not(.nav-reserve):hover,
body.theme-mixed .navbar-links a.active:not(.nav-reserve) {
  color: #07113b !important;
}

/* Modo oscuro real: forzar fondo oscuro en todo el sitio */
html[data-theme="dark"],
html[data-theme="dark"] body,
body.theme-dark {
  background: #07113b !important;
  color: #ffffff !important;
}

body.theme-dark .navbar,
html[data-theme="dark"] body .navbar {
  background: linear-gradient(90deg, rgba(6,14,48,0.99) 0%, rgba(9,18,58,0.99) 55%, rgba(56,10,76,0.97) 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

body.theme-dark .navbar-links a:not(.nav-reserve),
html[data-theme="dark"] body .navbar-links a:not(.nav-reserve),
body.theme-dark .mobile-nav a:not(.btn),
html[data-theme="dark"] body .mobile-nav a:not(.btn) {
  color: #ffffff !important;
  opacity: 1 !important;
}

body.theme-dark .theme-toggle,
html[data-theme="dark"] body .theme-toggle {
  background: rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 10px 24px rgba(0,0,0,0.28) !important;
}

/* Todas las secciones se vuelven oscuras al activar el modo oscuro */
body.theme-dark .hero,
body.theme-dark .hero-bg,
body.theme-dark .ticker,
body.theme-dark .cosmic-section,
body.theme-dark .services-sec,
body.theme-dark .promos-sec,
body.theme-dark .events-sec,
body.theme-dark .gallery-sec,
body.theme-dark .contact-sec,
body.theme-dark .packages-sec,
body.theme-dark .cta-sec,
body.theme-dark .page-hero,
body.theme-dark .page-hero-bg,
body.theme-dark .srv-detail,
body.theme-dark .srv-detail:nth-child(even),
body.theme-dark .srv-detail:nth-child(odd),
body.theme-dark footer,
html[data-theme="dark"] body .hero,
html[data-theme="dark"] body .hero-bg,
html[data-theme="dark"] body .ticker,
html[data-theme="dark"] body .cosmic-section,
html[data-theme="dark"] body .services-sec,
html[data-theme="dark"] body .promos-sec,
html[data-theme="dark"] body .events-sec,
html[data-theme="dark"] body .gallery-sec,
html[data-theme="dark"] body .contact-sec,
html[data-theme="dark"] body .packages-sec,
html[data-theme="dark"] body .cta-sec,
html[data-theme="dark"] body .page-hero,
html[data-theme="dark"] body .page-hero-bg,
html[data-theme="dark"] body .srv-detail,
html[data-theme="dark"] body footer {
  background: #07113b !important;
  color: #ffffff !important;
}

/* Fondos con profundidad en secciones */
body.theme-dark .promos-sec,
body.theme-dark .gallery-sec,
body.theme-dark .contact-sec,
body.theme-dark .packages-sec,
body.theme-dark .events-sec,
body.theme-dark .services-sec,
html[data-theme="dark"] body .promos-sec,
html[data-theme="dark"] body .gallery-sec,
html[data-theme="dark"] body .contact-sec,
html[data-theme="dark"] body .packages-sec,
html[data-theme="dark"] body .events-sec,
html[data-theme="dark"] body .services-sec {
  background: linear-gradient(180deg, #07113b 0%, #101d58 100%) !important;
}

/* Textos blancos en modo oscuro */
body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6,
body.theme-dark p,
body.theme-dark li,
body.theme-dark label,
body.theme-dark small,
body.theme-dark a,
body.theme-dark span,
body.theme-dark div,
body.theme-dark .display-xl,
body.theme-dark .display-lg,
body.theme-dark .display-md,
body.theme-dark .section-header p,
body.theme-dark .hero-sub,
body.theme-dark .hero-eyebrow,
body.theme-dark .stat-num,
body.theme-dark .stat-label,
body.theme-dark .cosmic-text,
body.theme-dark .cosmic-video-caption,
body.theme-dark .promo-title,
body.theme-dark .promo-sub,
body.theme-dark .promo-note,
body.theme-dark .evt-card-title,
body.theme-dark .evt-card-price,
body.theme-dark .footer-brand p,
body.theme-dark .footer-links a,
body.theme-dark .footer-copy,
body.theme-dark .form-box-sub,
body.theme-dark .f-label,
body.theme-dark .cinfo-val,
body.theme-dark .hours-row .day,
body.theme-dark .hours-row .time,
html[data-theme="dark"] body h1,
html[data-theme="dark"] body h2,
html[data-theme="dark"] body h3,
html[data-theme="dark"] body p,
html[data-theme="dark"] body li,
html[data-theme="dark"] body a,
html[data-theme="dark"] body span,
html[data-theme="dark"] body div {
  color: #ffffff !important;
}

/* Conservar colores de marca en palabras especiales */
body.theme-dark .text-pink,
html[data-theme="dark"] body .text-pink {
  color: #E8196A !important;
}
body.theme-dark .text-aqua,
body.theme-dark .eyebrow,
html[data-theme="dark"] body .text-aqua,
html[data-theme="dark"] body .eyebrow {
  color: #00C8C8 !important;
}

/* Tarjetas oscuras en modo oscuro */
body.theme-dark .hero-card,
body.theme-dark .cosmic-video-card,
body.theme-dark .promo-card,
body.theme-dark .evt-card,
body.theme-dark .events-cta,
body.theme-dark .hours-box,
body.theme-dark .form-box,
body.theme-dark .pkg-card,
body.theme-dark .location-photo-card,
body.theme-dark .contact-location-highlight .mini-photo,
body.theme-dark .soc-btn,
body.theme-dark .cosmic-features div,
body.theme-dark .cinfo-icon,
body.theme-dark .price-chip,
html[data-theme="dark"] body .hero-card,
html[data-theme="dark"] body .cosmic-video-card,
html[data-theme="dark"] body .promo-card,
html[data-theme="dark"] body .evt-card,
html[data-theme="dark"] body .events-cta,
html[data-theme="dark"] body .hours-box,
html[data-theme="dark"] body .form-box,
html[data-theme="dark"] body .pkg-card,
html[data-theme="dark"] body .location-photo-card,
html[data-theme="dark"] body .contact-location-highlight .mini-photo,
html[data-theme="dark"] body .soc-btn,
html[data-theme="dark"] body .cosmic-features div,
html[data-theme="dark"] body .price-chip {
  background: rgba(15,27,76,0.96) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25) !important;
}

/* Inputs en modo oscuro */
body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select,
body.theme-dark .f-input,
html[data-theme="dark"] body input,
html[data-theme="dark"] body textarea,
html[data-theme="dark"] body select,
html[data-theme="dark"] body .f-input {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
}
body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder {
  color: rgba(255,255,255,0.65) !important;
}

body.theme-dark .hero-title .line3,
html[data-theme="dark"] body .hero-title .line3 {
  color: #00C8C8 !important;
  -webkit-text-stroke: 0 !important;
  text-stroke: 0 !important;
}

/* Evitar que reglas anteriores hagan gris el texto del botón */
body.theme-mixed .nav-reserve,
body.theme-dark .nav-reserve,
html[data-theme="dark"] body .nav-reserve {
  color: #ffffff !important;
}


/* ================================================================
   MODO OSCURO RESTAURADO COMO DISEÑO ORIGINAL
   El botón sigue funcionando, pero al activar oscuro se ve como la
   versión inicial: fondo navy, textos con jerarquía original y logo blanco.
   ================================================================ */

html[data-theme="dark"] body,
body.theme-dark {
  background: var(--navy-deep) !important;
  color: var(--light) !important;
}

/* Header original oscuro */
body.theme-dark .navbar,
html[data-theme="dark"] body .navbar {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}
body.theme-dark .navbar.scrolled,
html[data-theme="dark"] body .navbar.scrolled {
  background: rgba(10, 14, 40, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4) !important;
}
body.theme-dark .navbar-links a:not(.nav-reserve),
html[data-theme="dark"] body .navbar-links a:not(.nav-reserve) {
  color: var(--gray) !important;
  opacity: 1 !important;
}
body.theme-dark .navbar-links a:not(.nav-reserve):hover,
body.theme-dark .navbar-links a.active:not(.nav-reserve),
html[data-theme="dark"] body .navbar-links a:not(.nav-reserve):hover,
html[data-theme="dark"] body .navbar-links a.active:not(.nav-reserve) {
  color: var(--white) !important;
}
body.theme-dark .nav-reserve,
html[data-theme="dark"] body .nav-reserve {
  color: #ffffff !important;
  background: var(--pink) !important;
  border-color: var(--pink) !important;
}
body.theme-dark .hamburger span,
html[data-theme="dark"] body .hamburger span {
  background: #ffffff !important;
}

/* Botón de modo: solo ícono */
body.theme-dark .theme-toggle,
html[data-theme="dark"] body .theme-toggle {
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25) !important;
}
.theme-toggle-label { display: none !important; }

/* Fondos originales por sección */
body.theme-dark .hero,
body.theme-dark .hero-bg,
html[data-theme="dark"] body .hero,
html[data-theme="dark"] body .hero-bg {
  background: var(--navy-deep) !important;
}
body.theme-dark .hero-bg-img,
html[data-theme="dark"] body .hero-bg-img {
  opacity: 0.62 !important;
  filter: saturate(1.1) contrast(1.05) !important;
}
body.theme-dark .hero-overlay,
html[data-theme="dark"] body .hero-overlay {
  background:
    linear-gradient(90deg, rgba(10,14,40,0.96) 0%, rgba(10,14,40,0.86) 40%, rgba(10,14,40,0.55) 100%),
    radial-gradient(circle at 80% 25%, rgba(232,25,106,0.35), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(0,200,200,0.18), transparent 30%) !important;
}
body.theme-dark .ticker,
body.theme-dark .services-sec,
body.theme-dark .events-sec,
body.theme-dark .contact-sec,
body.theme-dark .packages-sec,
body.theme-dark .page-hero,
body.theme-dark .page-hero-bg,
body.theme-dark .srv-detail:nth-child(odd),
html[data-theme="dark"] body .ticker,
html[data-theme="dark"] body .services-sec,
html[data-theme="dark"] body .events-sec,
html[data-theme="dark"] body .contact-sec,
html[data-theme="dark"] body .packages-sec,
html[data-theme="dark"] body .page-hero,
html[data-theme="dark"] body .page-hero-bg,
html[data-theme="dark"] body .srv-detail:nth-child(odd) {
  background: var(--navy-deep) !important;
}
body.theme-dark .promos-sec,
body.theme-dark .gallery-sec,
body.theme-dark .srv-detail:nth-child(even),
body.theme-dark footer,
html[data-theme="dark"] body .promos-sec,
html[data-theme="dark"] body .gallery-sec,
html[data-theme="dark"] body .srv-detail:nth-child(even),
html[data-theme="dark"] body footer {
  background: var(--navy) !important;
}
body.theme-dark .cosmic-section,
html[data-theme="dark"] body .cosmic-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(0,214,230,.18), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(238,28,113,.18), transparent 35%),
    #070d27 !important;
  color: #fff !important;
}
body.theme-dark .cta-sec,
html[data-theme="dark"] body .cta-sec {
  background:
    linear-gradient(180deg, rgba(10,14,40,0.92), rgba(10,14,40,0.98)),
    var(--navy-deep) !important;
}

/* Jerarquía de texto original en oscuro */
body.theme-dark h1,
body.theme-dark h2,
body.theme-dark h3,
body.theme-dark h4,
body.theme-dark h5,
body.theme-dark h6,
body.theme-dark .display-xl,
body.theme-dark .display-lg,
body.theme-dark .display-md,
body.theme-dark .hero-title .line1,
body.theme-dark .hero-card-title,
body.theme-dark .evt-card-title,
body.theme-dark .pkg-name,
body.theme-dark .form-box-title,
body.theme-dark .footer-col-title,
html[data-theme="dark"] body h1,
html[data-theme="dark"] body h2,
html[data-theme="dark"] body h3,
html[data-theme="dark"] body h4,
html[data-theme="dark"] body h5,
html[data-theme="dark"] body h6,
html[data-theme="dark"] body .display-xl,
html[data-theme="dark"] body .display-lg,
html[data-theme="dark"] body .display-md,
html[data-theme="dark"] body .hero-title .line1,
html[data-theme="dark"] body .hero-card-title,
html[data-theme="dark"] body .evt-card-title,
html[data-theme="dark"] body .pkg-name,
html[data-theme="dark"] body .form-box-title,
html[data-theme="dark"] body .footer-col-title {
  color: var(--white) !important;
}
body.theme-dark .hero-title .line2,
html[data-theme="dark"] body .hero-title .line2,
body.theme-dark .text-pink,
html[data-theme="dark"] body .text-pink {
  color: var(--pink) !important;
}
body.theme-dark .hero-title .line3,
html[data-theme="dark"] body .hero-title .line3 {
  color: transparent !important;
  -webkit-text-stroke: 3px var(--aqua) !important;
  text-stroke: 3px var(--aqua) !important;
}
body.theme-dark .text-aqua,
body.theme-dark .eyebrow,
body.theme-dark .hero-card-tag,
body.theme-dark .srv-card-tag,
body.theme-dark .evt-card-cat,
html[data-theme="dark"] body .text-aqua,
html[data-theme="dark"] body .eyebrow,
html[data-theme="dark"] body .hero-card-tag,
html[data-theme="dark"] body .srv-card-tag,
html[data-theme="dark"] body .evt-card-cat {
  color: var(--aqua) !important;
}
body.theme-dark p,
body.theme-dark li,
body.theme-dark small,
body.theme-dark .hero-sub,
body.theme-dark .section-header p,
body.theme-dark .cosmic-text,
body.theme-dark .promo-sub,
body.theme-dark .pkg-desc,
body.theme-dark .footer-brand p,
body.theme-dark .footer-links a,
body.theme-dark .footer-copy,
body.theme-dark .hours-row .day,
body.theme-dark .form-box-sub,
body.theme-dark .f-label,
body.theme-dark .cinfo-val,
body.theme-dark .srv-detail-text > p,
body.theme-dark .srv-feat,
html[data-theme="dark"] body p,
html[data-theme="dark"] body li,
html[data-theme="dark"] body small,
html[data-theme="dark"] body .hero-sub,
html[data-theme="dark"] body .section-header p,
html[data-theme="dark"] body .cosmic-text,
html[data-theme="dark"] body .promo-sub,
html[data-theme="dark"] body .pkg-desc,
html[data-theme="dark"] body .footer-brand p,
html[data-theme="dark"] body .footer-links a,
html[data-theme="dark"] body .footer-copy,
html[data-theme="dark"] body .hours-row .day,
html[data-theme="dark"] body .form-box-sub,
html[data-theme="dark"] body .f-label,
html[data-theme="dark"] body .cinfo-val,
html[data-theme="dark"] body .srv-detail-text > p,
html[data-theme="dark"] body .srv-feat {
  color: var(--gray) !important;
}
body.theme-dark .promo-title,
body.theme-dark .promo-note,
body.theme-dark .hours-row .time,
body.theme-dark .price-chip,
body.theme-dark .pkg-list li,
html[data-theme="dark"] body .promo-title,
html[data-theme="dark"] body .promo-note,
html[data-theme="dark"] body .hours-row .time,
html[data-theme="dark"] body .price-chip,
html[data-theme="dark"] body .pkg-list li {
  color: var(--light) !important;
}
body.theme-dark .cosmic-info h2 span,
body.theme-dark .cosmic-info h2 strong,
body.theme-dark .cosmic-video-caption,
body.theme-dark .cosmic-features div,
html[data-theme="dark"] body .cosmic-info h2 span,
html[data-theme="dark"] body .cosmic-info h2 strong,
html[data-theme="dark"] body .cosmic-video-caption,
html[data-theme="dark"] body .cosmic-features div {
  color: #ffffff !important;
}

/* Tarjetas originales oscuras */
body.theme-dark .hero-card,
body.theme-dark .promo-card,
body.theme-dark .evt-card,
body.theme-dark .events-cta,
body.theme-dark .hours-box,
body.theme-dark .form-box,
body.theme-dark .pkg-card,
body.theme-dark .location-photo-card,
body.theme-dark .contact-location-highlight .mini-photo,
body.theme-dark .price-chip,
html[data-theme="dark"] body .hero-card,
html[data-theme="dark"] body .promo-card,
html[data-theme="dark"] body .evt-card,
html[data-theme="dark"] body .events-cta,
html[data-theme="dark"] body .hours-box,
html[data-theme="dark"] body .form-box,
html[data-theme="dark"] body .pkg-card,
html[data-theme="dark"] body .location-photo-card,
html[data-theme="dark"] body .contact-location-highlight .mini-photo,
html[data-theme="dark"] body .price-chip {
  background: rgba(27,32,88,0.6) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
}
body.theme-dark .cosmic-video-card,
html[data-theme="dark"] body .cosmic-video-card {
  background: rgba(255,255,255,.06) !important;
  border: 3px solid #fff !important;
  box-shadow: 0 20px 80px rgba(0,0,0,.4), 0 0 42px rgba(242,24,114,.18) !important;
}
body.theme-dark .cosmic-features div,
html[data-theme="dark"] body .cosmic-features div {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.16) !important;
}
body.theme-dark .srv-card-overlay,
html[data-theme="dark"] body .srv-card-overlay {
  background: linear-gradient(to top, rgba(10,14,40,0.95) 0%, rgba(10,14,40,0.4) 50%, transparent 100%) !important;
}
body.theme-dark .evt-card-img::after,
html[data-theme="dark"] body .evt-card-img::after {
  background: linear-gradient(to top, rgba(10,14,40,0.92) 30%, transparent 100%) !important;
}

/* Inputs originales oscuros */
body.theme-dark input,
body.theme-dark textarea,
body.theme-dark select,
body.theme-dark .f-input,
html[data-theme="dark"] body input,
html[data-theme="dark"] body textarea,
html[data-theme="dark"] body select,
html[data-theme="dark"] body .f-input {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
}
body.theme-dark input::placeholder,
body.theme-dark textarea::placeholder,
html[data-theme="dark"] body input::placeholder,
html[data-theme="dark"] body textarea::placeholder {
  color: rgba(136,146,184,0.6) !important;
}

/* Botones */
body.theme-dark .btn-outline-white,
html[data-theme="dark"] body .btn-outline-white {
  color: white !important;
  border: 2px solid rgba(255,255,255,0.4) !important;
  background: transparent !important;
}
body.theme-dark .btn-outline-white:hover,
html[data-theme="dark"] body .btn-outline-white:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: white !important;
}
body.theme-dark .btn-pink,
html[data-theme="dark"] body .btn-pink {
  color: #ffffff !important;
}

/* Footer original oscuro */
body.theme-dark footer,
html[data-theme="dark"] body footer {
  border-top: 1px solid var(--border) !important;
}
body.theme-dark .footer-links a:hover,
html[data-theme="dark"] body .footer-links a:hover {
  color: var(--aqua) !important;
}


/* ================================================================
   AJUSTE CTA "RESERVA TU EXPERIENCIA HOY"
   Debe verse como la referencia correcta:
   - texto principal centrado y limpio
   - watermark METRO BOWL atrás, tenue
   - nunca encima del contenido
   ================================================================ */
.cta-sec {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-sec .container {
  position: relative;
  z-index: 2;
}
.cta-sec .reveal {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
}
.cta-bg-text {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 0 !important;
  width: 100%;
  text-align: center;
  font-family: var(--font-alt);
  font-size: clamp(8rem, 18vw, 20rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  color: rgba(255,255,255,0.04) !important;
}
.cta-sec .eyebrow,
.cta-sec h2,
.cta-sec p,
.cta-sec .cta-actions {
  position: relative;
  z-index: 3 !important;
}
.cta-sec h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.cta-sec p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* modo oscuro: que el watermark quede detrás y tenue */
body.theme-dark .cta-bg-text,
html[data-theme="dark"] body .cta-bg-text {
  color: rgba(255,255,255,0.07) !important;
}

/* modo mixto/claro: watermark más suave */
body.theme-mixed .cta-bg-text,
html[data-theme="mixed"] body .cta-bg-text {
  color: rgba(27,32,88,0.08) !important;
}

/* responsive */
@media (max-width: 900px) {
  .cta-bg-text {
    font-size: clamp(5rem, 22vw, 10rem);
    line-height: 0.9;
  }
}


/* ================================================================
   AJUSTES DE SECCIONES SOLICITADOS — JUNIO 2026
   ================================================================ */

/* 1) COSMIC BOWLING: una palabra en rosado en modo claro y oscuro */
body.theme-mixed .cosmic-info h2 strong,
html[data-theme="mixed"] body .cosmic-info h2 strong,
body.theme-dark .cosmic-info h2 strong,
html[data-theme="dark"] body .cosmic-info h2 strong {
  color: var(--pink) !important;
}
body.theme-mixed .cosmic-info h2 span {
  color: #1B2058 !important;
}
body.theme-dark .cosmic-info h2 span {
  color: #ffffff !important;
}

/* 2) HERO INTERNOS EN FORMATO OSCURO (Servicios / Eventos / Contacto) */
body.theme-mixed .page-hero,
body.theme-mixed .page-hero-bg {
  background: #08153f !important;
}
body.theme-mixed .page-hero-img {
  opacity: 1 !important;
  filter: saturate(1.02) brightness(0.64) !important;
}
body.theme-mixed .page-hero-overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.06) 20%, rgba(8,16,55,0.28) 40%, rgba(8,16,55,0.74) 70%, rgba(8,16,55,0.94) 100%),
    linear-gradient(90deg, rgba(6,13,44,0.88) 0%, rgba(6,13,44,0.66) 46%, rgba(10,18,58,0.58) 70%, rgba(53,10,74,0.40) 100%) !important;
}
body.theme-mixed .page-hero .display-lg,
body.theme-mixed .page-hero .eyebrow,
body.theme-mixed .page-hero .text-pink,
body.theme-mixed .page-hero .text-aqua {
  color: #ffffff !important;
}
body.theme-mixed .page-hero p {
  color: rgba(255,255,255,0.82) !important;
}

/* 3) EVENTOS DISPONIBLES en blanco */
body.theme-mixed #eventos-disponibles {
  background: #ffffff !important;
}
body.theme-mixed #eventos-disponibles .eyebrow {
  color: var(--aqua) !important;
}
body.theme-mixed #eventos-disponibles .display-lg,
body.theme-mixed #eventos-disponibles .section-header p,
body.theme-mixed #eventos-disponibles .evt-full-title,
body.theme-mixed #eventos-disponibles .evt-inc-list li {
  color: #1B2058 !important;
}
body.theme-mixed #eventos-disponibles .section-header p,
body.theme-mixed #eventos-disponibles .evt-full-desc,
body.theme-mixed #eventos-disponibles .evt-inc-title,
body.theme-mixed #eventos-disponibles .evt-full-price small {
  color: #5f6e90 !important;
}
body.theme-mixed #eventos-disponibles .evt-full-card {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 12px 28px rgba(27,32,88,0.08) !important;
}
body.theme-mixed #eventos-disponibles .evt-full-foot {
  border-top: 1px solid rgba(27,32,88,0.10) !important;
}

/* 4) ¿Cómo reservar? en blanco */
body.theme-mixed #eventos-reserva {
  background: #ffffff !important;
}
body.theme-mixed #eventos-reserva .eyebrow {
  color: var(--aqua) !important;
}
body.theme-mixed #eventos-reserva .display-lg,
body.theme-mixed #eventos-reserva .step-title,
body.theme-mixed #eventos-reserva .text-pink {
  color: #1B2058 !important;
}
body.theme-mixed #eventos-reserva .step-sub,
body.theme-mixed #eventos-reserva .section-header p {
  color: #5f6e90 !important;
}
body.theme-mixed #eventos-reserva .step-num {
  background: #ffffff !important;
  border-color: var(--pink) !important;
  color: var(--pink) !important;
  box-shadow: 0 0 0 8px rgba(232,25,106,0.08) !important;
}
body.theme-mixed #eventos-reserva .steps-grid::before {
  opacity: 0.18 !important;
}

/* 5) UBICACION / COMO LLEGAR: mejorar lectura del texto */
body.theme-mixed #location-section .location-photo-overlay,
body.theme-dark #location-section .location-photo-overlay {
  background: linear-gradient(180deg, rgba(10,14,40,0.04) 0%, rgba(10,14,40,0.92) 84%) !important;
}
body.theme-mixed #location-section .location-photo-title,
body.theme-dark #location-section .location-photo-title {
  color: #ffffff !important;
}
body.theme-mixed #location-section .location-photo-text,
body.theme-dark #location-section .location-photo-text {
  color: rgba(255,255,255,0.88) !important;
}
body.theme-mixed #location-section .location-map-title,
body.theme-dark #location-section .location-map-title {
  color: #ffffff !important;
}
body.theme-mixed #location-section .location-map-text,
body.theme-dark #location-section .location-map-text {
  color: rgba(255,255,255,0.88) !important;
}

/* 6) FAQ en blanco */
body.theme-mixed #faq-section {
  background: #ffffff !important;
}
body.theme-mixed #faq-section .eyebrow {
  color: var(--aqua) !important;
}
body.theme-mixed #faq-section .display-lg {
  color: #1B2058 !important;
}
body.theme-mixed #faq-section .faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(27,32,88,0.10) !important;
  box-shadow: 0 10px 24px rgba(27,32,88,0.06) !important;
}
body.theme-mixed #faq-section .faq-q {
  color: #1B2058 !important;
}
body.theme-mixed #faq-section .faq-a {
  color: #5f6e90 !important;
}


/* ================================================================
   AJUSTES FINALES DE IMÁGENES Y CENTRADO — JUNIO 2026
   ================================================================ */

/* Tarjeta Y más y Promociones con fotos reales */
.srv-card-img[style*="boliche-pistas-azules"],
.srv-detail-img img[src*="boliche-pistas-azules"],
.promos-img-main img[src*="boliche-pistas-1"],
.promos-img-float img[src*="boliche-pistas-2"] {
  object-position: center center !important;
  background-position: center center !important;
}

/* Centrar mejor las tarjetas de eventos */
.events-strip {
  justify-items: center;
}
.events-strip .evt-card {
  width: 100%;
  max-width: 360px;
}

/* Forzar centrado visual correcto en tarjetas y galerías */
.evt-card-img img,
.gallery-item img {
  object-fit: cover !important;
  object-position: center center !important;
}

/* Revertir ajustes anteriores tipo contain para que se vea más limpio y centrado */
.evt-card-img img[src*="eventos-lobby-gradas"],
.evt-card-img img[src*="eventos-lobby-baranda"],
.evt-card-img img[src*="eventos-lobby-frente"],
.evt-card-img img[src*="salon-1er-nivel"],
.evt-card-img img[src*="salon-2do-nivel"],
.gallery-item img[src*="eventos-lobby-gradas"],
.gallery-item img[src*="eventos-lobby-baranda"],
.gallery-item img[src*="eventos-lobby-frente"],
.gallery-item img[src*="salon-1er-nivel"],
.gallery-item img[src*="salon-2do-nivel"],
.gallery-item img[src*="promociones-del-mes-metro-bowl"],
.gallery-item img[src*="boliche-pistas-1"],
.gallery-item img[src*="boliche-pistas-2"],
.gallery-item img[src*="boliche-pistas-azules"] {
  object-fit: cover !important;
  object-position: center center !important;
  background: #08112f !important;
}

/* Galería un poco más elegante y bien alineada */
.gallery-item {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ajuste del arte principal de promociones */
.promos-visual .promos-img-main,
.promos-visual .promos-img-float {
  overflow: hidden;
}
.promos-visual .promos-img-main img,
.promos-visual .promos-img-float img {
  object-fit: cover !important;
  object-position: center center !important;
}


/* ================================================================
   CORRECCIONES DE CENTRADO Y TÍTULOS — AJUSTE FINAL
   ================================================================ */

/* 1) Tarjetas de eventos del home verdaderamente centradas */
.events-strip {
  grid-template-columns: repeat(auto-fit, minmax(260px, 360px)) !important;
  justify-content: center !important;
  justify-items: center !important;
}
.events-strip .evt-card {
  width: 100% !important;
  max-width: 360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 2) Tarjetas grandes de eventos centradas */
.evt-full-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px)) !important;
  justify-content: center !important;
  gap: 1.5rem !important;
}
.evt-full-card {
  width: 100% !important;
  max-width: 360px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 3) Forzar palabras en rosado en títulos donde el usuario lo pidió */
.services-sec .text-pink,
body.theme-mixed .services-sec .text-pink,
body.theme-dark .services-sec .text-pink,
.page-hero .text-pink,
body.theme-mixed .page-hero .text-pink,
body.theme-dark .page-hero .text-pink,
.events-sec .text-pink,
body.theme-mixed .events-sec .text-pink,
body.theme-dark .events-sec .text-pink {
  color: var(--pink) !important;
}

/* 4) Contacto: título principal rosado y bloque centrado */
body.theme-mixed .page-hero .display-lg.text-pink,
body.theme-dark .page-hero .display-lg.text-pink,
body.theme-light .page-hero .display-lg.text-pink {
  color: var(--pink) !important;
}
#location-section .display-lg,
#location-section .display-lg.text-white,
body.theme-mixed #location-section .display-lg,
body.theme-dark #location-section .display-lg {
  color: #ffffff !important;
}

/* 5) Mejor lectura del bloque contáctanos */
body.theme-mixed .page-hero .display-lg,
body.theme-dark .page-hero .display-lg {
  text-shadow: 0 4px 18px rgba(0,0,0,0.24);
}
body.theme-mixed .page-hero p,
body.theme-dark .page-hero p {
  color: rgba(255,255,255,0.96) !important;
}

/* 6) Centrado visual fino de imágenes en tarjetas */
.evt-card-img img,
.evt-full-card-img img,
.gallery-item img {
  object-position: center center !important;
}


/* ================================================================
   CORRECCIÓN FINAL REAL — CENTRADO DE ARTES DE EVENTOS
   Se aplica contain en los artes compuestos para que NO se corten
   y queden visualmente centrados dentro de la tarjeta.
   ================================================================ */

.evt-card-img img[src*="salon-1er-nivel-sin-precios"],
.evt-card-img img[src*="salon-2do-nivel-sin-precios"],
.evt-card-img img[src*="eventos-lobby-frente-sin-precios"],
.evt-card-img img[src*="eventos-lobby-baranda-sin-precios"],
.evt-card-img img[src*="eventos-lobby-gradas-sin-precios"],
.evt-full-card-img img[src*="salon-1er-nivel-sin-precios"],
.evt-full-card-img img[src*="salon-2do-nivel-sin-precios"],
.evt-full-card-img img[src*="eventos-lobby-frente-sin-precios"],
.evt-full-card-img img[src*="eventos-lobby-baranda-sin-precios"],
.evt-full-card-img img[src*="eventos-lobby-gradas-sin-precios"],
.gallery-item img[src*="salon-1er-nivel-sin-precios"],
.gallery-item img[src*="salon-2do-nivel-sin-precios"],
.gallery-item img[src*="eventos-lobby-frente-sin-precios"],
.gallery-item img[src*="eventos-lobby-baranda-sin-precios"],
.gallery-item img[src*="eventos-lobby-gradas-sin-precios"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #08112f !important;
  padding: 0.15rem !important;
}

.evt-card-img,
.evt-full-card-img,
.gallery-item {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* También centramos las tarjetas contenedoras */
.events-strip,
.evt-full-grid {
  justify-content: center !important;
}
.events-strip .evt-card,
.evt-full-grid .evt-full-card {
  margin-left: auto !important;
  margin-right: auto !important;
}


/* ================================================================
   AJUSTE HEADER COMPACTO — JUNIO 2026
   Reduce la franja blanca fija del encabezado para que ocupe menos alto.
   ================================================================ */

.navbar {
  min-height: 86px !important;
  padding: 0.35rem 0 !important;
}

.navbar-inner {
  min-height: 76px !important;
  padding-top: 0.2rem !important;
  padding-bottom: 0.2rem !important;
  align-items: center !important;
}

.navbar-logo img {
  width: 240px !important;
  max-width: 240px !important;
  height: auto !important;
  display: block !important;
}

.navbar.scrolled {
  min-height: 72px !important;
  padding: 0.2rem 0 !important;
}

.navbar.scrolled .navbar-inner {
  min-height: 66px !important;
}

.navbar.scrolled .navbar-logo img {
  width: 210px !important;
  max-width: 210px !important;
}

/* Menú y botones más compactos */
.navbar-links {
  gap: 2rem !important;
  align-items: center !important;
}

.navbar-links a:not(.nav-reserve) {
  font-size: 0.82rem !important;
}

.nav-reserve {
  min-height: 44px !important;
  padding: 0.75rem 1.65rem !important;
  font-size: 0.82rem !important;
}

.theme-toggle,
body.theme-mixed .theme-toggle,
body.theme-dark .theme-toggle {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
}

body {
  scroll-padding-top: 88px !important;
}

@media (max-width: 900px) {
  .navbar {
    min-height: 78px !important;
    padding: 0.25rem 0 !important;
  }

  .navbar-inner {
    min-height: 68px !important;
  }

  .navbar-logo img {
    width: 205px !important;
    max-width: 205px !important;
  }

  .navbar.scrolled .navbar-logo img {
    width: 188px !important;
    max-width: 188px !important;
  }

  .nav-reserve {
    min-height: 40px !important;
    padding: 0.65rem 1.15rem !important;
  }

  body {
    scroll-padding-top: 78px !important;
  }
}

@media (max-width: 520px) {
  .navbar-logo img {
    width: 175px !important;
    max-width: 175px !important;
  }

  .navbar.scrolled .navbar-logo img {
    width: 160px !important;
    max-width: 160px !important;
  }

  .theme-toggle,
  body.theme-mixed .theme-toggle,
  body.theme-dark .theme-toggle {
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
  }
}


/* ================================================================
   FIX DEFINITIVO BOTÓN CAMBIO DE COLOR
   Funciona aunque el navegador bloquee localStorage.
   ================================================================ */

.theme-toggle {
  pointer-events: auto !important;
  z-index: 99999 !important;
}

/* Estado oscuro aplicado también desde html[data-theme="dark"] */
html[data-theme="dark"] body {
  background: var(--navy-deep) !important;
  color: var(--light) !important;
}

html[data-theme="dark"] .navbar {
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .navbar.scrolled {
  background: rgba(10, 14, 40, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 4px 32px rgba(0,0,0,0.4) !important;
}

html[data-theme="dark"] .navbar-links a:not(.nav-reserve) {
  color: var(--gray) !important;
}

html[data-theme="dark"] .navbar-links a:not(.nav-reserve):hover,
html[data-theme="dark"] .navbar-links a.active:not(.nav-reserve) {
  color: #ffffff !important;
}

html[data-theme="dark"] .theme-toggle {
  background: rgba(255,255,255,0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .hero-bg,
html[data-theme="dark"] .services-sec,
html[data-theme="dark"] .events-sec,
html[data-theme="dark"] .contact-sec,
html[data-theme="dark"] .packages-sec,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .page-hero-bg,
html[data-theme="dark"] .ticker {
  background: var(--navy-deep) !important;
}

html[data-theme="dark"] .promos-sec,
html[data-theme="dark"] .gallery-sec,
html[data-theme="dark"] footer {
  background: var(--navy) !important;
}

html[data-theme="dark"] .cosmic-section {
  background:
    radial-gradient(circle at 70% 20%, rgba(0,214,230,.18), transparent 32%),
    radial-gradient(circle at 20% 80%, rgba(238,28,113,.18), transparent 35%),
    #070d27 !important;
  color: #ffffff !important;
}

/* Estado claro/mixto aplicado desde html[data-theme="mixed"] */
html[data-theme="mixed"] .navbar {
  background: rgba(255,255,255,0.95) !important;
}

html[data-theme="mixed"] .navbar-links a:not(.nav-reserve) {
  color: #1B2058 !important;
}


/* === AJUSTES SOLICITADOS METRO BOWL — CONTACTO, COSMIC Y ARTE ALL YOU CAN PLAY === */
.promo-all-you-can-play-art {
  height: auto !important;
  aspect-ratio: 6 / 7 !important;
  background: #04120f !important;
  border: 1px solid rgba(0, 240, 195, 0.35) !important;
}
.promo-all-you-can-play-art::before {
  background: linear-gradient(135deg, rgba(0, 240, 195, 0.10), rgba(232,25,106,0.08)) !important;
}
.promo-all-you-can-play-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #04120f !important;
}
.event-contact-strip {
  margin: 2.8rem auto 0;
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(0,200,200,.22);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(0,200,200,.05));
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.event-contact-copy {
  padding: .5rem .35rem .5rem .2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-contact-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: .85rem;
}
.event-contact-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: .03em;
  margin-bottom: .7rem;
}
.event-contact-copy p {
  margin: 0;
  color: var(--gray);
  line-height: 1.75;
  max-width: 520px;
}
.event-contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
}
.event-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 1rem 1.05rem;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  background: rgba(7,12,36,.46);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform var(--trans), border-color var(--trans), background var(--trans), box-shadow var(--trans);
}
.event-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,215,230,.28);
  background: rgba(12,20,54,.75);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.event-contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  background: rgba(0,215,230,.12);
  border: 1px solid rgba(0,215,230,.18);
}
.event-contact-icon .icon-svg { width: 24px; height: 24px; }
.event-contact-card-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.event-contact-card-copy small {
  color: var(--gray);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .22rem;
}
.event-contact-card-copy strong {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.3;
  text-transform: none;
  color: white;
}
.event-contact-card-copy span {
  color: var(--aqua);
  font-weight: 700;
  font-size: .88rem;
  margin-top: .3rem;
  word-break: break-word;
}
@media (max-width: 768px) {
  .promo-all-you-can-play-art { aspect-ratio: 6 / 7 !important; }
  .event-contact-strip { grid-template-columns: 1fr; padding: 1.2rem; }
  .event-contact-copy { padding: .2rem; }
}

/* ================================================================
   MENÚ MÓVIL MODERNO + CONTACTO LEGIBLE — JULIO 2026
   ================================================================ */

/* Los datos directos siempre deben ser visibles en modo claro y oscuro. */
.contact-direct-link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  color: #1B2058 !important;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color .2s ease, transform .2s ease;
}
.contact-direct-link:hover {
  color: var(--pink) !important;
  transform: translateX(2px);
}
body.theme-dark .contact-direct-link,
html[data-theme="dark"] body .contact-direct-link {
  color: #ffffff !important;
}
body.theme-dark .contact-direct-link:hover,
html[data-theme="dark"] body .contact-direct-link:hover {
  color: var(--aqua) !important;
}

@media (max-width: 768px) {
  .mobile-nav {
    inset: 0 !important;
    padding: 96px 16px 24px !important;
    display: block !important;
    overflow-y: auto !important;
    background:
      radial-gradient(circle at 12% 16%, rgba(0,200,200,.18), transparent 30%),
      radial-gradient(circle at 88% 82%, rgba(232,25,106,.22), transparent 34%),
      linear-gradient(160deg, #080d2c 0%, #11184d 52%, #160c36 100%) !important;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease !important;
  }

  .mobile-nav.open {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-menu-shell {
    width: min(100%, 540px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: rgba(9,16,55,.72);
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-menu-intro {
    padding: 4px 4px 18px;
    text-align: left;
  }
  .mobile-menu-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--aqua);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
  }
  .mobile-menu-intro strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1;
    text-transform: uppercase;
  }
  .mobile-menu-intro p {
    max-width: 410px;
    margin-top: 9px;
    color: rgba(255,255,255,.64);
    font-size: .84rem;
    line-height: 1.55;
  }

  .mobile-menu-links {
    display: grid;
    gap: 10px;
  }
  .mobile-nav .mobile-menu-link {
    display: grid !important;
    grid-template-columns: 48px minmax(0,1fr) 26px;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    color: #ffffff !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: left;
    text-transform: none !important;
    transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
  }
  .mobile-nav .mobile-menu-link:hover,
  .mobile-nav .mobile-menu-link.active {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0,200,200,.16), rgba(232,25,106,.14));
    border-color: rgba(0,200,200,.38);
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
  }
  .mobile-menu-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--aqua);
    background: rgba(0,200,200,.11);
    border: 1px solid rgba(0,200,200,.22);
  }
  .mobile-menu-link.active .mobile-menu-icon {
    color: #ffffff;
    background: linear-gradient(135deg, var(--aqua), #1789dd);
    border-color: transparent;
  }
  .mobile-menu-icon svg {
    width: 23px;
    height: 23px;
  }
  .mobile-menu-copy {
    min-width: 0;
  }
  .mobile-menu-copy strong {
    display: block;
    overflow: hidden;
    color: #ffffff;
    font-size: .98rem;
    font-weight: 750;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-menu-copy small {
    display: block;
    margin-top: 4px;
    overflow: hidden;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 400;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .mobile-menu-arrow {
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.46);
  }
  .mobile-menu-arrow svg {
    width: 20px;
    height: 20px;
  }

  .mobile-menu-actions {
    display: grid;
    grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
    gap: 10px;
    margin-top: 14px;
  }
  .mobile-theme-action,
  body.theme-mixed .mobile-theme-action,
  body.theme-dark .mobile-theme-action,
  html[data-theme="dark"] body .mobile-theme-action {
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    margin: 0 !important;
    padding: 0 14px !important;
    justify-content: center !important;
    gap: 9px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    background: rgba(255,255,255,.07) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }
  .mobile-theme-text {
    display: inline !important;
    font-size: .73rem;
    font-weight: 700;
    line-height: 1.1;
  }
  .mobile-quote-action,
  .mobile-nav .mobile-quote-action {
    min-height: 52px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E8196A, #ff3d85) !important;
    color: #ffffff !important;
    box-shadow: 0 14px 28px rgba(232,25,106,.28);
    font-family: var(--font-body) !important;
    font-size: .78rem !important;
    font-weight: 800 !important;
    letter-spacing: .03em !important;
    line-height: 1.1 !important;
    text-align: center;
    text-transform: uppercase !important;
  }
  .mobile-quote-action svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
  }
  .mobile-menu-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 17px;
    color: rgba(255,255,255,.38);
    font-size: .69rem;
    line-height: 1.35;
  }
  .mobile-nav .mobile-menu-contact a {
    color: rgba(255,255,255,.7) !important;
    font-family: var(--font-body) !important;
    font-size: .69rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }
}

@media (max-width: 420px) {
  .mobile-nav { padding-inline: 10px !important; }
  .mobile-menu-shell { padding: 16px; border-radius: 23px; }
  .mobile-menu-intro { padding-bottom: 14px; }
  .mobile-nav .mobile-menu-link {
    grid-template-columns: 44px minmax(0,1fr) 22px;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 16px;
  }
  .mobile-menu-icon { width: 44px; height: 44px; border-radius: 13px; }
  .mobile-menu-actions { grid-template-columns: 1fr; }
  .mobile-theme-action,
  .mobile-quote-action { min-height: 48px !important; height: 48px !important; }
}

/* ================================================================
   RESPONSIVE GLOBAL — JULIO 2026
   Adaptación completa para escritorio, tablet y teléfono.
   ================================================================ */

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}
main,
section,
.container,
.navbar-inner,
.hero-inner,
.services-editorial,
.promos-layout,
.events-strip,
.contact-layout,
.srv-detail-layout,
.pkg-grid,
.footer-grid,
.evt-full-grid,
.sched-grid,
.steps-grid,
.location-gallery,
.faq-grid {
  min-width: 0;
}
img,
video,
iframe,
svg {
  max-width: 100%;
}
video,
iframe {
  display: block;
}
input,
select,
textarea,
button {
  max-width: 100%;
}
p,
a,
li,
.cinfo-val,
.contact-direct-link,
.footer-links a,
.mobile-menu-contact a,
.location-map-text {
  overflow-wrap: anywhere;
  word-break: normal;
}
.container {
  width: min(100%, 1240px);
  padding-inline: clamp(1rem, 4vw, 2rem);
}
section,
.srv-detail,
[id] {
  scroll-margin-top: 112px;
}
.navbar-inner > *,
.hero-inner > *,
.promos-layout > *,
.contact-layout > *,
.srv-detail-layout > *,
.footer-grid > * {
  min-width: 0;
}
.navbar-logo {
  display: inline-flex;
  min-width: 0;
  flex: 0 1 auto;
}
.navbar-logo img {
  width: auto;
  max-width: min(290px, 50vw);
}
.hamburger {
  flex: 0 0 auto;
  position: relative;
  z-index: 101;
}
.btn {
  max-width: 100%;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.25;
}
.display-xl,
.display-lg,
.display-md,
.srv-card-name,
.evt-full-title,
.form-box-title,
.pkg-name {
  overflow-wrap: anywhere;
}

/* Navegación interna de Servicios */
.service-anchor-nav {
  position: sticky;
  top: 92px;
  z-index: 50;
  padding: 0;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
}
.service-anchor-scroll {
  display: flex;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.service-anchor-scroll::-webkit-scrollbar { display: none; }
.service-anchor-link {
  flex: 0 0 auto;
  padding: 1rem 1.35rem;
  border-bottom: 2px solid transparent;
  color: var(--gray);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.service-anchor-link:hover,
.service-anchor-link:focus-visible {
  color: var(--white);
  border-color: var(--pink);
  background: rgba(255,255,255,.035);
}

/* Tablet y pantallas de navegación compacta */
@media (max-width: 1100px) {
  html { scroll-padding-top: 88px; }
  section,
  .srv-detail,
  [id] { scroll-margin-top: 96px; }

  .navbar-links { display: none !important; }
  .hamburger { display: flex !important; }
  .navbar { padding: 1rem 0; }
  .navbar.scrolled { padding: .72rem 0; }

  .mobile-nav {
    inset: 0 !important;
    padding: 92px 16px 24px !important;
    display: block !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 12% 16%, rgba(0,200,200,.18), transparent 30%),
      radial-gradient(circle at 88% 82%, rgba(232,25,106,.22), transparent 34%),
      linear-gradient(160deg, #080d2c 0%, #11184d 52%, #160c36 100%) !important;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease !important;
  }
  .mobile-nav.open {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .mobile-menu-shell {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 28px;
    background: rgba(9,16,55,.76);
    box-shadow: 0 26px 70px rgba(0,0,0,.34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .mobile-menu-intro { padding: 4px 4px 18px; text-align: left; }
  .mobile-menu-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--aqua);
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
  }
  .mobile-menu-intro strong {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.45rem);
    line-height: 1;
    text-transform: uppercase;
  }
  .mobile-menu-intro p {
    max-width: 410px;
    margin-top: 9px;
    color: rgba(255,255,255,.64);
    font-size: .84rem;
    line-height: 1.55;
  }
  .mobile-menu-links { display: grid; gap: 10px; }
  .mobile-nav .mobile-menu-link {
    display: grid !important;
    grid-template-columns: 48px minmax(0,1fr) 26px;
    align-items: center;
    gap: 13px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    color: #fff !important;
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    text-align: left;
    text-transform: none !important;
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
  }
  .mobile-nav .mobile-menu-link:hover,
  .mobile-nav .mobile-menu-link.active {
    transform: translateY(-2px);
    border-color: rgba(0,229,240,.36);
    background: rgba(0,200,200,.1);
  }
  .mobile-menu-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(0,200,200,.18), rgba(232,25,106,.12));
    color: var(--aqua);
  }
  .mobile-menu-icon svg { width: 23px; height: 23px; }
  .mobile-menu-copy { min-width: 0; }
  .mobile-menu-copy strong {
    display: block;
    color: #fff;
    font-size: .98rem;
    line-height: 1.2;
  }
  .mobile-menu-copy small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.58);
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.35;
  }
  .mobile-menu-arrow { display: grid; place-items: center; color: rgba(255,255,255,.55); }
  .mobile-menu-arrow svg { width: 19px; height: 19px; }
  .mobile-menu-actions {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 10px;
    margin-top: 14px;
  }
  .mobile-theme-action,
  .mobile-quote-action {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;
    height: auto !important;
    padding: 10px 12px !important;
    border-radius: 15px !important;
    font-family: var(--font-body) !important;
    font-size: .74rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    text-align: center;
  }
  .mobile-theme-action {
    border: 1px solid rgba(255,255,255,.13) !important;
    background: rgba(255,255,255,.065) !important;
    color: #fff !important;
  }
  .mobile-quote-action {
    border: 1px solid rgba(232,25,106,.55) !important;
    background: linear-gradient(135deg, var(--pink), #c30d58) !important;
    color: #fff !important;
  }
  .mobile-quote-action svg { width: 18px; height: 18px; flex: 0 0 auto; }
  .mobile-menu-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 9px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.52);
    text-align: center;
  }
  .mobile-menu-contact a {
    color: rgba(255,255,255,.76) !important;
    font-family: var(--font-body) !important;
    font-size: .72rem !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .hero {
    min-height: auto;
    padding: 9rem 0 5.5rem;
  }
  .hero-content { padding-top: 0; }
  .hero-inner { gap: 2.5rem; }
  .scroll-hint { display: none; }

  .srv-detail-layout { gap: 3rem; }
  .footer-grid { gap: 2.25rem; }
  .service-anchor-nav { top: 78px; }
}

@media (max-width: 900px) {
  section { padding: 5rem 0; }
  .srv-detail { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }

  .hero-title { max-width: 760px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
  }
  .hero-stats > div { min-width: 0; }
  .stat-num { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  .stat-label { overflow-wrap: anywhere; }

  .services-mini-grid { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .srv-card-desc { max-width: 100%; }

  .srv-detail-img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .evt-full-card-body { padding: 1.45rem; }
  .evt-full-foot { gap: 1rem; flex-wrap: wrap; }

  .location-photo-card { min-height: 220px; }
  .contact-location-highlight .mini-photo { height: auto; aspect-ratio: 16 / 10; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 78px; }
  section,
  .srv-detail,
  [id] { scroll-margin-top: 86px; }

  .navbar { padding: .75rem 0; }
  .navbar.scrolled { padding: .6rem 0; }
  .navbar-logo img {
    width: min(220px, 62vw) !important;
    max-width: min(220px, 62vw) !important;
    height: auto !important;
    max-height: 58px;
  }
  .service-anchor-nav { top: 68px; }

  .display-xl { font-size: clamp(3.1rem, 15vw, 5.7rem); line-height: .88; }
  .display-lg { font-size: clamp(2.65rem, 12vw, 4.4rem); line-height: .92; }
  .display-md { font-size: clamp(2.05rem, 9vw, 3.2rem); }
  .hero-title .line3 { -webkit-text-stroke-width: 1px; }

  .hero {
    padding-top: 7.8rem;
    padding-bottom: 4.5rem;
  }
  .hero-sub {
    max-width: 100%;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    line-height: 1.7;
  }
  .hero-actions { margin-bottom: 2.3rem; }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1rem;
  }
  .hero-stats > div {
    padding: .85rem 0;
    border-bottom: 1px solid var(--border);
  }
  .hero-stats > div:last-child { border-bottom: 0; }

  .page-hero {
    min-height: 420px;
    padding-top: 6.8rem;
    padding-bottom: 3.5rem;
  }
  .page-hero-content { width: 100%; }
  .page-hero-content p { max-width: 100% !important; }

  .services-editorial { gap: 1rem; }
  .services-editorial > div[style*="flex-direction:column"] { gap: 1rem !important; }
  .srv-card-inner,
  .srv-card.tall .srv-card-inner { min-height: 360px; }
  .services-mini-grid { gap: 1rem !important; margin-top: 1rem !important; }
  .srv-card-desc {
    max-height: 120px !important;
    opacity: 1 !important;
    margin-bottom: .8rem !important;
  }
  .srv-card-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .promo-card { align-items: flex-start; }
  .events-cta { padding: 2rem 1.25rem; }
  .events-cta-actions,
  .cta-actions { width: 100%; }

  .gallery-item { width: 230px; height: 172px; }
  .gallery-row { gap: .85rem; }

  .srv-detail-layout { gap: 2rem; }
  .srv-detail-img-badge { bottom: 1rem; left: 1rem; padding: .8rem 1rem; }
  .srv-detail-img-badge .price { font-size: 1.6rem; }
  .price-chips { gap: .55rem; }

  .form-box { padding: 1.6rem; border-radius: var(--radius-lg); }
  .f-input { font-size: 16px; }
  .cinfo-item { gap: .85rem; margin-bottom: 1.5rem; }

  .location-gallery,
  .contact-location-highlight { gap: 1rem !important; }
  .location-photo-card { min-height: 260px; }
  .location-photo-overlay { position: relative; background: rgba(10,14,40,.94); }

  .faq-grid { gap: 1rem !important; margin-top: 2rem !important; }
  .faq-item { padding: 1.25rem !important; }

  .footer-grid { margin-bottom: 2.5rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .container { padding-inline: 1rem; }
  section { padding: 4rem 0; }
  .srv-detail { padding: 4rem 0; }
  .section-header { margin-bottom: 2.4rem; }

  .services-mini-grid { grid-template-columns: 1fr !important; }
  .srv-card-inner,
  .srv-card.tall .srv-card-inner { min-height: 330px; }

  .evt-full-grid,
  .sched-grid,
  .steps-grid { grid-template-columns: 1fr !important; }
  .evt-full-card-img { height: auto !important; aspect-ratio: 4 / 3; }
  .sched-card { padding: 1.2rem !important; }
  .steps-grid { gap: 2.4rem !important; }

  .service-anchor-link { padding: .85rem 1rem; font-size: .68rem; }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: .15rem;
  }
  .contact-layout { gap: 2.5rem; }
  .form-box { padding: 1.35rem; }
  .location-photo-card { min-height: 0; }
  .location-photo-card img { height: auto !important; aspect-ratio: 4 / 3; }

  .footer-grid { grid-template-columns: 1fr !important; }
  footer { padding: 4rem 0 2rem; }
}

@media (max-width: 480px) {
  .navbar-logo img {
    width: min(185px, 65vw) !important;
    max-width: min(185px, 65vw) !important;
    max-height: 50px;
  }
  .service-anchor-nav { top: 62px; }
  .mobile-nav { padding: 78px 10px 16px !important; }
  .mobile-menu-shell { padding: 15px; border-radius: 22px; }
  .mobile-menu-intro { padding-bottom: 13px; }
  .mobile-nav .mobile-menu-link {
    grid-template-columns: 43px minmax(0,1fr) 20px;
    gap: 10px;
    padding: 10px;
    border-radius: 15px;
  }
  .mobile-menu-icon { width: 43px; height: 43px; border-radius: 12px; }
  .mobile-menu-actions { grid-template-columns: 1fr; }

  .display-xl { font-size: clamp(2.8rem, 14.8vw, 4.5rem); }
  .display-lg { font-size: clamp(2.35rem, 12vw, 3.65rem); }
  .display-md { font-size: clamp(1.9rem, 9.5vw, 2.8rem); }
  .eyebrow { letter-spacing: .15em; }

  .hero { padding-top: 6.9rem; padding-bottom: 3.6rem; }
  .hero-actions,
  .cta-actions,
  .events-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn,
  .cta-actions .btn,
  .events-cta-actions .btn,
  .srv-detail-text .btn,
  .event-contact-strip .btn {
    width: 100%;
  }
  .btn,
  .btn-lg { padding: .9rem 1.25rem; font-size: .76rem; }

  .page-hero { min-height: 370px; padding-top: 6rem; padding-bottom: 2.8rem; }
  .page-hero-content p { font-size: .95rem !important; line-height: 1.65; }

  .promo-card {
    flex-direction: column;
    gap: .85rem;
    padding: 1rem;
  }
  .promo-icon { width: 44px; height: 44px; }

  .events-cta { text-align: left; }
  .events-cta-actions { justify-content: stretch; }

  .gallery-item { width: 200px; height: 150px; }

  .srv-detail-img { border-radius: var(--radius-lg); }
  .srv-detail-img-badge { max-width: calc(100% - 2rem); }
  .price-chip { width: 100%; border-radius: 14px; }
  .srv-feat { align-items: flex-start; }
  .srv-feat-dot { margin-top: .55em; }

  .evt-full-card-body { padding: 1.2rem !important; }
  .evt-full-foot {
    align-items: stretch !important;
    flex-direction: column;
  }
  .evt-full-foot .btn { width: 100%; }
  .evt-full-price { text-align: center; }
  .event-contact-strip { padding: 1.2rem !important; }
  .event-contact-strip strong { font-size: 1.05rem !important; }

  .cinfo-item > div:last-child { min-width: 0; }
  .cinfo-icon { width: 42px; height: 42px; }
  .hours-box { padding: 1.15rem; }
  .social-row { flex-wrap: wrap; }
  .location-map-panel [style*="padding:2rem"] { padding: 1.25rem !important; }
  .location-map-title { font-size: 1.3rem !important; }

  .faq-q { font-size: .88rem !important; }
  .faq-a { font-size: .82rem !important; }

  .pkg-card { padding: 1.6rem 1.2rem; }
  .footer-logo-img { max-width: min(230px, 78vw); height: auto; }
  .footer-copy { line-height: 1.55; }
}

@media (max-width: 360px) {
  .container { padding-inline: .85rem; }
  .navbar-logo img {
    width: min(165px, 62vw) !important;
    max-width: min(165px, 62vw) !important;
  }
  .hamburger { padding: .35rem; }
  .hamburger span { width: 24px; }
  .mobile-menu-copy small { display: none; }
  .mobile-nav .mobile-menu-link { grid-template-columns: 40px minmax(0,1fr) 18px; }
  .mobile-menu-icon { width: 40px; height: 40px; }
  .display-xl { font-size: clamp(2.55rem, 14vw, 3.7rem); }
  .display-lg { font-size: clamp(2.15rem, 11vw, 3rem); }
  .hero-sub { font-size: .94rem; }
  .btn,
  .btn-lg { letter-spacing: .08em; }
  .service-anchor-link { padding-inline: .85rem; }
}

/* Mejora para teléfonos en horizontal y pantallas de poca altura */
@media (max-height: 520px) and (orientation: landscape) and (max-width: 1100px) {
  .mobile-nav { padding-top: 70px !important; }
  .mobile-menu-shell { width: min(92vw, 820px); }
  .mobile-menu-intro { display: none; }
  .mobile-menu-links { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mobile-menu-actions { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mobile-menu-contact { margin-top: 10px; padding-top: 10px; }
}

/* Respeta preferencias de movimiento reducido y mejora estabilidad móvil. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}



/* ================================================================
   CORRECCIÓN PROMOCIONES ESCRITORIO — JULIO 2026
   Evita que una fotografía flotante cubra el arte promocional.
   ================================================================ */
.promos-visual .promos-img-float {
  display: none !important;
}
.promos-visual .promo-all-you-can-play-art {
  margin-inline: auto;
}


/* === METRO BOWL: rendimiento de carga === */
.services-sec,
.promos-sec,
.events-sec,
.gallery-sec,
.cta-sec,
.cosmic-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

img {
  max-width: 100%;
}

/* ================================================================
   HOTFIX LEGIBILIDAD — BLOQUE DE CONTACTO EN EVENTOS
   ================================================================ */
body .event-contact-strip {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%) !important;
  border: 1px solid rgba(0, 200, 200, 0.24) !important;
  box-shadow: 0 18px 44px rgba(27, 32, 88, 0.08) !important;
  color: #1B2058 !important;
}
body .event-contact-copy {
  color: #1B2058 !important;
}
body .event-contact-eyebrow {
  color: #00bfd4 !important;
}
body .event-contact-strip strong {
  color: #1B2058 !important;
  text-shadow: none !important;
}
body .event-contact-copy p {
  color: #5d6785 !important;
  font-size: 1.02rem !important;
}
body .event-contact-card {
  background: linear-gradient(135deg, #667285 0%, #8e97a6 100%) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 12px 28px rgba(27, 32, 88, 0.12) !important;
}
body .event-contact-card:hover {
  background: linear-gradient(135deg, #586579 0%, #7d8798 100%) !important;
}
body .event-contact-icon {
  background: rgba(0, 215, 230, 0.16) !important;
  border: 1px solid rgba(0, 215, 230, 0.28) !important;
}
body .event-contact-card-copy small {
  color: rgba(235, 242, 255, 0.72) !important;
  font-weight: 700 !important;
}
body .event-contact-card-copy strong {
  color: #ffffff !important;
  font-size: 1.15rem !important;
}
body .event-contact-card-copy span {
  color: #00e1f0 !important;
}
@media (max-width: 768px) {
  body .event-contact-strip strong {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  body .event-contact-copy p {
    font-size: .96rem !important;
  }
}

/* ================================================================
   HOTFIX LEGIBILIDAD — CONFIRMACIÓN DEL FORMULARIO
   ================================================================ */
body .f-success {
  align-items: flex-start !important;
  flex-direction: row !important;
  gap: .9rem !important;
  padding: 1.15rem 1.2rem !important;
  background: linear-gradient(135deg, #ecffff 0%, #f5ffff 100%) !important;
  border: 1px solid #52dce5 !important;
  color: #27415f !important;
  box-shadow: 0 12px 28px rgba(0, 200, 200, .08) !important;
}
body .f-success-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #d7fbfd;
  border: 1px solid #85e8ed;
  color: #009dae;
}
body .f-success-icon svg {
  width: 23px;
  height: 23px;
}
body .f-success-copy {
  display: flex;
  flex-direction: column;
  gap: .32rem;
  min-width: 0;
}
body .f-success strong {
  color: #142558 !important;
  font-size: 1rem !important;
  line-height: 1.35 !important;
  text-shadow: none !important;
}
body .f-success #fSuccessText {
  color: #31506d !important;
  font-size: .91rem !important;
  line-height: 1.65 !important;
}
body .form-status.success {
  background: linear-gradient(135deg, #ecffff 0%, #f5ffff 100%) !important;
  border-color: #52dce5 !important;
}
body .form-status.success .form-status-title {
  color: #142558 !important;
}
body .form-status.success .form-status-text {
  color: #31506d !important;
}
body .form-status.sending .form-status-title,
body .form-status.error .form-status-title {
  color: #142558 !important;
}
body .form-status.sending .form-status-text,
body .form-status.error .form-status-text {
  color: #52627e !important;
}
body.theme-dark .f-success,
html[data-theme="dark"] body .f-success {
  background: linear-gradient(135deg, rgba(0,200,200,.14), rgba(9,19,54,.86)) !important;
  border-color: rgba(0,215,230,.35) !important;
}
body.theme-dark .f-success strong,
html[data-theme="dark"] body .f-success strong {
  color: #ffffff !important;
}
body.theme-dark .f-success #fSuccessText,
html[data-theme="dark"] body .f-success #fSuccessText {
  color: #bcd0e6 !important;
}
@media (max-width: 520px) {
  body .f-success {
    padding: 1rem !important;
  }
  body .f-success-icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }
}

/* Confirmación única: solo se muestra el aviso superior del formulario. */
#fSuccess,
.f-success {
  display: none !important;
}
