/* ==========================================================================
   RimoFit — Cinta de correr plegable para casa
   Página informativa en español · geo España · temática rutina activa
   Paleta: grafito / naranja energía / verde azulado
   Diseñada para la moderación de Outbrain / Taboola / MGID
   Tipografías autoalojadas: sin llamadas a terceros antes del consentimiento
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Tipografías autoalojadas (subconjunto latino, solo los pesos utilizados)    */
/* -------------------------------------------------------------------------- */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/archivo-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-400.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-700.woff2") format("woff2");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/manrope-800.woff2") format("woff2");
}

:root {
  --ink:        #171B22;   /* grafito oscuro — titulares */
  --graphite:   #232A34;
  --slate:      #4A5666;   /* texto secundario fuerte */
  --amber:      #E4630F;   /* naranja acento — solo decorativo (iconos, cifras) */
  --amber-dark: #C25009;   /* naranja de texto/botón — AA sobre blanco (4,72:1) */
  --amber-deep: #A6420A;   /* estado hover */
  --amber-soft: #FDF0E6;
  --green:      #097064;   /* verde azulado — AA sobre blanco (5,98:1) */
  --green-bright: #0E9384; /* verde decorativo (viñetas, puntos) */
  --green-soft: #E3F5F2;
  --sand:       #F7F5F2;   /* fondo página */
  --snow:       #FFFFFF;   /* fondo tarjetas */
  --body:       #333B47;   /* cuerpo de texto */
  --body-soft:  #5B6674;   /* texto terciario — AA sobre arena (5,36:1) */
  --line:       #E4E1DC;   /* bordes */
  --shadow:     rgba(23, 27, 34, 0.07);
  --shadow-lg:  rgba(23, 27, 34, 0.16);

  --maxw: 1080px;
  --radius: 18px;
  --radius-sm: 11px;

  --font-display: "Archivo", "Segoe UI", system-ui, sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------------------------------------------------------------------------- */
/* Reset y base                                                               */
/* -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* La cabecera es sticky: sin este margen los anclajes quedan ocultos bajo ella. */
[id] { scroll-margin-top: 86px; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--sand);
  line-height: 1.65;
  font-size: 18px;
}

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

a { color: var(--amber-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

/* -------------------------------------------------------------------------- */
/* Barra de transparencia publicitaria (native ad disclosure)                 */
/* -------------------------------------------------------------------------- */
.disclosure {
  background: var(--ink);
  color: #C9CFD8;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
}

/* -------------------------------------------------------------------------- */
/* Cabecera                                                                    */
/* -------------------------------------------------------------------------- */
.site-header {
  background: rgba(255,255,255,0.93);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--amber), #F2913F);
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.brand .mark svg { width: 20px; height: 20px; }
.header-cta {
  background: var(--amber-dark);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: background .2s ease;
}
.header-cta:hover { background: var(--amber-deep); text-decoration: none; color: #fff; }

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 420px at 84% -8%, rgba(228,99,15,0.11), transparent),
    radial-gradient(900px 380px at 0% 12%, rgba(14,147,132,0.08), transparent),
    linear-gradient(180deg, var(--snow) 0%, var(--sand) 100%);
  padding: 62px 0 56px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.05rem, 4.5vw, 3.3rem);
  margin-bottom: 20px;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--amber), #F2913F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 1.15rem;
  color: var(--slate);
  margin-bottom: 26px;
  max-width: 40ch;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--green-soft);
  color: var(--graphite);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-bright); }

.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  border-radius: var(--radius);
  box-shadow: 0 24px 60px var(--shadow-lg);
  width: 100%;
  background: var(--snow);
}
.hero-tag {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 230px;
}
.hero-tag strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1.02rem; }
.hero-tag span { font-size: 0.82rem; color: var(--body-soft); }

/* Botones ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn-primary {
  background: var(--amber-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(194,80,9,0.28);
}
.btn-primary:hover { background: var(--amber-deep); transform: translateY(-2px); text-decoration: none; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border: 1.5px solid var(--graphite);
}
.btn-ghost:hover { background: var(--graphite); color: #fff; text-decoration: none; }
.btn-lg { padding: 17px 38px; font-size: 1.07rem; }
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* -------------------------------------------------------------------------- */
/* Secciones                                                                   */
/* -------------------------------------------------------------------------- */
.section { padding: 64px 0; }
.section-tint { background: var(--snow); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--slate); font-size: 1.06rem; }

