/* ============================================================
   CDA INTERACTIVE — Website styles (vanilla, deployable)
   Built on the design-system tokens (css/styles.css).
   ============================================================ */

/* ---- Bilingual visibility (ES / EN toggle) --------------- */
:root[lang="es"] [data-lang="en"],
:root[lang="en"] [data-lang="es"] { display: none !important; }

/* ---- Page loader (flip) ----------------------------------- */
.cda-loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: #ffffff;
  opacity: 1; visibility: visible;
  transition: opacity .55s var(--ease-out, ease), visibility 0s linear .55s;
}
.cda-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.cda-loader-stage { perspective: 1100px; }
.cda-loader-logo {
  width: 210px; height: auto; display: block;
  transform-style: preserve-3d; backface-visibility: visible;
  will-change: transform;
  animation: cda-flip 1.6s cubic-bezier(.62,.04,.34,1) infinite;
}
@keyframes cda-flip {
  0%, 6%    { transform: rotateY(0deg); }
  52%, 62%  { transform: rotateY(360deg); }
  100%      { transform: rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .cda-loader-logo { animation: cda-pulse 1.4s ease-in-out infinite; }
  @keyframes cda-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
}

/* ---- Base ------------------------------------------------- */
html { scroll-behavior: smooth; }
body { min-height: 100vh; overflow-x: hidden; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.narrow { max-width: var(--container-narrow); }
section { position: relative; }
.eyebrow {
  font-family: var(--font-eyebrow); font-size: var(--text-xs); font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--accent);
}
.display {
  font-family: var(--font-brand); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide); line-height: var(--lh-tight); text-transform: uppercase;
}
.muted { color: var(--text-muted); }
.center { text-align: center; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  height: var(--control-h-md); padding: 0 22px;
  font-family: var(--font-sans); font-size: var(--text-md); font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide); text-transform: uppercase;
  border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: all var(--dur-base) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn-lg { height: var(--control-h-lg); padding: 0 30px; font-size: var(--text-lg); }
.btn-sm { height: var(--control-h-sm); padding: 0 14px; font-size: var(--text-sm); }
.btn-primary { background: var(--grad-gold); color: var(--text-on-accent); border-color: var(--gold-600); box-shadow: var(--shadow-sm); }
.btn-primary:hover { filter: brightness(1.06); box-shadow: var(--glow-gold); color: var(--text-on-accent); }
.btn-secondary { background: transparent; color: var(--text-strong); border-color: var(--border-strong); font-weight: var(--fw-semibold); }
.btn-secondary:hover { background: var(--surface-hover); border-color: var(--gold-500); color: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--text); font-weight: var(--fw-medium); }
.btn-ghost:hover { background: var(--surface-hover); }

/* Icon button */
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: var(--control-h-md); height: var(--control-h-md); flex: none;
  border-radius: var(--radius-md); border: 1px solid var(--border);
  background: var(--surface-card); color: var(--text-strong); cursor: pointer;
  transition: all var(--dur-base) var(--ease-out); text-decoration: none;
}
.icon-btn svg { width: 18px; height: 18px; }
.icon-btn:hover { background: var(--surface-hover); border-color: var(--border-strong); color: var(--accent-hover); }

/* ---- Badge / Tag ----------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px;
  font-family: var(--font-mono); font-size: var(--text-xs); font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide); text-transform: uppercase; line-height: 1; border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-success { background: rgba(79,180,119,.16); color: #8fd9ab; }
.badge-accent  { background: var(--gold-500); color: var(--navy-950); }
.badge-steel   { background: transparent; color: var(--ice-200); border-color: var(--navy-400); }
.tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px;
  font-family: var(--font-sans); font-size: var(--text-xs); font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide); color: var(--text);
  background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
}
.tag:hover { background: var(--surface-hover); }
.tag.active { color: var(--accent-hover); background: var(--accent-soft); border-color: var(--gold-500); }

/* ---- Card ------------------------------------------------- */
.card {
  position: relative; background: var(--surface-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.card.interactive { cursor: pointer; }
.card.interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-accent); }
.card-body { padding: var(--space-5); }

