/* ============================================================
   SANGRE ROJINEGRA - hoja de estilos publica
   Direccion: editorial deportivo rojinegro, oscuro, diagonal.
   ============================================================ */

:root {
  --negro: #0b0b0d;
  --negro-2: #121215;
  --negro-3: #1a1a1f;
  --borde: #232329;
  --rojo: #e01a22;
  --rojo-oscuro: #8e0f14;
  --crema: #f2efe7;
  --gris: #a9a59b;
  --gris-2: #6e6a63;
  --display: 'Anton', 'Arial Narrow', sans-serif;
  --cuerpo: 'Barlow', 'Segoe UI', sans-serif;
  --condensada: 'Barlow Condensed', 'Arial Narrow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--negro);
  color: var(--crema);
  font-family: var(--cuerpo);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Grano sutil sobre todo el sitio */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

::selection { background: var(--rojo); color: var(--negro); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rojo);
  outline-offset: 3px;
}

.contenedor {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- Franja superior ---------- */
.franja-superior {
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--rojo) 0 18px,
    var(--negro) 18px 30px
  );
}

/* ---------- Cabecera ---------- */
.cabecera {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 13, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--borde);
}

.cabecera-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .9rem 0;
}

.marca {
  font-family: var(--display);
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  display: block;
}

.marca-sangre { color: var(--rojo); }
.marca-rojinegra { color: var(--crema); }

.marca-sub {
  display: block;
  font-family: var(--condensada);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gris-2);
  margin-top: .3rem;
}

.nav {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  font-family: var(--condensada);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.nav a {
  color: var(--gris);
  padding: .35rem 0;
  white-space: nowrap;
  background: linear-gradient(var(--rojo), var(--rojo)) bottom left / 0% 2px no-repeat;
  transition: color .25s, background-size .25s;
}

.nav a:hover { color: var(--crema); background-size: 100% 2px; }
.nav a.activo { color: var(--rojo); background-size: 100% 2px; }

.ig-enlace {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: none;
  color: var(--gris);
  border: 1px solid var(--borde);
  transition: color .25s, border-color .25s, transform .2s;
}

.ig-enlace:hover {
  color: var(--rojo);
  border-color: var(--rojo);
  transform: rotate(-6deg);
}

/* ---- Logo y acentos dorados (tomados del escudo) ---- */

:root { --dorado: #d1a648; --dorado-borde: rgba(209, 166, 72, .45); }

.marca {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.marca-logo {
  width: 64px;
  height: 64px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--dorado-borde);
  box-shadow: 0 0 0 4px rgba(209, 166, 72, .14);
  transition: transform .25s, box-shadow .25s;
}

.marca:hover .marca-logo {
  transform: rotate(-8deg) scale(1.05);
  box-shadow: 0 0 0 4px rgba(209, 166, 72, .22);
}

.marca-texto { display: block; }

.redes-cabecera {
  display: flex;
  gap: .5rem;
  flex: none;
}

.marquee-pista b { color: var(--dorado); }

.meta-sep { color: var(--dorado); }

.seccion-linea {
  background: linear-gradient(90deg, var(--rojo), var(--dorado) 55%, transparent);
}

/* ---- Publicidad ---- */

.anuncios {
  width: min(1180px, 92vw);
  margin: 1.6rem auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
}

.anuncios-etiqueta {
  position: absolute;
  top: -.62rem;
  left: 0;
  font-family: var(--condensada);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gris-2);
  background: var(--negro);
  padding: 0 .45rem;
}

.anuncios::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid var(--borde);
  border-bottom: 1px solid var(--borde);
  pointer-events: none;
}

.anuncio {
  display: block;
  max-width: 100%;
  padding: .9rem 0;
  transition: opacity .25s, transform .25s;
}

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

a.anuncio:hover { opacity: .88; transform: translateY(-2px); }

.anuncios-superior { margin-top: 1.1rem; }
.anuncios-superior .anuncio img { max-height: 130px; }

.anuncios-portada { margin: 2.2rem auto; }
.anuncios-portada .anuncio img { max-height: 300px; }

.anuncios-articulo { width: 100%; margin: 2.4rem 0; }
.anuncios-articulo .anuncio img { max-height: 220px; }

.anuncios-pie { margin: 2.6rem auto 0; }
.anuncios-pie .anuncio img { max-height: 74px; filter: grayscale(1); opacity: .75; transition: filter .3s, opacity .3s; }
.anuncios-pie a.anuncio:hover img { filter: grayscale(0); opacity: 1; }