/* -------------------------------------------------------------------------- */
/* Banda de datos técnicos                                                     */
/* -------------------------------------------------------------------------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.stat {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 22px var(--shadow);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--amber), #F2913F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stat .lbl { font-size: 0.89rem; color: var(--body-soft); margin-top: 8px; }

/* -------------------------------------------------------------------------- */
/* Bloque destacado (calorías / contexto)                                      */
/* -------------------------------------------------------------------------- */
.note-block {
  background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 20px 50px var(--shadow-lg);
  color: #C6CDD7;
}
.note-block .eyebrow { color: #4ECEBF; }
.note-block h2 { color: #fff; font-size: clamp(1.55rem, 3vw, 2.1rem); margin-bottom: 14px; }
.note-block p { color: #B7C0CC; margin-bottom: 14px; }
.note-block p:last-child { margin-bottom: 0; }

.kcal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 26px 0 18px;
}
.kcal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
}
.kcal-card .mode { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: #8E9AA9; font-weight: 800; }
.kcal-card .val { font-family: var(--font-display); font-size: 1.9rem; color: #FFB067; font-weight: 700; line-height: 1.1; margin: 8px 0 4px; }
.kcal-card .desc { font-size: 0.88rem; color: #A7B1BE; }
.kcal-note { font-size: 0.8rem; color: #8E9AA9 !important; font-style: italic; }

/* -------------------------------------------------------------------------- */
/* Ad-block (bloque rico bajo cada foto de producto)                          */
/* -------------------------------------------------------------------------- */
.adblock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px var(--shadow);
}
.adblock.reverse .adblock-media { order: 2; }
.adblock-media {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px;
  display: grid; place-items: center;
}
.adblock-media img {
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
}
.adblock-body h3 { font-size: 1.45rem; margin-bottom: 14px; }
.adblock-body p { color: var(--slate); margin-bottom: 16px; }
.adblock-list { list-style: none; }
.adblock-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--body);
}
.adblock-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--green-bright);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--snow);
}
.adblock-list li strong { color: var(--ink); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag {
  font-size: 0.78rem; font-weight: 700;
  background: var(--amber-soft); color: var(--amber-deep);
  padding: 5px 12px; border-radius: 30px; border: 1px solid var(--line);
}

/* -------------------------------------------------------------------------- */
/* Rejilla de características                                                  */
/* -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feat-card {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px var(--shadow); }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--amber-soft), var(--green-soft));
  display: grid; place-items: center;
  margin-bottom: 16px;
  color: var(--amber);
}
.feat-icon svg { width: 26px; height: 26px; }
.feat-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.feat-card p { font-size: 0.93rem; color: var(--slate); }

/* -------------------------------------------------------------------------- */
/* Ficha técnica                                                               */
/* -------------------------------------------------------------------------- */
.spec-table {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 15px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(odd) { background: #FCFBFA; }
.spec-row dt { font-weight: 700; color: var(--ink); }
.spec-row dd { color: var(--slate); }
.spec-source { text-align: center; font-size: 0.82rem; color: var(--body-soft); margin-top: 16px; font-style: italic; }

/* -------------------------------------------------------------------------- */
/* Pasos                                                                       */
/* -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--amber);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--slate); }

/* -------------------------------------------------------------------------- */
/* Preguntas frecuentes                                                        */
/* -------------------------------------------------------------------------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev { transition: transform .25s ease; color: var(--amber); font-size: 1.3rem; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  color: var(--slate);
}
.faq-item.open .faq-a { max-height: 1600px; padding: 0 24px 22px; }

/* -------------------------------------------------------------------------- */
/* CTA final                                                                   */
/* -------------------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(160deg, var(--graphite) 0%, var(--ink) 100%);
  color: #D7DDE5;
  text-align: center;
  padding: 66px 0;
}
.final-cta h2 { color: #fff; font-size: clamp(1.85rem, 3.6vw, 2.5rem); margin-bottom: 16px; }
.final-cta p { color: #D7DDE5; font-size: 1.1rem; max-width: 580px; margin: 0 auto 30px; }
.final-cta .btn-primary { background: var(--amber); color: #fff; box-shadow: 0 10px 30px rgba(228,99,15,0.34); }
.final-cta .btn-primary:hover { background: #F2913F; color: #fff; }

/* Aviso de afiliación junto a cada botón de compra (Acuerdo Operativo de
   Amazon Afiliados: debe verse sin que el usuario tenga que buscarlo). */
.affiliate-note {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-top: 14px;
  color: #C6CDD7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.affiliate-note-light {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--body-soft);
  background: var(--amber-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 16px;
  max-width: 560px;
}

/* -------------------------------------------------------------------------- */
/* Banda de aviso legal                                                        */
/* -------------------------------------------------------------------------- */
.disclaimer-band {
  background: var(--sand);
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.disclaimer-band .container { max-width: 920px; }
.disclaimer-band p {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.7;
  text-align: left;
}
.disclaimer-band strong { color: var(--ink); }

/* -------------------------------------------------------------------------- */
/* Pie de página                                                               */
/* -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: #A3ACB8;
  padding: 44px 0 30px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: #F0F2F5; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; color: #98A2AE; }
.footer-legal { margin-top: 12px; font-size: 0.85rem; color: #98A2AE; }
.footer-legal a { color: #A3ACB8; }
.footer-links h5 { color: #F0F2F5; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links a { display: block; color: #A3ACB8; font-size: 0.92rem; margin-bottom: 9px; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #98A2AE;
  text-align: center;
}

/* -------------------------------------------------------------------------- */
/* Páginas legales                                                             */
/* -------------------------------------------------------------------------- */
.legal-page { padding: 54px 0 70px; }
.legal-page .container { max-width: 830px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); margin-bottom: 10px; }
.legal-meta { color: var(--body-soft); font-size: 0.9rem; margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.legal-page h2 { font-size: 1.36rem; margin: 34px 0 12px; }
.legal-page h3 { font-size: 1.1rem; margin: 22px 0 8px; color: var(--amber-dark); }
.legal-page p { margin-bottom: 14px; color: var(--body); font-size: 1rem; }
.legal-page ul { margin: 0 0 16px 22px; }
.legal-page li { margin-bottom: 8px; }
.legal-page a { color: var(--amber-dark); text-decoration: underline; }
.back-home { display: inline-block; margin-bottom: 24px; color: var(--amber-dark); font-weight: 700; }

/* Formulario de contacto --------------------------------------------------- */
.contact-form { display: grid; gap: 14px; max-width: 560px; margin-top: 8px; }
.contact-form label { font-weight: 700; font-size: 0.92rem; color: var(--ink); display: block; margin-bottom: 5px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--snow);
  color: var(--body);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--slate); }
.form-consent input { width: auto; margin-top: 4px; }
.form-note { font-size: 0.84rem; color: var(--body-soft); }

/* -------------------------------------------------------------------------- */
/* Aviso de cookies                                                            */
/* -------------------------------------------------------------------------- */
.cookie-bar {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px var(--shadow-lg);
  padding: 18px 20px;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}
.cookie-bar.show { display: flex; }
.cookie-bar p { font-size: 0.88rem; color: var(--slate); flex: 1 1 320px; margin: 0; }
.cookie-bar .btn { padding: 11px 22px; font-size: 0.92rem; min-width: 178px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Rechazar y aceptar comparten peso visual: mismo tamaño, mismo relleno,
   mismo contraste. Exigido por la Guía de cookies de la AEPD. */
.btn-neutral {
  background: #EDEAE5;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-neutral:hover { background: #E2DED8; color: var(--ink); text-decoration: none; }

/* -------------------------------------------------------------------------- */
/* Animación de aparición                                                      */
/* -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-lead { max-width: none; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .note-block { padding: 28px; }
  .kcal-grid { grid-template-columns: 1fr; }
  .adblock { grid-template-columns: 1fr; gap: 26px; padding: 26px; }
  .adblock .adblock-media, .adblock.reverse .adblock-media { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 20px; }
}
@media (max-width: 560px) {
  body { font-size: 17px; }
  .section { padding: 48px 0; }
  .hero { padding: 42px 0 40px; }
  .header-cta { padding: 8px 14px; font-size: 0.82rem; }
  .brand { font-size: 1.02rem; }
  .hero-tag { position: static; margin-top: 16px; max-width: none; }
  .btn { width: 100%; }
  .cookie-bar .btn { width: auto; }
}

/* Accesibilidad */
:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
