/* ============================================================
   Marston Brothers — estilo Mario Bros (peli), vistoso y responsive
   Paleta: rojo #e52521 · verde #43b047 · azul #049cd8 · amarillo #fbd000
   ============================================================ */

:root {
  --red:    #e52521;
  --red-d:  #b81c19;
  --green:  #43b047;
  --green-d:#2f8a33;
  --blue:   #049cd8;
  --blue-d: #0378a8;
  --yellow: #fbd000;
  --yellow-d:#d9b200;
  --sky:    #5c94fc;   /* cielo NES */
  --sky-2:  #8ab6ff;
  --ink:    #1c1230;
  --ink-2:  #3a2b52;
  --cream:  #fff7e6;
  --white:  #ffffff;

  --shadow: 0 6px 0 rgba(0,0,0,.22);
  --pixel-border: 4px solid var(--ink);
  --radius: 16px;

  --font-pixel: 'Press Start 2P', system-ui, sans-serif;
  --font-body:  'Baloo 2', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sky);
  background-image:
    linear-gradient(180deg, var(--sky) 0%, var(--sky-2) 55%, #cfe3ff 100%);
  overflow-x: hidden;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

/* ---------- Nubes de fondo ---------- */
.clouds { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.cloud {
  position: absolute; width: 120px; height: 44px;
  background: #fff; border-radius: 50px;
  box-shadow: 0 0 0 6px rgba(255,255,255,.55);
  opacity: .85;
}
.cloud::before, .cloud::after {
  content: ""; position: absolute; background: #fff; border-radius: 50%;
}
.cloud::before { width: 56px; height: 56px; top: -24px; left: 18px; }
.cloud::after  { width: 40px; height: 40px; top: -14px; left: 64px; }
.c1 { top: 12%;  left: -140px; animation: drift 46s linear infinite; }
.c2 { top: 34%;  left: -140px; transform: scale(.7); animation: drift 62s linear infinite; animation-delay: -20s; }
.c3 { top: 62%;  left: -140px; transform: scale(1.2); animation: drift 78s linear infinite; animation-delay: -40s; opacity:.6;}
@keyframes drift { to { left: 115%; } }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px clamp(16px, 4vw, 48px);
  background: var(--red);
  border-bottom: var(--pixel-border);
  box-shadow: 0 4px 0 rgba(0,0,0,.25);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-coin {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-pixel); font-size: 12px;
  border: 3px solid var(--ink); box-shadow: inset 0 0 0 3px rgba(255,255,255,.35);
}
.brand-text { color: #fff; font-size: 1.35rem; font-weight: 700; letter-spacing: .5px; }
.brand-text strong { color: var(--yellow); }

.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: #fff; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: color .15s, transform .15s;
}
.nav-links a:not(.btn):hover { color: var(--yellow); transform: translateY(-2px); }
.nav-cta { margin-left: 4px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 28px; height: 4px; background: #fff; border-radius: 3px; transition: .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============ BOTONES ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 800; font-size: 1rem;
  padding: 12px 22px; border-radius: 12px; cursor: pointer; text-decoration: none;
  border: 3px solid var(--ink); transition: transform .12s, box-shadow .12s, filter .12s;
  box-shadow: var(--shadow); line-height: 1;
}
.btn:active { transform: translateY(4px); box-shadow: 0 2px 0 rgba(0,0,0,.22); }
.btn-cta   { background: var(--yellow); color: var(--ink); }
.btn-cta:hover { filter: brightness(1.05); transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.24); }
.btn-ghost { background: #fff; color: var(--ink); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.24); }
.btn-big   { padding: 16px 30px; font-size: 1.12rem; }
.btn-block { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative; z-index: 1;
  min-height: 92vh; display: grid; place-items: center;
  text-align: center; padding: 60px 20px 140px;
  overflow: hidden;
}
.hero-inner { max-width: 860px; position: relative; z-index: 3; }
.hero-kicker {
  font-family: var(--font-pixel); font-size: .62rem; letter-spacing: 1px;
  color: #fff; background: var(--ink); display: inline-block;
  padding: 10px 16px; border-radius: 8px; border: 3px solid #fff;
  box-shadow: var(--shadow); margin-bottom: 26px;
}
.hero-title {
  font-family: var(--font-pixel); line-height: 1.15;
  font-size: clamp(2rem, 8vw, 5rem);
  text-shadow: 4px 4px 0 var(--ink), 8px 8px 0 rgba(0,0,0,.18);
  margin-bottom: 26px;
}
.hero-title span { display: block; }
.line-red   { color: var(--red);   -webkit-text-stroke: 2px #fff; }
.line-green { color: var(--green); -webkit-text-stroke: 2px #fff; }
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem); font-weight: 600;
  color: var(--ink); background: rgba(255,255,255,.82);
  padding: 16px 22px; border-radius: var(--radius); border: 3px solid var(--ink);
  max-width: 720px; margin: 0 auto 30px; box-shadow: var(--shadow);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.hero-badges {
  list-style: none; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.hero-badges li {
  background: #fff; border: 3px solid var(--ink); border-radius: 999px;
  padding: 8px 16px; font-weight: 700; box-shadow: 0 4px 0 rgba(0,0,0,.15);
}

/* Bloques ? y monedas flotando */
.floating-blocks { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.qblock, .coin { position: absolute; font-family: var(--font-pixel); }
.qblock {
  width: 56px; height: 56px; display: grid; place-items: center;
  background: var(--yellow); color: #fff; border: 4px solid var(--ink);
  border-radius: 8px; font-size: 1.4rem; box-shadow: inset 0 0 0 4px var(--yellow-d), var(--shadow);
  top: 16%; left: 8%; animation: bob 3s ease-in-out infinite;
}
.qblock2 { top: 24%; right: 9%; left: auto; animation-delay: 1.2s; }
.coin {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--yellow); border: 4px solid var(--yellow-d); color: transparent;
  top: 60%; left: 14%; box-shadow: var(--shadow); animation: bob 2.4s ease-in-out infinite .6s;
}
@keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-16px);} }