/* ---- Nav -------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--space-6); transition: all var(--dur-base) var(--ease-out);
  overflow: visible;
}
.nav.scrolled { background: rgba(10,19,34,.82); backdrop-filter: var(--blur-md); border-bottom: 1px solid var(--border); }
/* Default brand: compact rounded box (juegos, legal, etc.) */
.nav-brand {
  position: absolute; left: 50%; top: 10px; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 2;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18,33,62,.12);
  box-shadow: 0 12px 28px rgba(7,13,24,.5);
  animation: brand-in var(--dur-slow) var(--ease-out) both;
}
.nav-brand img {
  height: 84px; width: auto;
  transition: height var(--dur-base) var(--ease-out);
}
.nav.scrolled .nav-brand img { height: 68px; }

/* Landing only: large heraldic triangle banner that drops from the top */
body[data-page="inicio"] .nav-brand {
  top: 0;
  align-items: flex-start;
  width: 760px; max-width: 96vw;
  padding: 18px 0 70px;
  border: none; border-radius: 0;
  box-shadow: none;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  filter: drop-shadow(0 16px 30px rgba(7,13,24,.55));
  animation: brand-drop var(--dur-slower) var(--ease-out) both;
}
body[data-page="inicio"] .nav-brand img { height: 118px; }
body[data-page="inicio"] .nav.scrolled .nav-brand { padding-bottom: 56px; }
body[data-page="inicio"] .nav.scrolled .nav-brand img { height: 96px; }

/* Gentle float — applied to the logo image after entrance */
.nav-brand img { animation: brand-float 5.5s var(--ease-in-out) infinite; }

@keyframes brand-in {
  from { transform: translateX(-50%) scale(.94); }
  to   { transform: translateX(-50%) scale(1); }
}
@keyframes brand-drop {
  from { transform: translateX(-50%) translateY(-10px) scale(.96); }
  to   { transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes brand-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-brand, .nav-brand img { animation: none !important; }
}
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: flex-end; }
.nav-link {
  position: relative; padding: 8px 16px; text-decoration: none; font-size: var(--text-sm); font-weight: var(--fw-semibold);
  color: var(--text-muted); transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover { color: var(--text); }
.nav-link.active { color: var(--text-strong); }
.nav-link.active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 0; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: inline-flex; align-items: center; height: var(--control-h-md); padding: 0 14px;
  font-family: var(--font-mono); font-size: var(--text-xs); font-weight: var(--fw-medium); letter-spacing: .08em;
  background: var(--surface-card); color: var(--text-strong); border: 1px solid var(--border);
  border-radius: var(--radius-md); cursor: pointer; transition: all var(--dur-fast) var(--ease-out);
}
.lang-toggle:hover { border-color: var(--gold-500); color: var(--accent-hover); }
.nav-burger { display: none; }

/* ---- Hero ------------------------------------------------- */
.hero { overflow: hidden; padding: 96px 0 104px; }
.hero-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .hero-particles { display: none; } }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-crest); }
.hero::after { content: ""; position: absolute; inset: 0; background-image: var(--texture-hairline); }
.hero .container { position: relative; z-index: 1; }
.hero-watermark { position: absolute; right: -4%; top: 50%; transform: translateY(-50%); height: 540px; opacity: .06; z-index: 0; pointer-events: none; }
.hero h1 { font-size: clamp(40px, 7vw, 88px); color: var(--ice-050); margin: 0 0 22px; letter-spacing: .02em; max-width: 12ch; }
.hero-lead { font-size: var(--text-xl); line-height: 1.55; color: var(--ice-200); max-width: 560px; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 34px; color: var(--gold-400); }
.hero-stats .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ice-300); margin-top: 4px; }

