/* ============================================================
   EMOTION! Escape Room — Versión Final Consolidada
   Paleta original (teal) + dark theme moderno
   ============================================================ */

:root {
  --primary: #07beb8;
  --primary-light: #9ce5d8;
  --primary-dark: #059e99;
  --accent: #f59e0b;
  --accent-light: #fcf4d9;
  --neon: #06d6a0;
  --pink: #FE5976;
  --success: #10b981;
  --danger: #ef4444;
  --whatsapp: #25d366;

  --bg-dark: #0b0f14;
  --bg-card: #111820;
  --bg-card-hover: #182028;
  --bg-section: #0d1219;
  --bg-light: #151d26;
  --bg-cream: #fcf4d9;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border: rgba(7, 190, 184, 0.2);
  --border-light: rgba(255, 255, 255, 0.06);

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(7, 190, 184, 0.25);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --nav-height: 72px;
  --container-max: 1200px;
  --container-padding: clamp(1rem, 4vw, 2rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 16px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::selection { background: var(--primary); color: white; }
:focus-visible { outline: 2px solid var(--primary-light); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ---------- Layout ---------- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); position: relative; z-index: 1; }
.section { padding: clamp(4rem, 10vw, 7rem) 0; position: relative; }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(7, 190, 184, 0.1); border: 1px solid rgba(7, 190, 184, 0.25);
  padding: 0.35rem 1rem; border-radius: 100px; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { font-size: clamp(0.95rem, 2vw, 1.05rem); color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
.highlight { color: var(--accent); -webkit-text-fill-color: var(--accent); }

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center; z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { font-size: clamp(2rem, 6vw, 3rem); font-weight: 900; letter-spacing: 0.08em; animation: pulse-opacity 1.2s ease infinite; }
.loader-logo span { color: var(--primary); }
.loader-bar { width: 200px; height: 3px; background: var(--bg-card); border-radius: 2px; overflow: hidden; margin: 1.5rem auto 0; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; animation: load-bar 1.6s ease forwards; }
@keyframes load-bar { from { width: 0; } to { width: 100%; } }
@keyframes pulse-opacity { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ---------- Particles ---------- */
#particles-canvas { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: 0.35; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  transition: var(--transition); white-space: nowrap; position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white; box-shadow: 0 4px 15px rgba(7, 190, 184, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(7, 190, 184, 0.5); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #e08d07);
  color: #1a1a2e; box-shadow: 0 4px 15px rgba(245, 158, 11, 0.35);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5); }
.btn-outline {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--primary-light); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: white; }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }
.btn-pink { background: var(--pink); color: white; }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(254, 89, 118, 0.4); }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-glow { animation: pulse-glow 2.5s ease infinite; }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 15px rgba(7, 190, 184, 0.35), 0 0 0 0 rgba(7, 190, 184, 0.3); }
  50% { box-shadow: 0 4px 15px rgba(7, 190, 184, 0.35), 0 0 0 10px rgba(7, 190, 184, 0); }
}

/* ---------- Header / Navbar ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding-top: env(safe-area-inset-top);
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(11, 15, 20, 0.94);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height); max-width: var(--container-max);
  margin: 0 auto; padding: 0 var(--container-padding); gap: 1rem;
}
.nav-logo {
  font-size: 1.3rem; font-weight: 900; color: var(--text-primary);
  display: flex; flex-direction: column; line-height: 1; flex-shrink: 0;
}
.nav-logo span { color: var(--primary); }
.nav-logo small { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-link {
  font-size: 0.78rem; font-weight: 500; color: var(--text-secondary);
  padding: 0.4rem 0.55rem; border-radius: var(--radius-sm); transition: var(--transition);
  position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 0.5rem; right: 0.5rem;
  height: 2px; background: var(--primary); border-radius: 1px;
}
.nav-dropdown { position: relative; }
.nav-dropdown-content {
  position: absolute; top: 100%; left: 0; min-width: 180px;
  background: rgba(17, 24, 32, 0.98); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.4rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-content a {
  display: block; padding: 0.5rem 0.8rem; font-size: 0.82rem;
  color: var(--text-secondary); border-radius: 4px; transition: var(--transition);
}
.nav-dropdown-content a:hover { background: rgba(7, 190, 184, 0.1); color: var(--text-primary); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.lang-btn {
  font-size: 0.68rem; font-weight: 600; padding: 0.2rem 0.45rem;
  border-radius: 4px; color: var(--text-muted); transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active { background: var(--primary); color: white; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-padding) 4rem;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(7, 190, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 190, 184, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(7, 190, 184, 0.12) 0%, transparent 70%);
}
.hero-content { max-width: 800px; text-align: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600; color: var(--accent);
  background: rgba(245, 158, 11, 0.08); border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.4rem 1.2rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem); color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 1rem; line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-video {
  margin: 2rem auto; max-width: 560px; border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
}
.hero-video iframe { width: 100%; height: 100%; border: none; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 2rem; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
.scroll-arrow {
  width: 16px; height: 16px; margin: 0.5rem auto 0;
  border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg); animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce { 0%, 100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(4px); opacity: 0.5; } }

/* ---------- City Selection Buttons ---------- */
.city-select-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  max-width: 600px; margin: 0 auto;
}
.city-select-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1.2rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: var(--transition); text-align: center;
}
.city-select-btn:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.city-select-btn i { font-size: 1.5rem; color: var(--primary); }
.city-select-btn strong { font-size: 0.95rem; }
.city-select-btn span { font-size: 0.75rem; color: var(--text-muted); }