/* Suelo de ladrillos */
.ground {
  position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 2;
  background:
    repeating-linear-gradient(90deg, #c1531d 0 46px, #a8431a 46px 50px),
    repeating-linear-gradient(0deg,  transparent 0 44px, rgba(0,0,0,.25) 44px 50px);
  background-color: #c1531d;
  border-top: 5px solid var(--ink);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink); color: var(--yellow); overflow: hidden;
  border-top: 4px solid #000; border-bottom: 4px solid #000; padding: 12px 0;
}
.marquee-track {
  display: flex; gap: 40px; white-space: nowrap; width: max-content;
  animation: scroll 22s linear infinite; font-family: var(--font-pixel); font-size: .7rem;
}
.marquee-track span { opacity: .9; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ============ SECCIONES ============ */
.section { position: relative; z-index: 1; padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 60px); }
.section-alt { background: rgba(255,255,255,.55); border-top: 4px dashed var(--ink); border-bottom: 4px dashed var(--ink); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 {
  font-family: var(--font-pixel); font-size: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--ink); margin: 14px 0 12px; text-shadow: 3px 3px 0 rgba(0,0,0,.12);
}
.section-head p { font-size: 1.15rem; font-weight: 600; color: var(--ink-2); }
.pill {
  display: inline-block; font-family: var(--font-pixel); font-size: .6rem;
  padding: 8px 14px; border-radius: 999px; border: 3px solid var(--ink);
  background: var(--red); color: #fff; box-shadow: var(--shadow);
}
.pill-green  { background: var(--green); }
.pill-blue   { background: var(--blue); }
.pill-yellow { background: var(--yellow); color: var(--ink); }

/* ============ CARDS SERVICIOS ============ */
.cards {
  display: grid; gap: 26px; max-width: 1100px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: #fff; border: var(--pixel-border); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .18s, box-shadow .18s;
}
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 10px; }
.card-red::before    { background: var(--red); }
.card-green::before  { background: var(--green); }
.card-blue::before   { background: var(--blue); }
.card-yellow::before { background: var(--yellow); }
.card:hover { transform: translateY(-8px) rotate(-.4deg); box-shadow: 0 14px 0 rgba(0,0,0,.18); }
.card-icon {
  width: 66px; height: 66px; display: grid; place-items: center; font-size: 2rem;
  border-radius: 14px; border: 3px solid var(--ink); margin-bottom: 16px; background: var(--cream);
}
.card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.card p { color: var(--ink-2); font-weight: 500; margin-bottom: 14px; }
.card ul { list-style: none; display: grid; gap: 6px; }
.card ul li { position: relative; padding-left: 24px; font-weight: 600; color: var(--ink); }
.card ul li::before { content: "★"; position: absolute; left: 0; color: var(--yellow-d); }