/* ---- Section heads --------------------------------------- */
.section { padding: var(--space-9) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: var(--space-6); }
.section-head h2 { margin: 0; font-size: var(--text-3xl); }
.section-head .eyebrow { display: block; margin-bottom: 12px; }

/* ---- Game grid / covers ---------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.game-cover { position: relative; height: 184px; overflow: hidden; }
.game-cover .tex { position: absolute; inset: 0; background-image: var(--texture-hairline); opacity: .7; }
.game-cover .wm { position: absolute; right: -28px; bottom: -34px; height: 196px; opacity: .08; filter: grayscale(1); }
.game-cover .genre {
  position: absolute; left: 18px; top: 16px; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ice-200);
  background: rgba(7,13,24,.5); padding: 4px 9px; border-radius: var(--radius-pill); border: 1px solid var(--border);
}
.game-cover .title {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  font-family: var(--font-display); font-weight: var(--fw-black); font-size: 26px; line-height: 1;
  letter-spacing: .03em; text-transform: uppercase; color: var(--ice-050); text-shadow: 0 2px 18px rgba(7,13,24,.7);
}
.game-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.game-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

/* ---- Contact + forms ------------------------------------- */
.contact { background: var(--navy-900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-4); }
.field label { font-family: var(--font-mono); font-size: var(--text-xs); letter-spacing: var(--ls-wide); text-transform: uppercase; color: var(--text-muted); font-weight: var(--fw-medium); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; min-height: var(--control-h-md);
  background: var(--surface-inset); color: var(--text-strong);
  border: 1px solid var(--border-strong); border-radius: var(--radius-md);
  font-family: var(--font-sans); font-size: var(--text-md); outline: none;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold-500); box-shadow: var(--ring); }
.field input::placeholder, .field textarea::placeholder { color: var(--ice-300); opacity: .6; }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: var(--text-sm); color: var(--text-muted); margin-bottom: var(--space-4); line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--gold-500); flex: none; }
.contact-aside { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-line { display: flex; align-items: center; gap: 14px; }
.contact-line .ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; flex: none; border-radius: var(--radius-md); background: var(--surface-card); border: 1px solid var(--border); color: var(--gold-400); }
.contact-line .ic svg { width: 20px; height: 20px; }
.contact-line a, .contact-line span { color: var(--text); text-decoration: none; }
.contact-line .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

/* ---- Socials --------------------------------------------- */
.socials { display: flex; gap: 12px; }
.social {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: var(--radius-md); background: var(--surface-card); border: 1px solid var(--border);
  color: var(--text-strong); transition: all var(--dur-base) var(--ease-out); text-decoration: none;
}
.social:hover { border-color: var(--gold-500); color: var(--accent-hover); transform: translateY(-3px); box-shadow: var(--glow-gold); }
.social svg { width: 22px; height: 22px; }

/* ---- Footer ---------------------------------------------- */
.footer { border-top: 1px solid var(--border); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding: var(--space-8) 0 var(--space-7); }
.footer-grid img { height: 64px; }
.footer-col .eyebrow { display: block; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--text-muted); font-size: var(--text-sm); padding: 5px 0; text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: var(--space-5) 0; border-top: 1px solid var(--border); font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); letter-spacing: .04em; flex-wrap: wrap; }