/* ---------- Stats ---------- */
.stats-bar {
  background: var(--bg-card); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 2rem 0; position: relative; z-index: 1;
}
.stats-grid { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 1.5rem; }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-suffix { font-size: 1.2rem; font-weight: 700; color: var(--primary-light); }
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-top: 0.2rem; display: block; }

/* ---------- 4 Pillars ---------- */
.pillars-section { background: var(--bg-section); }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.pillar-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: var(--transition); position: relative; overflow: hidden;
}
.pillar-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--neon));
  transform: scaleX(0); transition: var(--transition);
}
.pillar-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-icon {
  width: 56px; height: 56px; margin-bottom: 1rem;
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: rgba(7, 190, 184, 0.1); border: 1px solid rgba(7, 190, 184, 0.25); color: var(--primary);
}
.pillar-card:hover .pillar-icon { background: var(--primary); color: white; border-color: transparent; }
.pillar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.pillar-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }
.pillar-card p strong { color: var(--text-primary); }
.pillar-card p em { color: var(--primary-light); font-style: normal; }

/* ---------- Family Mode ---------- */
.family-section { background: var(--bg-dark); }
.family-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.family-content h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; margin-bottom: 1rem; -webkit-text-fill-color: unset; background: none; color: var(--text-primary); }
.family-content p { font-size: 1rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.family-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.family-buttons .btn { justify-content: flex-start; }
.family-img { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-section); }
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(7, 190, 184, 0.35); }
.faq-item.active { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; gap: 1rem; text-align: left;
  font-size: 0.9rem; font-weight: 600; color: var(--text-primary); transition: var(--transition);
}
.faq-question:hover { color: var(--primary-light); }
.faq-icon { color: var(--primary); flex-shrink: 0; font-size: 0.8rem; transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 1.3rem 1.1rem; font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }
.faq-answer strong { color: var(--text-primary); }