/* ============ FEATURES ============ */
.features {
  display: grid; gap: 22px; max-width: 1000px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.feature {
  background: #fff; border: var(--pixel-border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow); transition: transform .16s;
}
.feature:hover { transform: translateY(-5px); }
.feat-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.feature h4 { font-size: 1.2rem; margin-bottom: 6px; }
.feature p { color: var(--ink-2); font-weight: 500; }

/* ============ STEPS ============ */
.steps {
  display: grid; gap: 22px; max-width: 1050px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step {
  background: var(--green); color: #fff; border: var(--pixel-border);
  border-radius: var(--radius); padding: 26px 20px; text-align: center;
  box-shadow: var(--shadow); position: relative;
}
.step:nth-child(2){ background: var(--blue); }
.step:nth-child(3){ background: var(--red); }
.step:nth-child(4){ background: var(--yellow); color: var(--ink); }
.step-num {
  font-family: var(--font-pixel); font-size: 1.1rem; display: grid; place-items: center;
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 50%;
  background: #fff; color: var(--ink); border: 3px solid var(--ink);
}
.step h4 { font-size: 1.25rem; margin-bottom: 6px; }
.step p { font-weight: 500; opacity: .95; }

/* ============ REVIEWS ============ */
.reviews {
  display: grid; gap: 24px; max-width: 1050px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.review {
  background: #fff; border: var(--pixel-border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow);
}
.stars { color: var(--yellow-d); font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-weight: 600; font-style: italic; color: var(--ink); margin-bottom: 12px; }
.review cite { font-weight: 700; color: var(--ink-2); font-style: normal; }

/* ============ CTA / CONTACTO ============ */
.cta-band {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-d) 100%);
  border-top: 5px solid var(--ink);
}
.cta-inner { max-width: 1050px; margin: 0 auto; text-align: center; color: #fff; }
.cta-inner > h2 {
  font-family: var(--font-pixel); font-size: clamp(1.2rem, 4vw, 2rem);
  text-shadow: 3px 3px 0 rgba(0,0,0,.3); margin-bottom: 12px;
}
.cta-inner > p { font-size: 1.15rem; font-weight: 600; margin-bottom: 34px; }
.contact-grid { display: grid; gap: 26px; grid-template-columns: 1.4fr 1fr; text-align: left; }

/* Formulario */
.booking-form {
  background: #fff; border: var(--pixel-border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow); display: grid; gap: 14px;
}
.field { display: grid; gap: 6px; }
.field-row { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
.field label { font-weight: 700; color: var(--ink); font-size: .98rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  padding: 12px 14px; border: 3px solid var(--ink); border-radius: 10px;
  background: var(--cream); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(4,156,216,.25);
}
.field textarea { resize: vertical; }
.form-note { font-size: .85rem; color: var(--ink-2); font-weight: 500; text-align: center; }

/* Info de contacto */
.contact-info {
  background: var(--ink); color: #fff; border: 4px solid #fff;
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
  display: grid; gap: 14px; align-content: start;
}
.contact-info h3 { font-size: 1.3rem; margin-bottom: 4px; color: var(--yellow); }
.contact-line {
  display: block; color: #fff; text-decoration: none; font-weight: 600;
  padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.18); transition: background .15s, transform .15s;
}
.contact-line:not(.static):hover { background: rgba(251,208,0,.2); transform: translateX(4px); }
.contact-line strong { color: var(--yellow); font-size: 1.05rem; }
.ci-emoji { font-size: 1.1rem; }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; padding: 52px clamp(16px,5vw,60px) 24px; position: relative; z-index: 1; }
.footer-inner {
  display: grid; gap: 30px; max-width: 1100px; margin: 0 auto 30px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.footer-brand .brand-coin { margin-bottom: 12px; }
.footer-brand .brand-text { font-size: 1.3rem; display: inline-block; margin-left: 10px; }
.footer-brand p { color: #c9bfe0; margin-top: 12px; font-weight: 500; max-width: 280px; }
.footer-col h5 { color: var(--yellow); font-size: 1.05rem; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: #d7ceec; text-decoration: none; font-weight: 500; padding: 5px 0; transition: color .15s, transform .15s; }
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { text-align: center; color: #9c90bd; border-top: 2px solid rgba(255,255,255,.12); padding-top: 20px; font-weight: 500; }

/* ============ FAB (botón flotante) ============ */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff; text-decoration: none; font-weight: 800;
  padding: 14px 20px; border-radius: 999px; border: 3px solid var(--ink);
  box-shadow: 0 6px 0 rgba(0,0,0,.3); font-size: 1.15rem;
  animation: pulse 2.4s ease-in-out infinite;
}
.fab span { font-size: 1rem; }
.fab:hover { transform: translateY(-3px); }
@keyframes pulse { 0%,100%{ box-shadow: 0 6px 0 rgba(0,0,0,.3);} 50%{ box-shadow: 0 6px 0 rgba(0,0,0,.3), 0 0 0 8px rgba(229,37,33,.25);} }

/* ============ MODAL ============ */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: grid; place-items: center; }
.modal-overlay { position: absolute; inset: 0; background: rgba(20,10,40,.7); backdrop-filter: blur(3px); }
.modal-box {
  position: relative; z-index: 2; width: min(500px, 92vw);
  background: var(--cream); border: var(--pixel-border); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: 0 12px 0 rgba(0,0,0,.35); max-height: 92vh; overflow-y: auto;
  animation: pop .22s ease;
}
@keyframes pop { from { transform: scale(.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-box h3 { font-size: 1.5rem; margin-bottom: 6px; }
.modal-sub { color: var(--ink-2); font-weight: 500; margin-bottom: 18px; }
.modal-close {
  position: absolute; top: 12px; right: 12px; width: 38px; height: 38px;
  border: 3px solid var(--ink); border-radius: 10px; background: var(--red); color: #fff;
  font-size: 1.1rem; cursor: pointer; box-shadow: 0 3px 0 rgba(0,0,0,.25);
}
.modal-close:hover { filter: brightness(1.08); }
.modal .booking-form { border: none; box-shadow: none; padding: 0; background: transparent; }
.wa-link { text-align: center; color: var(--green-d); font-weight: 700; text-decoration: none; }
.wa-link:hover { text-decoration: underline; }

/* ============ MARIO CAMINANDO ============ */
.mario-walker {
  position: fixed; bottom: 8px; left: -80px; z-index: 45;
  width: 62px; pointer-events: none;
  animation: mario-cross 20s linear infinite !important;
  filter: drop-shadow(0 3px 0 rgba(0,0,0,.28));
  will-change: left, transform;
}
.mario-hop { animation: mario-bob .42s steps(2, end) infinite !important; }
.mario-svg { display: block; width: 100%; height: auto; }

/* Recorrido: va a la derecha mirando a la derecha, se gira y vuelve */
@keyframes mario-cross {
  0%   { left: -70px;               transform: scaleX(1); }
  48%  { left: calc(100vw + 20px);  transform: scaleX(1); }
  50%  { left: calc(100vw + 20px);  transform: scaleX(-1); }
  98%  { left: -70px;               transform: scaleX(-1); }
  100% { left: -70px;               transform: scaleX(1); }
}
/* Rebote de pasos */
@keyframes mario-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
/* Piernas que se balancean */
.leg { transform-box: fill-box; transform-origin: center top; }
.leg-l { animation: leg-swing .42s ease-in-out infinite !important; }
.leg-r { animation: leg-swing .42s ease-in-out infinite reverse !important; }
.arm  { transform-box: fill-box; transform-origin: center top; }
.arm-l { animation: leg-swing .42s ease-in-out infinite reverse !important; }
.arm-r { animation: leg-swing .42s ease-in-out infinite !important; }
@keyframes leg-swing {
  0%, 100% { transform: rotate(14deg); }
  50%      { transform: rotate(-14deg); }
}
/* En móvil, un pelín más pequeño para no molestar */
@media (max-width: 560px) { .mario-walker { width: 46px; } }
/* Nota: Mario camina siempre (mascota decorativa a petición del cliente),
   también con "reducir movimiento" activado. El resto de animaciones sí
   respetan la preferencia mediante la regla global de prefers-reduced-motion. */

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; left: 50%; bottom: 20px; transform: translateX(-50%) translateY(140%);
  z-index: 130; width: min(920px, calc(100vw - 32px));
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: space-between;
  background: var(--cream); border: var(--pixel-border); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: 0 10px 0 rgba(0,0,0,.3);
  transition: transform .35s ease; opacity: 0;
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.cookie-content { display: flex; align-items: flex-start; gap: 12px; flex: 1 1 320px; }
.cookie-emoji { font-size: 1.8rem; line-height: 1; }
.cookie-text { font-weight: 600; color: var(--ink); font-size: .98rem; margin: 0; }
.cookie-text a { color: var(--blue-d); font-weight: 700; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-btn { padding: 11px 20px; font-size: .98rem; }
.cookie-policy { display: grid; gap: 12px; margin-bottom: 20px; }
.cookie-policy p { font-weight: 500; color: var(--ink-2); }
.cookie-policy strong { color: var(--ink); }
.cookie-policy a { color: var(--blue-d); font-weight: 700; }
@media (max-width: 560px) {
  .cookie-banner { bottom: 0; border-radius: var(--radius) var(--radius) 0 0; width: 100vw; padding: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 90px; left: 50%; transform: translateX(-50%) translateY(30px);
  background: var(--green); color: #fff; font-weight: 700;
  padding: 14px 24px; border-radius: 12px; border: 3px solid var(--ink);
  box-shadow: var(--shadow); z-index: 120; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .nav-links {
    position: fixed; top: 68px; right: 0; height: calc(100vh - 68px); width: min(280px, 80vw);
    background: var(--red); flex-direction: column; align-items: flex-start;
    padding: 28px 26px; gap: 20px; transform: translateX(105%); transition: transform .28s;
    border-left: var(--pixel-border); box-shadow: -8px 0 0 rgba(0,0,0,.2); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-cta { width: 100%; }
  .hamburger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .fab span { display: none; }
  .fab { padding: 16px; font-size: 1.4rem; }
}
@media (max-width: 520px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; align-items: center; }
  .qblock, .coin { display: none; }
}

/* Accesibilidad: respeta preferencias de movimiento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