/* ---- Cookie banner --------------------------------------- */
.cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: var(--space-5); }
.cookie-inner {
  max-width: var(--container); margin: 0 auto; background: rgba(14,27,46,.94); backdrop-filter: var(--blur-md);
  border: 1px solid var(--border-strong); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
  padding: var(--space-5) var(--space-6);
}
.cookie-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-row .txt { flex: 1 1 320px; }
.cookie-row .txt strong { display: flex; align-items: center; gap: 10px; color: var(--text-strong); font-size: var(--text-md); margin-bottom: 8px; }
.cookie-row .txt strong svg { width: 20px; height: 20px; color: var(--gold-400); }
.cookie-row .txt p { margin: 0; color: var(--text-muted); font-size: var(--text-sm); line-height: 1.55; max-width: 540px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- Legal layout ---------------------------------------- */
.legal { display: grid; grid-template-columns: 240px 1fr; gap: var(--space-8); align-items: start; padding: var(--space-8) 0 var(--space-9); }
.legal-nav { position: sticky; top: 92px; }
.legal-nav .eyebrow { display: block; margin-bottom: 16px; }
.legal-nav a {
  display: block; padding: 10px 14px; text-decoration: none; border-radius: var(--radius-sm);
  font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--text-muted);
  border-left: 2px solid transparent;
}
.legal-nav a:hover { color: var(--text); }
.legal-nav a.active { color: var(--text-strong); background: var(--accent-soft); border-left-color: var(--gold-500); font-weight: var(--fw-semibold); }
.legal-body { max-width: var(--container-narrow); }
.legal-body h1 { font-size: var(--text-4xl); margin: 0 0 8px; }
.legal-body .updated { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); letter-spacing: .04em; margin: 0 0 var(--space-7); }
.legal-body h2 { font-size: var(--text-xl); margin: var(--space-6) 0 10px; color: var(--text-strong); }
.legal-body p, .legal-body li { color: var(--text); font-size: var(--text-md); line-height: var(--lh-relaxed); }
.legal-body ul { padding-left: 20px; }
.legal-body a { color: var(--link); }
.page-hero { padding: var(--space-8) 0 0; }

/* ---- Mobile nav drawer ----------------------------------- */
.nav-drawer { display: none; }

/* ---- Game detail page ------------------------------------ */
.crumb { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .06em; color: var(--text-muted); }
.crumb a { color: var(--text-muted); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.crumb a:hover { color: var(--accent-hover); }
.crumb svg { width: 14px; height: 14px; opacity: .6; }

.gd-hero { position: relative; overflow: hidden; padding: 64px 0 84px; }
.gd-hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-crest); }
.gd-hero::after { content: ""; position: absolute; inset: 0; background-image: var(--texture-hairline); }
.gd-hero .container { position: relative; z-index: 1; }
.gd-grid { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: center; margin-top: 28px; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; aspect-ratio: 9 / 19.5;
  background: linear-gradient(150deg, #1b2433, #0a0f17);
  border-radius: 46px; padding: 11px;
  box-shadow: 0 0 0 2px #2c3646, 0 0 0 11px #0c1118, var(--shadow-xl), var(--glow-steel);
  animation: gd-float 6.5s var(--ease-in-out) infinite;
}
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 36px; overflow: hidden; background: #05080d; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.phone-island { position: absolute; top: 13px; left: 50%; transform: translateX(-50%); width: 92px; height: 26px; background: #05080d; border-radius: 999px; z-index: 3; box-shadow: var(--inset-line); }
.phone-btn { position: absolute; width: 3px; border-radius: 3px; background: #2c3646; right: -2px; }
.phone-btn.b1 { top: 150px; height: 60px; } .phone-btn.b2 { top: 224px; height: 60px; }
.phone-btn.l1 { left: -2px; right: auto; top: 168px; height: 38px; }
@keyframes gd-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }

.gd-title { font-family: var(--font-display); font-weight: var(--fw-black); font-size: clamp(46px, 7vw, 82px); line-height: .92; letter-spacing: .04em; text-transform: uppercase; color: var(--ice-050); margin: 12px 0 6px; text-shadow: 0 4px 30px rgba(7,13,24,.6); }
.gd-sub { font-family: var(--font-display); font-size: var(--text-xl); color: var(--gold-400); letter-spacing: .03em; margin: 0 0 20px; }
.gd-desc { font-size: var(--text-lg); line-height: 1.6; color: var(--ice-200); max-width: 520px; margin: 0 0 26px; }
.gd-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Store badge (original styling) */
.store-badge {
  display: inline-flex; align-items: center; gap: 13px; padding: 0 24px; height: 62px;
  background: var(--grad-gold); color: var(--navy-950); border: 1px solid var(--gold-600);
  border-radius: var(--radius-md); text-decoration: none; box-shadow: var(--shadow-md);
  transition: all var(--dur-base) var(--ease-out);
}
.store-badge:hover { filter: brightness(1.06); box-shadow: var(--glow-gold); transform: translateY(-2px); }
.store-badge svg { width: 26px; height: 26px; stroke-width: 2.4; }
.store-badge .lbl { display: flex; flex-direction: column; line-height: 1.12; text-align: left; }
.store-badge .lbl small { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .82; }
.store-badge .lbl b { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: 19px; letter-spacing: .02em; }

/* Spec strip */
.spec-strip { display: flex; flex-wrap: wrap; margin-top: 30px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: rgba(7,13,24,.32); }
.spec { flex: 1 1 120px; padding: 16px 20px; border-right: 1px solid var(--border); }
.spec:last-child { border-right: none; }
.spec .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.spec .v { font-size: 15px; color: var(--text-strong); font-weight: var(--fw-medium); }

/* Gallery */
.gd-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.shot { position: relative; aspect-ratio: 9 / 19.5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface-card); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out); }
.shot:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-accent); }
.shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot .ph {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  background-image: repeating-linear-gradient(135deg, rgba(168,198,220,.055) 0 11px, transparent 11px 22px);
  color: var(--text-muted);
}
.shot .ph svg { width: 30px; height: 30px; opacity: .55; }
.shot .ph span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