.anuncio-adsense { width: 100%; padding: .9rem 0; }

/* ---- Pop-up de inicio ---- */

body.sin-scroll { overflow: hidden; }

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 12, .82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  animation: popup-fondo .25s ease-out;
}

.popup-caja {
  position: relative;
  max-width: min(92vw, 540px);
  border: 1px solid var(--borde);
  border-top: 4px solid var(--rojo);
  background: var(--negro-2);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: popup-entra .3s cubic-bezier(.2, .9, .3, 1.2);
}

.popup-caja img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.popup-cerrar {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--borde);
  border-radius: 50%;
  background: var(--negro);
  color: var(--crema);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  transition: color .2s, border-color .2s, transform .2s;
}

.popup-cerrar:hover {
  color: var(--rojo);
  border-color: var(--rojo);
  transform: rotate(90deg);
}

@keyframes popup-fondo {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes popup-entra {
  from { opacity: 0; transform: scale(.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ---------- Heroe ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 4.8rem;
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(224, 26, 34, .16), transparent 65%),
    var(--negro);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -6%;
  width: 42%;
  height: 100%;
  background: linear-gradient(180deg, rgba(224, 26, 34, .08), transparent 70%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.hero-marca-agua {
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  font-family: var(--display);
  font-size: clamp(9rem, 22vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(224, 26, 34, .16);
  user-select: none;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.2rem;
  align-items: center;
}

@keyframes subir {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-texto > * { animation: subir .65s cubic-bezier(.2, .7, .2, 1) both; }
.hero-texto > *:nth-child(2) { animation-delay: .08s; }
.hero-texto > *:nth-child(3) { animation-delay: .16s; }
.hero-texto > *:nth-child(4) { animation-delay: .24s; }

.chip {
  display: inline-block;
  font-family: var(--condensada);
  font-weight: 700;
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--negro);
  background: var(--rojo);
  padding: .28rem .95rem;
  transform: skewX(-10deg);
  transition: background .25s;
}

.chip:hover { background: var(--crema); }

.hero-titulo {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: .98;
  text-transform: uppercase;
  margin: 1.1rem 0 1rem;
}

.hero-titulo a { transition: color .25s; }
.hero-titulo a:hover { color: var(--rojo); }

.hero-bajada {
  font-size: 1.12rem;
  color: var(--gris);
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--condensada);
  font-weight: 600;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gris-2);
}

.meta-sep { color: var(--rojo); letter-spacing: 0; }

.leer-mas { color: var(--rojo); transition: color .2s; }
.leer-mas:hover { color: var(--crema); }

.hero-imagen {
  display: block;
  clip-path: polygon(7% 0, 100% 0, 93% 100%, 0 100%);
  filter: drop-shadow(16px 16px 0 rgba(224, 26, 34, .85));
  animation: subir .7s cubic-bezier(.2, .7, .2, 1) .1s both;
  overflow: hidden;
}

.hero-imagen img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.hero-imagen:hover img { transform: scale(1.045); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--rojo);
  border-block: 3px solid var(--negro);
  transform: rotate(-1.3deg) scaleX(1.04);
  margin-block: -.4rem .6rem;
}

.marquee-pista {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding: .55rem 0;
  white-space: nowrap;
  width: max-content;
  animation: desplazar 28s linear infinite;
}

.marquee-pista span {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--negro);
}

.marquee-pista b { color: var(--negro); font-size: .8rem; }

@keyframes desplazar {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Secciones ---------- */
.seccion { padding: 3.8rem 0 4.5rem; }

.seccion-titulo {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 2.2rem;
}

.seccion-titulo h2 {
  font-family: var(--display);
  font-size: 1.85rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .8rem;
}

.seccion-titulo h2::before {
  content: '';
  width: .55em;
  height: .9em;
  background: var(--rojo);
  transform: skewX(-14deg);
}

.seccion-linea { flex: 1; height: 1px; background: var(--borde); }

/* ---------- Grilla de tarjetas ---------- */
.grilla {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.8rem;
}

.tarjeta {
  background: var(--negro-2);
  border: 1px solid var(--borde);
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), border-color .35s, box-shadow .35s;
}

.tarjeta:hover {
  transform: translateY(-6px);
  border-color: var(--rojo);
  box-shadow: 0 18px 44px rgba(224, 26, 34, .13);
}

.tarjeta-imagen {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.tarjeta-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.tarjeta:hover .tarjeta-imagen img { transform: scale(1.06); }

.tarjeta-cat {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--rojo);
  color: var(--negro);
  font-family: var(--condensada);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .28rem .8rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.tarjeta-cuerpo {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tarjeta-cuerpo h3 {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .01em;
}

.tarjeta-cuerpo h3 a { transition: color .2s; }
.tarjeta-cuerpo h3 a:hover { color: var(--rojo); }

.tarjeta-cuerpo p {
  font-size: .95rem;
  color: var(--gris);
  margin: .6rem 0 1rem;
  flex: 1;
}

.tarjeta-fecha {
  font-family: var(--condensada);
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--gris-2);
}

/* ---------- Paginacion ---------- */
.paginacion {
  display: flex;
  gap: .5rem;
  margin-top: 3rem;
  font-family: var(--condensada);
  font-weight: 600;
}

.paginacion a {
  padding: .4rem .95rem;
  border: 1px solid var(--borde);
  color: var(--gris);
  transition: all .2s;
}

.paginacion a:hover { border-color: var(--rojo); color: var(--crema); }
.paginacion a.actual { background: var(--rojo); border-color: var(--rojo); color: var(--negro); }

/* ---------- Estado vacio ---------- */
.vacio {
  text-align: center;
  padding: 3.5rem 0;
  color: var(--gris);
}

.vacio-grande {
  font-family: var(--display);
  font-size: 2.6rem;
  text-transform: uppercase;
  color: var(--crema);
  margin-bottom: .6rem;
}

.vacio a { color: var(--rojo); }
.vacio a:hover { text-decoration: underline; }

/* ---------- Articulo ---------- */
.articulo { padding: 3.2rem 0 4rem; }

.articulo-inner { width: min(880px, 92%); margin-inline: auto; }

.aviso-borrador {
  display: inline-block;
  background: #2a2413;
  border: 1px solid #8e7a1d;
  color: #e8d77a;
  font-family: var(--condensada);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .45rem .9rem;
  margin-bottom: 1.4rem;
}

.articulo-titulo {
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.02;
  text-transform: uppercase;
  margin: 1rem 0 .9rem;
}

.articulo-bajada {
  font-size: 1.22rem;
  color: var(--gris);
  border-left: 4px solid var(--rojo);
  padding-left: 1.1rem;
  margin-bottom: 1.3rem;
}

.articulo-portada {
  margin: 2rem 0 2.4rem;
  clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
  filter: drop-shadow(12px 12px 0 rgba(224, 26, 34, .8));
  overflow: hidden;
}

.articulo-portada img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.articulo-cuerpo p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d9d5cc;
  margin: 1.2rem 0;
  max-width: 46rem;
}

.articulo-cuerpo h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 2.4rem 0 .4rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.articulo-cuerpo h2::before {
  content: '';
  width: .5em;
  height: .85em;
  background: var(--rojo);
  transform: skewX(-14deg);
  flex: none;
}

.articulo-cuerpo blockquote {
  border-left: 4px solid var(--rojo);
  background: var(--negro-2);
  padding: 1.15rem 1.5rem;
  margin: 1.8rem 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--crema);
  max-width: 46rem;
}