/* ---------- Reviews ---------- */
.reviews-section { background: var(--bg-dark); }
.reviews-swiper { padding: 1rem 0 3rem; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: var(--transition); height: 100%;
}
.review-card:hover { border-color: var(--primary); }
.review-stars { color: var(--accent); font-size: 0.8rem; margin-bottom: 0.75rem; display: flex; gap: 2px; }
.review-card blockquote { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 2px solid var(--border);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-author strong { display: block; font-size: 0.85rem; }
.review-author span { font-size: 0.72rem; color: var(--text-muted); }
.swiper-button-next, .swiper-button-prev {
  color: var(--primary) !important; width: 38px !important; height: 38px !important;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%;
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 0.85rem !important; }
.swiper-pagination-bullet { background: var(--text-muted) !important; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }

/* ---------- Recommendation Logos ---------- */
.reco-section { text-align: center; padding: 2rem 0; }
.reco-section img { margin: 1rem auto; max-width: 500px; opacity: 0.85; }
.reco-section h3 { font-size: 1rem; color: var(--text-secondary); font-weight: 500; margin: 1rem 0; }
.photos-grid { display: flex; gap: 0; justify-content: center; margin-top: 1rem; }
.photos-grid img { max-width: 600px; border-radius: var(--radius); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 3.5rem 0 1.5rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-logo { font-size: 1.6rem; font-weight: 900; margin-bottom: 0.5rem; }
.footer-logo span { color: var(--primary); }
.footer-tagline { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a {
  width: 36px; height: 36px; background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.9rem; transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col li { font-size: 0.82rem; color: var(--text-secondary); }
.footer-col li a { transition: var(--transition); }
.footer-col li a:hover { color: var(--primary-light); padding-left: 3px; }
.footer-col li i { color: var(--primary); margin-right: 0.4rem; font-size: 0.75rem; }
.footer-bottom {
  border-top: 1px solid var(--border-light); padding-top: 1.2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-muted); transition: var(--transition); }
.footer-legal a:hover { color: var(--primary-light); }

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 54px; height: 54px; background: var(--whatsapp); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem; z-index: 900;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6); }
.whatsapp-tooltip {
  position: absolute; right: calc(100% + 10px);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 0.35rem 0.7rem; border-radius: var(--radius-sm);
  font-size: 0.75rem; white-space: nowrap;
  opacity: 0; transform: translateX(8px); transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

.back-to-top {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: 0.85rem; z-index: 900; transition: var(--transition);
}
.back-to-top:hover { background: var(--primary); border-color: var(--primary); color: white; }
.back-to-top[hidden] { display: none; }

/* ---------- City Page Specifics ---------- */
.city-hero {
  padding: calc(var(--nav-height) + 2rem) 0 3rem;
  text-align: center; position: relative; overflow: hidden;
}
.city-hero h1 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; }
.city-hero-video { max-width: 100%; margin: 1rem auto; border-radius: var(--radius); overflow: hidden; }
.city-hero-video video { width: 100%; display: block; }

/* Games Grid */
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.game-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.game-card:hover { border-color: var(--primary); box-shadow: var(--shadow-glow); }
.game-card-img { position: relative; overflow: hidden; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.game-card-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: var(--transition); }
.game-card:hover .game-card-img img { transform: scale(1.03); }
.game-card-body { padding: 1.5rem; }
.game-card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.game-card-body .game-story { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.game-info-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1rem; }
.game-info-tag { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.game-info-tag i { color: var(--primary); }
.game-spoiler { font-size: 0.78rem; color: var(--primary-light); font-style: italic; margin-bottom: 1rem; }
.game-ctas { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Included section */
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; }
.included-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.2rem; text-align: center; transition: var(--transition);
}
.included-card:hover { border-color: var(--primary); }
.included-card img { width: 80%; margin: 0 auto 0.8rem; border-radius: var(--radius-sm); }
.included-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 0.4rem; }
.included-card p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* Pricing */
.pricing-table { max-width: 600px; margin: 0 auto; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .players { color: var(--text-secondary); }
.price-row .price { font-weight: 700; color: var(--primary); font-size: 1.1rem; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }

/* Promos */
.promos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.promo-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; transition: var(--transition);
}
.promo-card:hover { border-color: var(--primary); }
.promo-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--primary-light); }
.promo-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }
.promo-card .promo-discount { font-size: 1.2rem; font-weight: 800; color: var(--accent); margin-top: 0.5rem; }
.promo-code { background: var(--bg-light); padding: 0.3rem 0.6rem; border-radius: 4px; font-family: monospace; font-size: 0.8rem; color: var(--accent); }

/* Extras */
.extras-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.extra-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; transition: var(--transition);
}
.extra-card:hover { border-color: var(--primary); }
.extra-card img { width: 100%; border-radius: var(--radius-sm); margin-bottom: 1rem; }
.extra-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.5rem; }
.extra-card p { font-size: 0.83rem; color: var(--text-secondary); line-height: 1.6; }
.extra-price { font-size: 1.1rem; font-weight: 800; color: var(--accent); margin-top: 0.5rem; }

/* Gift Cards */
.gift-section { text-align: center; }
.gift-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem;
}
.contact-info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 0.3rem; }
.contact-info-card a { color: var(--primary-light); font-weight: 600; }
.contact-info-card a:hover { color: white; }
.contact-map { width: 100%; height: 300px; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* Form (city pages) */
.booking-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-label { font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); }
.form-input {
  background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem; color: var(--text-primary); font-size: 0.88rem; transition: var(--transition);
  width: 100%;
}
.form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(7, 190, 184, 0.12); }
.form-textarea { resize: vertical; min-height: 90px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  :root { --nav-height: 64px; }
  .nav-links {
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: rgba(11, 15, 20, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 1rem var(--container-padding) 1.5rem; gap: 0.15rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { padding: 0.5rem 0; font-size: 0.95rem; width: 100%; }
  .nav-dropdown-content { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; padding: 0 0 0 1rem; }
  .hamburger { display: flex; }
  .family-grid, .contact-grid { grid-template-columns: 1fr; }
  .city-select-grid { grid-template-columns: 1fr; max-width: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .promos-grid { grid-template-columns: 1fr; }
}
@media print {
  #header, .whatsapp-float, .back-to-top, #particles-canvas, #loader { display: none !important; }
  body { background: white; color: black; }
}