/* Final CTA band */
.cta-band { background: var(--navy-900); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cta-band .inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding: var(--space-8) 0; }
.cta-band h2 { margin: 0; font-size: var(--text-3xl); }
.cta-band p { margin: 8px 0 0; color: var(--text-muted); font-size: var(--text-md); }

/* Coming-soon hero */
.soon-art { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); background: radial-gradient(120% 130% at 70% 0%, hsl(210 40% 26%) 0%, var(--navy-800) 55%, var(--navy-950) 100%); display: flex; align-items: center; justify-content: center; }
.soon-art img { height: 60%; opacity: .12; filter: grayscale(1); }
.soon-art .tex { position: absolute; inset: 0; background-image: var(--texture-hairline); opacity: .7; }

/* ---- Responsive ------------------------------------------ */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .legal { grid-template-columns: 1fr; gap: var(--space-5); }
  .legal-nav { position: static; }
  .legal-nav nav { display: flex; flex-wrap: wrap; gap: 6px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .gd-grid { grid-template-columns: 1fr; gap: 40px; justify-items: center; text-align: center; }
  .gd-grid .gd-desc { margin-left: auto; margin-right: auto; }
  .gd-grid .gd-actions { justify-content: center; }
  .gd-gallery { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 680px) {
  .container { padding: 0 var(--space-5); }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-brand img { height: 72px; }
  .nav.scrolled .nav-brand img { height: 60px; }
  body[data-page="inicio"] .nav-brand { width: 360px; padding: 12px 0 70px; }
  body[data-page="inicio"] .nav-brand img { height: 84px; }
  body[data-page="inicio"] .nav.scrolled .nav-brand { padding-bottom: 60px; }
  body[data-page="inicio"] .nav.scrolled .nav-brand img { height: 70px; }
  .nav.open .nav-drawer {
    display: flex; flex-direction: column; gap: 4px; position: absolute; top: 72px; left: 0; right: 0;
    background: rgba(10,19,34,.97); backdrop-filter: var(--blur-md); border-bottom: 1px solid var(--border);
    padding: var(--space-4) var(--space-5) var(--space-5);
  }
  .nav-drawer .nav-link { padding: 12px 8px; font-size: var(--text-md); }
  .nav-drawer .nav-link.active::after { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .section { padding: var(--space-8) 0; }
  .hero { padding: 64px 0 72px; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