.articulo-cuerpo blockquote.instagram-media {
  font-style: normal;
  text-align: center;
}

.articulo-cuerpo blockquote a { color: var(--rojo); }

.volver {
  display: inline-block;
  margin-top: 2.6rem;
  font-family: var(--condensada);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--rojo);
  transition: color .2s;
}

.volver:hover { color: var(--crema); }

/* ---------- Pie ---------- */
.pie {
  margin-top: 4rem;
  border-top: 1px solid var(--borde);
  overflow: hidden;
  position: relative;
}

.pie-gigante {
  font-family: var(--display);
  font-size: clamp(3.6rem, 13vw, 11rem);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 231, .08);
  transform: translateY(18%);
  user-select: none;
  pointer-events: none;
}

.pie-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2.2rem;
  font-family: var(--condensada);
  font-weight: 500;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--gris-2);
}

.pie-inner a { color: var(--gris-2); transition: color .2s; }
.pie-inner a:hover { color: var(--rojo); }

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 900px) {
  .cabecera-inner { flex-wrap: wrap; gap: .6rem 1rem; }
  .marca { order: 1; }
  .redes-cabecera { order: 2; }
  .nav { order: 3; width: 100%; padding-bottom: .3rem; }
  .hero { padding: 2.8rem 0 3.4rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .hero-marca-agua { font-size: 9rem; opacity: .7; }
  .hero-imagen { filter: drop-shadow(10px 10px 0 rgba(224, 26, 34, .85)); }
  .marquee { transform: rotate(0deg); }
}

/* Telefono */
@media (max-width: 700px) {
  .contenedor { width: 92%; }

  /* Cabecera compacta: marca y redes en una fila, categorias abajo.
     Baja de ~196px a ~120px y deja mas pantalla para el contenido. */
  .cabecera-inner { padding: .6rem 0; }
  .marca { gap: .6rem; }
  .marca-logo { width: 46px; height: 46px; box-shadow: 0 0 0 3px rgba(209, 166, 72, .12); }
  .marca-sangre, .marca-rojinegra { font-size: 1.45rem; }
  .marca-sub { font-size: .58rem; letter-spacing: .18em; margin-top: .15rem; }

  /* Tira de categorias deslizable, con area tactil comoda */
  .nav {
    gap: 0;
    margin: 0 -4%;
    padding: 0 4%;
    border-top: 1px solid var(--borde);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 .85rem;
    scroll-snap-align: start;
  }
  .nav a:first-child { padding-left: 0; }

  /* Iconos sociales: 44px reales para el dedo */
  .redes-cabecera { gap: .4rem; }
  .ig-enlace { width: 44px; height: 44px; }

  /* Heroe */
  .hero { padding: 2rem 0 2.6rem; }
  .hero-inner { gap: 1.6rem; }
  .hero-titulo { font-size: clamp(2rem, 9vw, 2.6rem); line-height: .98; }
  .hero-bajada { font-size: 1.02rem; }
  .hero-marca-agua { font-size: 6.5rem; opacity: .5; }
  .hero-imagen { filter: drop-shadow(7px 7px 0 rgba(224, 26, 34, .85)); }

  /* Enlaces de accion con area tactil suficiente */
  .meta { flex-wrap: wrap; gap: .4rem .7rem; }
  .leer-mas { display: inline-flex; align-items: center; min-height: 44px; }
  .chip { min-height: 34px; display: inline-flex; align-items: center; }

  /* Tarjetas */
  .grilla { grid-template-columns: 1fr; gap: 1.4rem; }
  .tarjeta-cuerpo { padding: 1.1rem; }
  .tarjeta-cuerpo h3 { font-size: 1.18rem; }

  /* Articulo */
  .articulo { padding: 2rem 0 2.6rem; }
  .articulo-titulo { font-size: clamp(1.75rem, 8vw, 2.3rem); line-height: 1.05; }
  .articulo-bajada { font-size: 1.08rem; }
  .articulo-cuerpo p, .articulo-cuerpo li { font-size: 1.06rem; line-height: 1.75; }
  .articulo-cuerpo h2 { font-size: 1.4rem; }
  .volver { display: inline-flex; align-items: center; min-height: 44px; }

  /* Publicidad: alturas contenidas para no empujar el contenido */
  .anuncios { margin: 1.2rem auto; gap: .7rem; }
  .anuncios-superior .anuncio img { max-height: 92px; }
  .anuncios-portada .anuncio img { max-height: 220px; }
  .anuncios-articulo .anuncio img { max-height: 160px; }
  .anuncios-pie .anuncio img { max-height: 56px; }

  /* Pop-up casi a pantalla completa */
  .popup-overlay { padding: 1rem; }
  .popup-caja { max-width: 100%; }
  .popup-cerrar { top: -12px; right: -6px; width: 44px; height: 44px; }

  /* Paginacion tactil */
  .paginacion { gap: .5rem; flex-wrap: wrap; }
  .paginacion a { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

  /* Pie */
  .pie-gigante { font-size: 3.2rem; transform: translateY(22%); }
  .pie-inner { text-align: center; }
  .pie-copy { line-height: 2.4; }
  .pie-copy a { display: inline-block; padding: .35rem .2rem; }

  .marquee-pista { font-size: .9rem; }
}

/* Telefono chico */
@media (max-width: 420px) {
  .marca-sangre, .marca-rojinegra { font-size: 1.3rem; }
  .marca-logo { width: 42px; height: 42px; }
  .marca-sub { display: none; }
  .hero-titulo { font-size: clamp(1.75rem, 8.5vw, 2.1rem); }
  .seccion-titulo h2 { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-texto > *, .hero-imagen { animation: none; }
  .marquee-pista { animation: none; }
  html { scroll-behavior: auto; }
}
