:root {
    /* El rojo del Numancia */
    --rojo: #D61A2A; 
    
    --accent-red: #d32f2f; /* par atags, toma el color de .highlight-red */
    
    /* Azul oscuro del escudo (para detalles sutiles) */
    --cyan-strong: #0a3d62; 
    
    /* Azul de los bordes o detalles */
    --blue: #0a3d62; 
    
    /* Fondo oscuro (Footer y header de archivo) */
    --navy: #081a2b;
    
    /* Tinta para textos (Negro/gris oscuro) */
    --ink: #111820;
    
    /* Blanco */
    --paper: #fff;
    --soft: #f5f6f7;
    
    --max: 1900px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 18px;
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

/* ============================================================
   CONTENEDOR ÚNICO Y UNIFICADO PARA TODAS LAS SECCIONES
   ============================================================ */
.page-width, 
.trajectory-rework__inner,
.competitions-strip__heading,
.club-journey__inner,
.contact-wrap,
#estadisticas > .page-width,
#medios .media-editorial__inner,
#ruedas-prensa > .page-width,
#modelos > .page-width {
    width: min(97%, 1840px);
    max-width: none;
    margin-inline: auto;
    box-sizing: border-box;
}

.trajectory-rework__inner,
.club-journey__inner,
.contact-wrap {
    padding-inline: 0;
}

/* ============================================================
   UNIFICACIÓN DE FONDOS (TODO BLANCO) Y ESPACIADO (50px)
   ============================================================ */
.content-section,
.media-section,
.trajectory-rework,
.club-journey,
.media-editorial,
#modelos,
#estadisticas,
#medios,
#ruedas-prensa,
#contacto,
.career-foundations,
#competiciones,
.competitions-strip {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}
/* ============================================================ */

.skip-link {
    position: fixed;
    z-index: 10000;
    top: -80px;
    left: 80px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #111;
}

.skip-link:focus {
    top: 10px;
}

.menu-fab {
    position: fixed;
    z-index: 9020;
    right: 14px;
    top: 0;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 0 0 4px 4px;
    background: #15191c;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .3);
    cursor: pointer;
    padding: 10px;
}

.menu-fab i {
    display: block;
    height: 2px;
    width: 22px;
    margin: 4px auto;
    background: #fff;
    transition: .25s;
}

.menu-fab.is-open i:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-fab.is-open i:nth-child(2) {
    opacity: 0;
}

.menu-fab.is-open i:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    z-index: 9000;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(8, 26, 43, .985);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .25s;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-overlay__inner {
    width: min(90%, 1100px);
}

/* Ocultamos el título y subtítulo (LOLO ESCOBAR) dentro del menú hamburguesa */

.menu-brand {
    display: none;
    margin-bottom: 38px;
    text-decoration: none;
    font: 900 clamp(30px, 5vw, 65px)/1 'Montserrat', Arial, sans-serif;
    color: var(--rojo);
}

.menu-brand small {
    display: block;
    margin-top: 11px;
    color: #fff;
    font: 600 12px/1.3 'Inter', Arial, sans-serif;
    letter-spacing: .24em;
}

.menu-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 28px;
}

.menu-links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15); /* Línea un poco más visible */
    text-decoration: none;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;            /* Subimos el peso a seminegrita */
     font-size: clamp(14px, 1.4vw, 20px); 
    color: #ffffff;              /* Blanco puro, no translúcido */
    letter-spacing: 0.03em;      /* Un poco de espacio entre letras para que respire */
    transition: color 0.3s ease, padding-left 0.3s ease, border-left 0.2s ease;
}

.menu-links a:hover {
    color: #ffffff;
    border-left: 3px solid var(--rojo); /* Un toque rojo a la izquierda al pasar el mouse */
    padding-left: 14px;                /* Se desplaza ligeramente hacia la derecha */
}

.menu-language {
    display: none; /* Oculta completamente el selector de idiomas del menú */
    gap: 16px;
    margin-top: 32px;
    font: 700 14px 'Inter', Arial, sans-serif;
}

.menu-language a {
    text-decoration: none;
    color: #8d9aa5;
}

/* Main cover */
.site-hero {
    width: 100%;
    background: var(--navy);
    color: #fff;
}

/* Hero principal */
.site-hero__visual {
    position: relative;
    min-height: clamp(610px, 78vh, 930px);
    overflow: hidden;
    background: #3a1914;
}

.site-hero__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translateY(-28px) scale(1.06);
    transform-origin: center center;
}

.site-hero__caption {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 12px 20px;
    box-sizing: border-box;
    text-align: center;
    
    font-size: 12px;
    color: #ffffff;
    font-weight: 400;
    
    /* Transparencia equilibrada (50%) para que se vea sin ser un tapón */
    background: rgba(5, 19, 31, 0.50); 
    
    /* Una sombra muy ligera para que el texto blanco destaque aún más sobre el verde */
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.site-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(5, 19, 31, .58) 0%,
            rgba(5, 19, 31, .30) 34%,
            rgba(5, 19, 31, .025) 67%,
            rgba(5, 19, 31, .09) 100%);
}

.site-hero__identity {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: clamp(223px, calc(10vh + 145px), 277px);
    width: 100%;
    max-width: none;
    padding-inline: clamp(10px, 1.25vw, 24px);
    box-sizing: border-box;
    text-align: center;
}

/* ============================================================
   TÍTULO - BASE (se aplica a todos)
   ============================================================ */
.site-hero__identity h1 {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: none;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: clamp(3px, .28vw, 5px) #fff;
    paint-order: stroke fill;
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
    font-size: clamp(120px, 14vw, 280px);
    font-weight: 700;
    line-height: .82;
    letter-spacing: -.04em;
    white-space: nowrap;
    text-align: center;
    text-transform: uppercase;
    text-shadow: none;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, .20)) drop-shadow(0 8px 30px rgba(0, 0, 0, .50));
    transform: none;
    -webkit-text-stroke: clamp(4px, .35vw, 6px) #fff;
    filter: 
        drop-shadow(0 0 30px rgba(0, 0, 0, .7))
        drop-shadow(0 0 60px rgba(10, 94, 131, .15));
}

/* ============================================================
   SUBTÍTULO - BASE
   ============================================================ */
.site-hero__identity p {
    width: max-content;
    max-width: 100%;
    margin: 34px auto 0;
    padding-top: 20px;
    border-top: 4px solid var(--rojo);
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: clamp(18px, 2vw, 34px);
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 25px rgba(0, 0, 0, .55);
    line-height: 1.2;
}

.site-hero__credit {
    display: none;
}

/* ============================================================
   ESCRITORIO (1101px+)
   ============================================================ */
@media (min-width: 1101px) {
    .site-hero__visual {
        min-height: 0;
        height: clamp(760px, 56.25vw, 1120px);
    }
}

/* ============================================================
   ESCRITORIO GRANDE (1200px+) - TÍTULO MÁS GRANDE
   ============================================================ */
@media (min-width: 1200px) {
    .site-hero__identity h1 {
        font-size: clamp(160px, 16vw, 320px);
        letter-spacing: -.035em;
        -webkit-text-stroke: clamp(4px, .32vw, 6px) #fff;
    }
    .site-hero__identity p {
        font-size: clamp(28px, 2.2vw, 40px);
        letter-spacing: .14em;
    }
}

/* ============================================================
   PORTÁTIL / ESCRITORIO PEQUEÑO (901px - 1199px)
   ============================================================ */
@media (min-width: 901px) and (max-width: 1199px) {
    .site-hero__identity h1 {
        font-size: clamp(130px, 18vw, 240px);
        letter-spacing: -.03em;
        -webkit-text-stroke: clamp(3.5px, .3vw, 5px) #fff;
    }
    .site-hero__identity p {
        font-size: clamp(20px, 2.2vw, 30px);
        letter-spacing: .16em;
        margin-top: 32px;
        padding-top: 18px;
    }
}

/* ============================================================
   TABLET (900px)
   ============================================================ */
@media (max-width: 900px) {
    .site-hero__visual {
        min-height: 660px;
    }
    .site-hero__identity {
        bottom: 90px;
    }
    .site-hero__identity h1 {
        font-size: clamp(80px, 12vw, 130px);
        letter-spacing: -.035em;
        -webkit-text-stroke-width: 3px;
    }
    .site-hero__identity p {
        margin-top: 28px;
        padding-top: 18px;
        font-size: clamp(18px, 3.2vw, 26px);
        letter-spacing: .13em;
    }
}

/* ============================================================
   MÓVIL (760px)
   ============================================================ */
@media (max-width: 760px) {
    .site-hero__visual {
        min-height: 690px;
    }
    .site-hero__visual img {
        object-position: 54% center;
        transform: translateY(-18px) scale(1.06);
    }
    .site-hero__overlay {
        background: linear-gradient(0deg,
                rgba(5, 19, 31, .66) 0%,
                rgba(5, 19, 31, .23) 42%,
                rgba(5, 19, 31, .025) 76%);
    }
    .site-hero__identity {
        bottom: 100px;
        padding-inline: 12px;
    }
    .site-hero__identity h1 {
        font-size: clamp(60px, 14vw, 100px);
        line-height: .82;
        letter-spacing: -.04em;
        -webkit-text-stroke-width: 2.5px;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, .20)) drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
    }
    .site-hero__identity p {
        margin-top: 22px;
        padding-top: 14px;
        border-top-width: 3px;
        font-size: clamp(15px, 3.2vw, 22px);
        line-height: 1.15;
        letter-spacing: .11em;
    }
}

/* ============================================================
   MÓVIL PEQUEÑO (600px)
   ============================================================ */
@media (max-width: 600px) {
    .site-hero__visual {
        height: clamp(520px, 72svh, 600px);
        min-height: 520px;
        max-height: 600px;
    }

    .site-hero__identity {
        position: absolute;
        bottom: 46%;
        left: 0;
        right: 0;
        transform: translateY(50%);
        padding-inline: 16px;
        text-align: center;
        width: 100%;
    }

    .site-hero__identity h1 {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: clamp(48px, 15vw, 78px);
        line-height: .82;
        letter-spacing: -.025em;
        -webkit-text-stroke-width: 2.5px;
        white-space: nowrap;
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, .20)) drop-shadow(0 4px 12px rgba(0, 0, 0, .35));
    }

    .site-hero__identity p {
        margin-top: 16px;
        padding-top: 10px;
        border-top-width: 3px;
        font-size: clamp(12px, 3.2vw, 17px);
        line-height: 1.2;
        letter-spacing: .08em;
        white-space: normal;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 0 2px 15px rgba(0, 0, 0, .6);
    }
}

/* ============================================================
   BANNER DE EXPERIENCIA (ACTUALIZADO CON ROJO)
   ============================================================ */
.site-hero__experience {
  display: grid;
  grid-template-columns: .7fr 1.15fr 1fr 1.55fr;
  align-items: stretch;
  width: 100%;
  min-height: 156px;
  color: var(--ink);
  border-bottom: 1px solid #d7dfe2;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 16px 38px rgba(4, 30, 49, .12);
}

.site-hero__experience>div {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid #cdd7da;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95);
}

.site-hero__experience>div::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
}

.site-hero__experience>div:last-child {
  border-right: 0;
}

/* BLOQUE DE "EXPERIENCIA" EN ROJO */
.site-hero__experience .experience-heading {
    background: var(--rojo);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -14px 24px rgba(0, 83, 105, .12);
    color: #fff;
}

.experience-heading span {
  font: 900 clamp(20px,1.9vw,34px)/1 'Inter', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em;
}

.experience-cell {
  flex-direction: column;
  text-align: center;
}

/* NÚMEROS GENERALES (Años, 668, tarjetas de abajo) EN NEGRO - OSWALD */
.experience-cell strong {
  display: block;
  color: var(--ink);
  font: 700 clamp(32px,3.35vw,60px)/.95 'Oswald','Arial Narrow',sans-serif;
  letter-spacing: -.02em;
}

.experience-cell span {
  display: block;
  color: #18212a;
  font: 600 clamp(15px,1.25vw,22px)/1.25 'Inter', Arial, sans-serif;
}

.experience-matches {
  gap: 8px;
}
.experience-matches strong {
  font-size: clamp(52px,5.2vw,92px);
}

/* "SEGUNDA DIVISIÓN" EN ROJO */
.experience-levels span {
  max-width: 390px;
  color: var(--rojo);
  font-weight: 800;
  font-size: clamp(18px,1.65vw,29px);
  text-transform: uppercase;
  letter-spacing: .035em;
}

/* ============================================================
   HERO SPLIT Y TARJETAS DE ABAJO
   ============================================================ */
.hero-split {
    display: grid;
    grid-template-columns: minmax(0, 68.262fr) minmax(430px, 31.738fr);
    width: 100%;
    height: min(1047px, calc(100vh - 20px));
    min-height: 700px;
    background: #fff;
}

.hero-art {
    min-width: 0;
    overflow: hidden;
    background: #0a4ea0;
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center center;
}

.hero-record {
    min-width: 0;
    padding: 0 clamp(40px, 3.1vw, 58px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 17px;
    padding-block: 34px;
    background: #fff;
    box-shadow: inset 18px 0 34px rgba(5, 52, 78, .06);
}

.hero-record .record-row b {
    font-weight: 800; /* Aumentamos la negrita */
    font-family: 'Inter', sans-serif; /* Mantenemos la misma familia, pero más pesada */
    letter-spacing: 0.04em; /* Un poco de espacio entre letras para que respire */
    text-transform: uppercase; /* Asegurar mayúsculas */
}

.record-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(10, 94, 131, .38);
    position: relative;
    overflow: hidden;
    min-height: 122px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, .9);
    background: #fff;
    box-shadow: 0 14px 28px rgba(7, 63, 94, .12);
    transition: transform .25s ease, box-shadow .25s ease;
    word-break: break-word;
    overflow-wrap: break-word;
}

.record-row::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, .7), transparent 31%, transparent 62%, rgba(10, 94, 131, .08));
}

.record-row::after {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 4px;
    border-radius: 0 4px 4px 0;
    background: linear-gradient(180deg, var(--rojo), var(--blue));
    box-shadow: 0 0 18px rgba(10, 94, 131, .32);
}

.record-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(7, 63, 94, .17), inset 0 1px 0 #fff;
}

.record-row:first-child,
.record-row:last-child {
    min-height: 130px;
}

.record-row:last-child {
    border-bottom: 0;
}

.record-row:nth-child(4) strong {
    font-size: 49px;
    letter-spacing: -.055em;
}

.record-row strong {
    color: var(--ink);
    font: 700 55px/.9 'Oswald', 'Arial Narrow', sans-serif;
    letter-spacing: -.02em;
    position: relative;
    z-index: 1;
}

.record-row div {
    padding-top: 3px;
    position: relative;
    z-index: 1;
}

.record-row span {
    display: block;
    margin-bottom: 4px;
    color: #131313;
    font: 600 15px/1 'Inter', Arial, sans-serif;
    letter-spacing: .12em;
}

.record-row b {
    display: block;
    color: var(--rojo);
    font: 700 32px/.98 'Inter', Arial, sans-serif;
    letter-spacing: .09em;
}

.content-section,
.media-section {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dark-section {
    background: #fff;
    color: var(--ink);
}

.section-title {
    position: relative;
    margin: 0 0 42px;
    padding-left: 52px;
    color: var(--rojo);
    font: 900 clamp(48px, 5.2vw, 88px)/.98 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: -.018em;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: -4px;
    width: 27px;
    height: 1.16em;
    background: var(--rojo);
}

.light-title {
    color: var(--rojo);
}

/* Season blocks */
.seasons {
    background: #fff;
}

/* Career and achievements */
#trayectoria {
    padding-top: 76px;
}

.more-info a {
    color: var(--blue);
    font-weight: 700;
}

/* Video models */
.video-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px 28px;
}

.video-list article {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
}

.video-list a {
    text-decoration: none;
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.video-thumb span,
.press-grid span {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--navy);
    transform: translate(-50%, -50%);
    font-size: 23px;
    padding-left: 4px;
}

.video-list a:hover img,
.press-grid a:hover img {
    transform: scale(1.025);
}

.video-list h3 {
    margin: 18px 0 5px;
    font: 700 21px/1.25 'Inter', Arial, sans-serif;
}

.video-list p {
    margin: 0;
    color: #535f66;
    font: 600 13px 'Inter', Arial, sans-serif;
    letter-spacing: .05em;
}

/* Statistics */
#estadisticas {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.total-banner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    margin: 0 0 52px;
    background: #fff;
    border-top: 4px solid var(--rojo);
    border-bottom: 4px solid var(--rojo);
}

.total-banner div {
    min-height: 150px;
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #c8d5d9;
    text-align: center;
}

.total-banner div:last-child {
    border-right: 0;
}

.total-banner strong {
    color: var(--ink);
    font: 700 clamp(46px, 4.5vw, 78px)/.95 'Oswald', Arial, sans-serif;
}

.total-banner span {
    margin-top: 9px;
    color: var(--rojo);
    font: 800 12px 'Inter', Arial, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.table-title {
    font: 800 24px/1.2 'Inter', Arial, sans-serif;
}

.table-wrap {
    overflow: auto;
    border: 1px solid #b9c3c7;
}

.table-wrap table {
    width: 100%;
    min-width: 1130px;
    border-collapse: collapse;
    font-size: 13px;
}

.table-wrap th,
.table-wrap td {
    padding: 11px 9px;
    border-right: 1px solid #d3dadd;
    border-bottom: 1px solid #d3dadd;
    text-align: center;
    white-space: nowrap;
}

.table-wrap th:first-child,
.table-wrap td:first-child {
    text-align: left;
    font-weight: 700;
}

.table-wrap thead th {
    background: var(--paper);
    color: var(--ink);
    font: 800 12px 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 4px solid var(--rojo);
    padding: 15px 9px;
}

.table-wrap tbody tr:nth-child(even) {
    background: #f2f5f6;
}

.table-wrap tfoot th {
    background: var(--rojo);
    color: #fff;
    font-weight: 800;
}

/* Media */
.media-section {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

/* Press */
#ruedas-prensa {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.press-grid a {
    display: block;
}

.press-grid div {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.press-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.press-grid span {
    width: 52px;
    height: 52px;
    font-size: 18px;
}

/* Contact and footer */
#contacto {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-wrap {
    width: min(97%, 1840px);
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.contact-wrap>p {
    margin: -10px 0 34px;
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    font: 600 14px 'Inter', Arial, sans-serif;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #88959c;
    border-radius: 0;
    background: #fff;
    color: #111;
}

.contact-form button {
    justify-self: start;
    min-width: 150px;
    padding: 14px 30px;
    border: 0;
    background: var(--rojo);
    color: #fff;
    font: 800 15px 'Inter', Arial, sans-serif;
    cursor: pointer;
}

.form-status {
    margin: 0;
}

.site-footer {
    padding: 58px 0;
    background: var(--navy);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr;
    gap: 34px 60px;
}

.footer-grid nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

/* 1. Estilo para la navegación del footer (más ligero y legible) */
.footer-grid nav a {
    color: #e2e8eb;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;          /* Un peso medio, ni muy fino ni muy pesado */
    letter-spacing: 0.04em;    /* Un poco de espacio para que respire */
    text-decoration: none;
    text-transform: none;      /* Quitamos las mayúsculas para que no pese tanto */
    transition: color 0.3s ease;
}

.footer-grid nav a:hover {
    color: #ffffff;
}

/* 2. Estilo para los enlaces sociales (mayúsculas y más peso, queda bien aquí) */
.social-links a {
    color: #e2e8eb;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;          /* Más negrita para redes */
    text-transform: uppercase; /* Solo aquí dejamos las mayúsculas */
    letter-spacing: 0.08em;    /* Más separadas para que parezca diseño */
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-grid p {
    margin: 0;
    justify-self: end;
}

.social-links {
    display: flex;
    gap: 18px;
}

.footer-languages {
    justify-self: end;
    display: flex;
    gap: 12px;
}

.footer-languages a {
    color: #9ca9b1;
    text-decoration: none;
}

.accessibility-dot {
    position: fixed;
    z-index: 8500;
    left: 0;
    bottom: 5px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #0f6870;
    color: #fff;
    font-size: 22px;
}

.scroll-top {
    position: fixed;
    z-index: 8500;
    right: 20px;
    bottom: 7px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #5fb5e7;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width:1250px) {
    .hero-split {
        grid-template-columns: 67% 33%;
        min-height: 650px;
    }
    .record-row {
        grid-template-columns: 58px 1fr;
    }
    .record-row strong {
        font-size: 46px;
    }
    .record-row b {
        font-size: 27px;
    }
    .record-row span {
        font-size: 13px;
    }
    .menu-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:900px) {
    .site-hero__experience {
        grid-template-columns: 1fr 1fr;
        min-height: 0;
    }
    .site-hero__experience>div {
        min-height: 126px;
    }
    .site-hero__experience>div:nth-child(2) {
        border-right: 0;
    }
    .site-hero__experience>div:nth-child(-n+2) {
        border-bottom: 1px solid #cdd7da;
    }
    body {
        font-size: 16px;
    }
    .hero-split {
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr;
    }
    .hero-art {
        height: auto;
        min-height: 0;
        aspect-ratio: 1173/870;
    }
    .hero-art img {
        object-fit: fill;
    }
    .record-row {
        grid-template-columns: 65px 1fr;
    }
    .record-row strong {
        font-size: 51px;
    }
    .record-row b {
        font-size: 30px;
    }
    .section-title {
        font-size: clamp(40px, 9vw, 70px);
        padding-left: 40px;
    }
    .section-title::before {
        width: 21px;
    }
    .logo-slider {
        grid-auto-columns: calc((100% - 18px)/2);
    }
    .video-list {
        grid-template-columns: 1fr;
    }
    .total-banner {
        grid-template-columns: repeat(3, 1fr);
    }
    .total-banner div:nth-child(3n) {
        border-right: 0;
    }
    .total-banner div:nth-child(-n+3) {
        border-bottom: 1px solid #c8d5d9;
    }
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid p,
    .footer-languages {
        justify-self: start;
    }
}

@media (max-width:600px) {
    .site-hero__experience>div {
        min-height: 106px;
        border-right: 0;
        border-bottom: 1px solid #cdd7da;
        padding: 18px 20px;
    }
    .site-hero__experience>div:last-child {
        border-bottom: 0;
    }
    .experience-cell strong {
        font-size: 42px;
    }
    .experience-cell span {
        font-size: 16px;
    }
    .experience-levels span {
        font-size: 19px;
    }
    .menu-fab {
        right: 7px;
        width: 40px;
        height: 40px;
    }
    .menu-overlay__inner {
        width: 84%;
    }
    .menu-links {
        grid-template-columns: 1fr;
    }
    .menu-brand {
        font-size: 35px;
    }
    .hero-art {
        height: auto;
        min-height: 0;
        aspect-ratio: 1173/870;
    }
    .hero-art img {
        object-fit: fill;
        object-position: center;
    }
    .hero-record {
        padding-inline: 20px;
    }
    .record-row {
        grid-template-columns: 68px 1fr;
        gap: 9px;
    }
    .record-row strong {
        font-size: 46px;
    }
    .record-row:nth-child(4) strong {
        font-size: 40px;
        letter-spacing: -.055em;
    }
    .record-row span {
        font-size: 12px;
    }
    .record-row b {
        font-size: 24px;
        letter-spacing: .06em;
    }
    .content-section,
    .media-section {
        padding: 46px 0 66px;
    }
    .section-title {
        margin-bottom: 32px;
        padding-left: 31px;
        font-size: 39px;
        letter-spacing: -.04em;
    }
    .section-title::before {
        width: 17px;
    }
    .logo-slider {
        grid-auto-columns: 100%;
    }
    .logo-slider figure {
        min-height: 270px;
    }
    .total-banner {
        grid-template-columns: repeat(2, 1fr);
    }
    .total-banner div:nth-child(3n) {
        border-right: 1px solid #c8d5d9;
    }
    .total-banner div:nth-child(2n) {
        border-right: 0;
    }
    .total-banner div:nth-child(-n+4) {
        border-bottom: 1px solid #c8d5d9;
    }
    .press-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- RESTOS DE ESTILOS DEL SITIO --- */

#competiciones {
    background: #fff;
    padding: 50px 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

#competiciones>.page-width {
    width: min(97%, 1840px);
    max-width: none;
}

#clubs {
    background: #fff;
}

.logo-slider {
    gap: 24px;
    padding: 14px 5px 28px;
}

.logo-slider figure {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 30px 22px 22px;
    border: 1px solid rgba(164, 191, 202, .48);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 38px rgba(6, 48, 73, .12), inset 0 1px 0 rgba(255, 255, 255, 1);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.logo-slider figure::before {
    content: '';
    position: absolute;
    left: -22%;
    top: -32%;
    width: 145%;
    height: 58%;
    transform: rotate(-7deg);
    background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.logo-slider figure::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 58px;
    height: 20px;
    border-radius: 50%;
    background: rgba(7, 86, 165, .1);
    filter: blur(16px);
    pointer-events: none;
}

.logo-slider figure:hover {
    transform: translateY(-7px);
    border-color: rgba(10, 94, 131, .7);
    box-shadow: 0 25px 48px rgba(6, 48, 73, .18),
        0 0 0 1px rgba(10, 94, 131, .14),
        inset 0 1px 0 #fff;
}

.logo-slider img {
    position: relative;
    z-index: 2;
    width: 78%;
    max-width: 230px;
    height: 165px;
    object-fit: contain;
    filter: drop-shadow(0 13px 12px rgba(5, 36, 56, .15));
}

.logo-slider figcaption {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(111, 149, 163, .2);
    color: #102333;
}

.slider-arrow {
    width: 44px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    background: linear-gradient(180deg, #0b2b43, #061827);
    box-shadow: 0 12px 26px rgba(5, 30, 47, .23), inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.06);
    background: linear-gradient(180deg, #0d6f88, #0756a5);
    box-shadow: 0 15px 30px rgba(5, 52, 78, .3), 0 0 0 5px rgba(10, 94, 131, .1);
}

@media (max-width:1250px) {
    .hero-record {
        gap: 13px;
        padding-inline: 26px;
    }
    .record-row {
        padding: 16px 18px;
        min-height: 112px;
    }
    .logo-slider {
        gap: 18px;
    }
    .logo-slider figure {
        border-radius: 20px;
    }
}

@media (max-width:900px) {
    .hero-record {
        padding: 28px;
        gap: 14px;
    }
    .record-row {
        min-height: 105px;
    }
    .logo-slider {
        padding-block: 10px 24px;
    }
    .logo-slider figure {
        min-height: 285px;
    }
}

@media (max-width:600px) {
    .site-hero__experience {
        box-shadow: 0 12px 25px rgba(4, 30, 49, .1);
    }
    .hero-record {
        padding: 24px 18px;
        gap: 12px;
    }
    .record-row {
        border-radius: 17px;
        min-height: 100px;
        padding: 14px 16px;
    }
    .record-row::after {
        top: 20%;
        bottom: 20%;
        width: 3px;
    }
    .logo-slider figure {
        min-height: 280px;
        border-radius: 22px;
    }
    .logo-slider img {
        height: 170px;
        max-width: 220px;
    }
    .slider-arrow {
        width: 34px;
        height: 62px;
    }
}

.career-foundations {
    background: #fff;
    padding: 50px 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.career-foundations__heading {
    justify-content: space-between;
    border-bottom: 1px solid rgba(9, 68, 96, .16);
}

.career-foundations__heading .club-journey__kicker {
  margin: 0;
  color: #5a7280;
  font: 800 12px/1 'Inter', Arial, sans-serif;
  letter-spacing: .2em;
}

.career-foundations__intro {
    margin: 0;
    /* Un color de texto un poco más oscuro y marcado */
    color: #1e2b38; 
    
    /* Aumentamos peso y tamaño */
    font-weight: 600; 
    font-size: 20px; 
    line-height: 1.6;
    font-family: 'Inter', Arial, sans-serif;
    letter-spacing: .01em;

    /* Un borde sutil a la izquierda para diferenciarlo */
    border-left: 4px solid #5a7280; 
    padding-left: 20px;
    margin-bottom: 25px; /* Un poco de margen con la línea de tiempo */
}

.career-foundations__heading h2 {
    margin: 0;
    color: #173247;
    font: 700 clamp(24px, 2vw, 34px)/1.1 'Inter', Arial, sans-serif;
    letter-spacing: -.025em;
}

@media (max-width:760px) {
    .career-foundations {
        padding: 42px 0 50px;
    }
    .career-foundations__heading {
        display: block;
    }
    .career-foundations__heading h2 {
        margin-top: 9px;
    }
}

.logo-slider figure {
    border-radius: 6px;
}

.record-row {
    border-radius: 5px;
}

.slider-arrow,
.contact-form button {
    border-radius: 4px;
}

.video-thumb span,
.press-grid span {
    border-radius: 6px;
}

@media (max-width:760px) {
    .logo-slider figure {
        border-radius: 4px;
    }
}

.accessibility-dot,
.scroll-top {
    border-radius: 4px;
}

/* ============================================================
   TRAYECTORIA - TÍTULOS UNIFICADOS CON OSWALD
   ============================================================ */
.trajectory-rework {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.trajectory-rework__inner {
    width: min(97%, 1840px);
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.trajectory-rework__head {
    display: grid;
    grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 34px;
}

.trajectory-rework__head .section-title {
    margin: 0;
}

.trajectory-rework__intro {
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(8, 64, 91, .18);
}

.trajectory-rework__intro h3 {
    margin: 0 0 14px;
    color: #0a2740;
    font: 700 clamp(34px, 2.8vw, 56px)/1.04 'Oswald', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.trajectory-rework__intro p {
    margin: 0;
    color: #233541;
    font-size: 19px;
    line-height: 1.72;
}

.trajectory-rework__story {
    display: grid;
    gap: 34px;
}

.trajectory-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
    gap: 34px;
    align-items: stretch;
}

.trajectory-feature-card--secondary {
    grid-template-columns: minmax(440px, .94fr) minmax(0, 1.06fr);
    align-items: stretch;
}

.trajectory-feature-card--secondary .trajectory-feature-card__photo {
    min-height: 100%;
}

.trajectory-feature-card--secondary .trajectory-feature-card__photo img {
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 34%;
}

.trajectory-feature-card__copy {
    padding: 34px 36px 36px;
    border: 1px solid #d6e2e6;
    border-top: 5px solid var(--rojo);
    background: #fff;
}

.trajectory-kicker {
    margin: 0 0 16px;
    color: #0a5dab;
    font: 800 12px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .22em;
}

.trajectory-feature-card__copy h3 {
    margin: 0 0 12px;
    color: #0a2740;
    font: 800 clamp(32px, 2.8vw, 48px)/1.08 'Oswald', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: -.02em;
}

.trajectory-feature-card__copy p {
    margin: 0 0 18px;
    color: #21323d;
    font: 400 18px/1.72 'Oswald', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: .01em;
}

.trajectory-feature-card__copy p:last-child {
    margin-bottom: 0;
}

.trajectory-feature-card__copy .more-info {
    padding-top: 14px;
    border-top: 1px solid #d3dde1;
}

.trajectory-feature-card__photo {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #091d2d;
}

.trajectory-feature-card__photo img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.trajectory-feature-card__photo figcaption {
    padding: 10px 14px;
    /* background: #091d2d;  <--- Esto ya no está, heredará el color de fondo o será transparente */
    background: transparent;  /* O puedes borrar la línea y poner esta */
    color: #d8e2e8;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;       
    width: 100%;              /* Asegura que ocupe todo el ancho y se centre dentro de la flex column */
}

@media (max-width:1100px) {
    .trajectory-rework__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .trajectory-feature-card,
    .trajectory-feature-card--secondary {
        grid-template-columns: 1fr;
    }
    .trajectory-feature-card--secondary .trajectory-feature-card__photo {
        order: 1;
    }
    .trajectory-feature-card--secondary .trajectory-feature-card__copy {
        order: 2;
    }
    .trajectory-feature-card--secondary .trajectory-feature-card__photo {
        min-height: 0;
        height: auto;
    }
    .trajectory-feature-card--secondary .trajectory-feature-card__photo img {
        flex: none;
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }
}

@media (max-width:760px) {
    .trajectory-rework {
        padding: 54px 0 66px;
    }
    .trajectory-rework__inner {
        width: 90%;
        padding-inline: 0;
    }
    .trajectory-rework__intro h3 {
        font-size: 34px;
    }
    .trajectory-rework__intro p {
        font-size: 17px;
    }
    .trajectory-feature-card__copy {
        padding: 26px 22px 28px;
    }
    .trajectory-feature-card__copy h3 {
        font-size: 29px;
    }
    .trajectory-feature-card__copy p {
        font-size: 16px;
        line-height: 1.68;
    }
    .trajectory-feature-card__photo img {
        min-height: 0;
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   CLUB JOURNEY / LÍNEA DE TIEMPO
   ============================================================ */
.club-journey {
    padding: 50px 0 0 0; /* Arriba | Derecha | Abajo | Izquierda */
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.club-journey__inner {
    width: min(97%, 1840px);
    max-width: none;
    margin-inline: auto;
    padding-inline: 0;
}

.club-journey__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 38px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(8, 64, 91, .2);
}

.club-journey__heading--timeline {
    display: grid;
    gap: 48px;
    align-items: end;
    margin-bottom: 38px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(10, 93, 171, .12);
    grid-template-columns: 1fr;
    max-width: 980px;
}

.club-journey__kicker {
    margin: 0 0 10px;
    color: #0a5dab;
    font: 800 13px/1 'Inter', Arial, sans-serif;
    letter-spacing: .2em;
}

.club-journey__title {
    margin: 0;
    color: #0a2740;
    font: 900 clamp(44px, 4.5vw, 78px)/.94 'Inter', Arial, sans-serif;
    letter-spacing: -.055em;
}

@media (max-width:760px) {
    .club-journey__inner {
        width: 90%;
        padding-inline: 0;
    }
    .club-journey__heading {
        display: block;
        margin-bottom: 28px;
        padding-bottom: 20px;
    }
    .club-journey__title {
        font-size: clamp(39px, 11vw, 58px);
        line-height: .98;
    }
}

.club-journey-line {
    position: relative;
    padding: 12px 0 32px;
}

.club-journey-line::before {
    content: "";
    position: absolute;
    left: 258px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0a5e83 0%, #0a5dab 100%);
}

.club-journey-stop {
    display: grid;
    grid-template-columns: 220px 76px minmax(0, 1fr);
    align-items: start;
    padding: 0 0 22px;
}

.club-journey-stop:last-child {
    padding-bottom: 0;
}

.club-journey-stop__year {
    padding: 14px 28px 0 0;
    text-align: right;
}

.club-journey-stop__year strong {
    display: block;
    color: #0a2740;
    font: 900 clamp(28px, 2.2vw, 42px)/1.04 'Inter', Arial, sans-serif;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.club-journey-stop__year span {
    display: block;
    margin-top: 10px;
    color: #0a5dab;
    font: 800 16px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .09em;
}

.club-journey-stop__marker {
    position: relative;
    min-height: 100%;
}

.club-journey-stop__marker::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 29px;
    width: 18px;
    height: 18px;
    border: 5px solid #eef5f7;
    background: #0a5e83;
    box-shadow: 0 0 0 2px #0a5e83;
    border-radius: 50%;
}

.club-journey-stop__card {
    position: relative;
    padding: 21px 26px 22px;
    border: 1px solid #d2dee3;
    background: #fff;
    box-shadow: 0 12px 26px rgba(9, 55, 86, .05);
}

.club-journey-stop__card::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 30px;
    width: 29px;
    height: 1px;
    background: #0a5e83;
}

.club-journey-stop__head {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px 18px;
    align-items: start;
}

/* El HTML envuelve el h3 y el p en un div sin clase; lo "aplanamos"
   para poder colocar el nombre y el texto como celdas independientes
   del grid, en vez de como bloque unico desplazado por el escudo */
.club-journey-stop__crest + div {
    display: contents;
}

.club-journey-stop__head h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.club-journey-stop__head p {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 1040px;
}



.club-journey-stop__crest {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 86px;
    height: 84px;
    padding: 8px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f1f6f8);
    border: 1px solid #d4e0e5;
    overflow: hidden;
    box-sizing: border-box;
}
.club-journey-stop__crest img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: center;
}

.club-journey-stop__head h3 {
    margin: 0;
    color: #0a2740;
    font: 900 clamp(24px, 1.75vw, 31px)/1.05 'Inter', Arial, sans-serif;
    letter-spacing: -.025em;
}

.club-journey-stop__head p {
    margin: 0;
    color: #31424d;
    font-size: 17px;
    line-height: 1.55;
}

.club-journey-stop__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 18px;
    align-items: center;
}

.club-journey-stop__tags span {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    font: 700 11px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.club-journey-stop__tags span + span {
    position: relative;
    padding-left: 14px;
}

.club-journey-stop__tags span + span::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: 900;
}


/* Información secundaria: Copa del Rey, Copa Federación, etc. */

.club-journey-stop__note {
    display: inline-block;
    margin-top: 14px;
    color: var(--text-muted);
    font: 800 10px/1.4 'Inter', Arial, sans-serif;
    letter-spacing: .07em;
    text-transform: uppercase;
}


/* Logros principales: ascensos y promociones */

.club-journey-stop__achievement {
    position: relative;
    display: inline-block;
    margin-top: 18px;
    padding: 10px 36px 10px 17px;
    background: var(--accent-red);
    color: #fff;
    font: 800 .72rem/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}


/* Etapa actual */

.club-journey-stop--current .club-journey-stop__card {
    border-left-color: var(--rojo);
    background: var(--rojo);
    color: #fff;
}

.club-journey-stop--current .club-journey-stop__card::before,
.club-journey-stop--current .club-journey-stop__marker::before {
    background: var(--rojo);
    box-shadow: 0 0 0 2px var(--rojo);
}

.club-journey-stop--current .club-journey-stop__head h3,
.club-journey-stop--current .club-journey-stop__head p {
    color: #fff;
}

.club-journey-stop--current .club-journey-stop__tags span {
    color: #fff;
}


/* Etapa destacada */

.club-journey-stop--highlight .club-journey-stop__card {
    border-left-color: #0a5dab;
    background: linear-gradient(180deg, #fff 0%, #f1f7fa 100%);
}


@media (max-width:1100px) {
    .club-journey__heading--timeline {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

@media (max-width:760px) {
    .club-journey {
        padding-top: 56px;
    }
    .club-journey-line::before {
        left: 13px;
    }
    .club-journey-stop {
        grid-template-columns: 28px minmax(0, 1fr);
        padding-bottom: 22px;
    }
    .club-journey-stop__year {
        grid-column: 2;
        padding: 0 0 10px;
        text-align: left;
    }
    .club-journey-stop__year strong {
        font-size: 26px;
        line-height: 1.08;
    }
    .club-journey-stop__year span {
        font-size: 12px;
        margin-top: 7px;
    }
    .club-journey-stop__marker {
        grid-column: 1;
        grid-row: 1 / span 2;
    }
    .club-journey-stop__marker::before {
        top: 8px;
        left: 4px;
        width: 14px;
        height: 14px;
        border-width: 4px;
    }
    .club-journey-stop__card {
        grid-column: 2;
        padding: 18px 18px 19px;
        border-left-width: 4px;
    }
    .club-journey-stop__card::before {
        left: -18px;
        top: 28px;
        width: 14px;
    }
    .club-journey-stop__head {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
    }
    .club-journey-stop__crest {
        width: 72px;
        height: 70px;
        padding: 7px;
        border-radius: 14px;
    }
    .club-journey-stop__head h3 {
        font-size: 23px;
    }
    .club-journey-stop__head p {
        font-size: 15px;
    }
    .club-journey-stop__badge {
        font-size: 10px;
    }
}

@media (max-width:480px) {
    .club-journey-stop__tags {
        gap: 7px;
    }
    .club-journey-stop__tags span {
        font-size: 10px;
        padding: 6px 9px;
    }
}

/* ============================================================
   CAREER FOUNDATIONS
   ============================================================ */
.career-foundations {
    position: relative;
    margin-top: 0;
    padding-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.career-foundations__heading {
    display: grid;
    grid-template-columns: minmax(350px, .82fr) minmax(0, 1.18fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 34px;
}

.career-foundations__title {
    max-width: 800px;
    margin: 8px 0 0;
    color: #0a2740;
    font: 900 clamp(38px, 4.1vw, 66px)/.98 'Inter', Arial, sans-serif;
    letter-spacing: -.05em;
}

.career-foundations__intro {
    margin: 0;
    color: #31424d;
    
    /* Separa la propiedad 'font' en 3 líneas para poder controlarlas individualmente */
    font-weight: 400;       /* Peso normal (o el que quieras) */
    font-size: 18px;        /* Tamaño que quieras (antes era 12px) */
    line-height: 1.72;      /* Altura de línea que quieras (antes era 1) */
    font-family: 'Inter', Arial, sans-serif; /* AQUÍ CAMBIAS LA FUENTE CUANDO QUIERAS */
    
    letter-spacing: .01em;
}

.club-journey-line--foundations {
    padding-top: 10px;
    padding-bottom: 74px;
}

.club-journey-line--foundations::before {
    background: linear-gradient(180deg, #0a5dab 0%, #0a5e83 100%);
}

.club-journey-stop--foundation .club-journey-stop__card {
    padding-top: 19px;
    padding-bottom: 20px;
}

.club-journey-stop--foundation .club-journey-stop__head h3 {
    font-size: clamp(22px, 1.55vw, 28px);
}

.club-journey-stop--foundation .club-journey-stop__crest {
    width: 78px;
    height: 76px;
}

.club-journey-stop--foundation .club-journey-stop__head {
    grid-template-columns: 78px minmax(0, 1fr);
}

@media (max-width:780px) {
    .career-foundations__heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .career-foundations__intro {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* ============================================================
   MEDIA EDITORIAL
   ============================================================ */
.media-editorial {
    padding: 50px 0;   /* o el valor que quieras */
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.media-editorial__inner {
    width: min(97%, 1840px);
    max-width: none;
    margin-inline: auto;
}

.media-editorial__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 54px;
    align-items: end;
    margin-bottom: 38px;
}

.media-editorial__heading .section-title {
    margin: 0;
}

.media-editorial__kicker {
    margin: 0 0 14px;
    color: #0a5dab;
    font: 800 13px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .19em;
}

.media-editorial__intro {
    margin: 0 0 7px;
    padding: 0 0 18px 28px;
    border-left: 5px solid var(--rojo);
    color: #2c3d48;
    font-size: 18px;
    line-height: 1.65;
}

.media-editorial__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.media-story {
    min-width: 0;
    border-top: 5px solid var(--rojo);
    border-right: 1px solid #d3dfe3;
    border-bottom: 1px solid #d3dfe3;
    border-left: 1px solid #d3dfe3;
    background: #fff;
    box-shadow: 0 16px 34px rgba(8, 45, 68, .08);
}

.media-story[hidden] {
    display: none;
}

.media-story__open {
    display: flex;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    flex-direction: column;
}

.media-story__image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #e9eef0;
}

.media-story__image--focus-top img {
    object-position: center top;
}

.media-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.media-story__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px 30px 30px;
}

.media-story__meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
    color: #0a5dab;
    font: 800 12px/1.25 'Inter', Arial, sans-serif;
    letter-spacing: .095em;
}

.media-story__meta time {
    color: #647580;
    white-space: nowrap;
}

.media-story h3 {
    margin: 0 0 15px;
    color: #0a2740;
    font: 900 clamp(25px, 1.75vw, 34px)/1.08 'Inter', Arial, sans-serif;
    letter-spacing: -.03em;
}

.media-story p {
    margin: 0 0 24px;
    color: #31424c;
    font-size: 17px;
    line-height: 1.65;
}

.media-story__cta {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: #0a5dab;
    font: 800 13px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.media-story__cta::after {
    content: "→";
    margin-left: 10px;
    font-size: 19px;
    line-height: 1;
}

.media-story__open:hover .media-story__image img,
.media-story__open:focus-visible .media-story__image img {
    transform: scale(1.025);
}

.media-story__open:focus-visible {
    outline: 3px solid rgba(10, 94, 131, .55);
    outline-offset: 3px;
}

.media-editorial__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    justify-content: center;
}

.media-load-more {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid var(--rojo);
    border-radius: 2px;
    font: 800 13px/1 'Inter', Arial, sans-serif;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    background: var(--rojo);
    color: #fff;
}

.media-load-more:hover,
.media-load-more:focus-visible {
    background: #b01a24;
    border-color: #b01a24;
}

.media-modal {
    width: min(92vw, 1180px);
    max-height: 90vh;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
}

.media-modal::backdrop {
    background: rgba(3, 17, 28, .78);
    backdrop-filter: blur(4px);
}

.media-modal__close {
    position: absolute;
    z-index: 3;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 2px;
    background: #081d2f;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width:980px) {
    .media-editorial__heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .media-editorial__intro {
        max-width: 850px;
    }
}

@media (max-width:760px) {

    .media-editorial {
        padding: 60px 0 50px;   /* o el que necesites */
    }
    .media-editorial__inner {
        width: 90%;
    }
    .media-editorial__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .media-editorial__intro {
        padding-left: 18px;
        font-size: 16px;
    }
    .media-story__body {
        padding: 23px 21px 25px;
    }
    .media-story h3 {
        font-size: 27px;
    }
    .media-story p {
        font-size: 16px;
    }
    .media-story__meta {
        font-size: 11px;
    }
    .media-editorial__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .media-load-more {
        width: 100%;
    }
    .media-modal {
        width: 95vw;
    }
}

/* ============================================================
   MEDIA MODAL - ARTICLE
   ============================================================ */
.media-modal--article {
    max-width: none;
    max-height: none;
    padding: 0;
    border: 0;
    background: transparent;
    overflow: visible;
    width: min(98vw, 1720px);
    height: min(96vh, 1120px);
}

.media-modal--article::backdrop {
    background: rgba(2, 15, 25, .84);
    backdrop-filter: blur(5px);
}

.media-modal__article-panel {
    position: relative;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
    overflow: hidden;
    border-radius: 10px;
}

.media-modal__frame {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #fff;
}

.media-modal--article .media-modal__close {
    position: absolute;
    z-index: 5;
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .32);
    background: #081d2f;
    color: #fff;
    font-size: 31px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .22);
}

@media (max-width:900px) {
    .media-modal--article {
        width: 100vw;
        height: 100dvh;
    }
    .media-modal__article-panel {
        border-radius: 0;
    }
    .media-modal--article .media-modal__close {
        top: 9px;
        right: 9px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================================
   ARTICLE PAGES
   ============================================================ */
.article-page {
    background: #f3f6f7;
    color: #142536;
}

.article-page.article-embed {
    background: #fff;
}

.article-page.article-embed .article-site-header,
.article-page.article-embed .article-footer {
    display: none;
}

.article-page.article-embed main {
    padding: 0;
}

.article-page.article-embed .article-layout {
    width: min(96%, 1580px);
    margin: 0 auto;
    padding: 34px 0 64px;
}

.article-site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px max(5vw, 28px);
    border-bottom: 1px solid #d5e0e4;
    background: #fff;
}

.article-site-header__brand {
    color: #0a2740;
    text-decoration: none;
    font: 900 24px/1 'Inter', Arial, sans-serif;
    letter-spacing: -.025em;
}

.article-site-header__brand span {
    display: block;
    margin-top: 7px;
    color: var(--rojo);
    font: 700 10px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .16em;
}

.article-site-header nav {
    display: flex;
    gap: 26px;
}

.article-site-header nav a {
    color: #0a2740;
    text-decoration: none;
    font: 700 13px/1.2 'Inter', Arial, sans-serif;
}

.article-layout {
    width: min(96%, 1520px);
    margin: 54px auto 90px;
    background: #fff;
    border-top: 7px solid var(--rojo);
}

.article-header {
    padding: clamp(34px, 5vw, 72px) clamp(28px, 6vw, 86px) 38px;
    padding-right: clamp(30px, 5vw, 80px);
    padding-left: clamp(30px, 5vw, 80px);
}

.article-header h1 {
    max-width: 1280px;
}

.article-category {
    margin: 0 0 18px;
    color: var(--blue);
    font: 800 13px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .18em;
}

.article-header h1 {
    margin: 0;
    color: #0a2740;
    font: 900 clamp(39px, 5.4vw, 78px)/.98 'Inter', Arial, sans-serif;
    letter-spacing: -.045em;
}

.article-header time {
    display: block;
    margin-top: 22px;
    color: #61717c;
    font-size: 15px;
}

.article-intro {
    margin: 28px 0 0;
    color: #263b49;
    font-size: clamp(20px, 1.7vw, 27px);
    line-height: 1.55;
    font-weight: 500;
    max-width: 1080px;
}

.article-lead-image {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #edf2f4;
}

.article-lead-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin: 0 auto;
    object-fit: contain;
}

.article-lead-image figcaption {
    width: 100%;
    padding: 10px 20px 12px;
    color: #5b6c77;
    font-size: 13px;
    text-align: center;
    background: #f7f9fa;
    border-top: 1px solid #d5e0e4;
}

.article-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 30px 60px;
}

.article-body p {
    margin: 0 0 24px;
    color: #223541;
    font-size: 19px;
    line-height: 1.78;
}

.article-body--wide {
    width: 100%;
    max-width: 1380px;
    padding: 52px 34px 68px;
}

.article-prose {
    max-width: 980px;
    margin: 0 auto;
}

.article-prose+.article-media-stack,
.article-prose+.article-gallery {
    margin-top: 42px;
}

.article-footer {
    padding: 28px clamp(28px, 6vw, 86px);
    border-top: 1px solid #d6e1e5;
}

.article-footer a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width:760px) {
    .article-page.article-embed .article-layout {
        width: 90%;
        padding: 48px 0 56px;
    }
    .article-body--wide {
        padding-inline: 22px;
    }
}

@media (max-width:600px) {
    .article-page.article-embed .article-layout {
        width: 100%;
        padding: 42px 0 50px;
    }
    .article-body--wide {
        padding: 32px 16px 44px;
    }
    .article-header {
        padding: 34px 19px 28px;
    }
    .article-header h1 {
        font-size: clamp(34px, 10vw, 46px);
    }
    .article-intro {
        font-size: 18px;
    }
}

/* ============================================================
   ARTICLE MEDIA STACK & GALLERY
   ============================================================ */
.article-media-stack {
    display: grid;
    gap: 34px;
    margin: 0 auto 42px;
}

.article-media-stack figure,
.article-gallery figure {
    min-width: 0;
}

.article-media-stack figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid #d5e0e4;
    background: #f6f8f9;
    box-shadow: 0 12px 28px rgba(8, 42, 61, .08);
}

.article-media-stack img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    background: #fff;
}

.article-media-stack figcaption {
    padding: 11px 14px 13px;
    border-top: 1px solid #d5e0e4;
    color: #536671;
    font-size: 13px;
    line-height: 1.45;
}

.article-media-stack .article-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0;
    background: #f5f7f8;
}

.article-media-stack .article-media a,
.article-gallery .article-media a {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #fff;
}

.article-media-stack .article-media img,
.article-gallery .article-media img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.article-media-stack--documents .article-media {
    border-radius: 7px;
    overflow: hidden;
}

.article-media--document {
    max-width: max-content;
    margin-inline: auto;
}

.article-media--document-wide {
    max-width: 100%;
}

.article-media figcaption {
    width: 100%;
    padding: 12px 16px 14px;
    border-top: 1px solid #d5e0e4;
    color: #536671;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.article-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin: 42px 0;
}

.article-gallery .article-media {
    display: flex;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    border: 1px solid #d5e0e4;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(8, 42, 61, .08);
}

.article-gallery .article-media a {
    flex: 1;
    align-items: center;
}

.article-gallery .article-media img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: contain;
}

.article-quote {
    max-width: 980px;
    margin: 34px auto;
    padding: 26px 30px;
    border: 0;
    border-left: 6px solid var(--rojo);
    background: #eff7f8;
    color: #183244;
}

.article-quote p {
    margin: 0;
    color: #183244;
    font-size: 20px;
    line-height: 1.65;
    font-style: italic;
}

.article-source-links {
    max-width: 980px;
    margin: 46px auto 0;
    margin-top: 40px;
    padding: 24px 26px;
    border-left: 5px solid var(--rojo);
    background: #edf6f7;
}

.article-source-links h2 {
    margin: 0 0 17px;
    color: #0a2740;
    font: 800 18px/1.2 'Inter', Arial, sans-serif;
}

.article-source-links p {
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 1.6;
}

.article-source-links p:last-child {
    margin-bottom: 0;
}

.article-source-links a {
    color: var(--blue);
    font-weight: 700;
}

@media (max-width:900px) {
    .article-gallery {
        grid-template-columns: 1fr;
    }
    .article-gallery .article-media img {
        min-height: 0;
    }
}

@media (max-width:760px) {
    .article-media-stack {
        gap: 18px;
        margin: 28px 0;
    }
    .article-media-stack figcaption {
        font-size: 12px;
    }
    .article-source-links {
        padding: 20px 18px;
    }
}

/* ============================================================
   ARTICLE DOCUMENT
   ============================================================ */
.article-document {
    margin: 0;
}

.article-document__heading {
    max-width: 900px;
    margin: 0 auto 26px;
}

.article-document__eyebrow {
    margin: 0 0 9px;
    color: var(--blue);
    font: 800 12px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .17em;
}

.article-document__heading h2 {
    margin: 0 0 12px;
    color: #0a2740;
    font: 900 clamp(28px, 3.2vw, 48px)/1.04 'Inter', Arial, sans-serif;
    letter-spacing: -.035em;
}

.article-document__heading>p:last-child {
    margin: 0;
    color: #435661;
    font-size: 17px;
    line-height: 1.55;
}

.article-document--pdf {
    width: 100%;
}

.article-page:has(.article-document--pdf) .article-body--wide {
    max-width: 1460px;
}

.article-pdf-frame {
    display: block;
    width: 100%;
    border: 1px solid #cbd8de;
    background: #e9eef0;
    box-shadow: 0 18px 42px rgba(8, 45, 68, .13);
    height: min(1240px, 86vh);
    min-height: 760px;
}

.article-pdf-fallback {
    margin: 15px 0 0;
    color: #536671;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.article-pdf-fallback a {
    color: var(--blue);
    font-weight: 700;
}

@media (max-width:760px) {
    .article-document__heading {
        padding: 0 8px;
        margin-bottom: 20px;
    }
    .article-document__heading h2 {
        font-size: 29px;
    }
    .article-document__heading>p:last-child {
        font-size: 16px;
    }
    .article-pdf-frame {
        height: 72vh;
        min-height: 520px;
    }
    .article-pdf-fallback {
        padding-inline: 8px;
    }
}

/* ============================================================
   NEWS ARCHIVE
   ============================================================ */
.news-archive-page {
    background: #f4f7f8;
}

.news-archive-header {
    padding: 52px 0 34px;
    background: #081d2f;
    color: #fff;
}

.news-archive-header__inner {
    width: min(92%, 1500px);
    margin: 0 auto;
}

.news-archive-header a {
    display: inline-block;
    margin-bottom: 28px;
    color: #75e4e1;
    text-decoration: none;
    font: 800 12px/1 'Inter', Arial, sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-archive-header h1 {
    margin: 0;
    color: #fff;
    font: 900 clamp(46px, 6vw, 92px)/.95 'Inter', Arial, sans-serif;
    letter-spacing: -.055em;
}

.news-archive-header p {
    max-width: 800px;
    margin: 22px 0 0;
    color: #c9d7de;
    font-size: 19px;
    line-height: 1.65;
}

.news-archive-main {
    padding: 58px 0 86px;
}

.news-archive-main .media-editorial__grid {
    width: min(92%, 1500px);
    margin: 0 auto;
}

@media (max-width:760px) {
    .news-archive-header {
        padding: 42px 0 30px;
    }
    .news-archive-main {
        padding: 38px 0 62px;
    }
}

/* ============================================================
   EXPERIENCE LEVELS
   ============================================================ */
.experience-levels {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1.2fr);
    align-content: center;
    overflow: hidden;
    padding-inline: clamp(24px, 3vw, 54px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    padding: 25px clamp(26px, 2.6vw, 48px);
    text-align: left;
    background: linear-gradient(135deg, #fff 0%, #eef6f8 100%);
}

.experience-levels::before {
    display: none;
}

.experience-levels__label {
    color: #55707f;
    font: 800 12px/1 'Inter', Arial, sans-serif;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.experience-levels__route {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    white-space: nowrap;
    text-align: center;
}

.experience-levels__route i {
    color: var(--rojo);
    font: 500 clamp(20px, 1.7vw, 29px)/1 Arial, sans-serif;
    font-style: normal;
    text-align: center;
}

.experience-levels__route span {
    color: #0a2740;
    font: 800 clamp(22px, 1.55vw, 30px)/1.02 'Inter', Arial, sans-serif;
    letter-spacing: .01em;
    text-transform: uppercase;
    text-align: center;
}

.experience-levels__route strong {
    color: var(--rojo);
    font: 900 clamp(34px, 2.65vw, 52px)/.96 'Inter', Arial, sans-serif;
    letter-spacing: -.045em;
    text-transform: uppercase;
    text-align: center;
}

@media (max-width:900px) {
    .experience-levels {
        align-items: center;
        text-align: center;
    }
    .experience-levels__route {
        white-space: normal;       /* Permite que baje a 2 líneas en móvil */
        justify-content: center;
        align-items: center;       /* <--- ESTO ES LO QUE FALTA (anula el flex-start global) */
        flex-wrap: wrap;
        text-align: center;        /* <--- CORREGIDO (antes ponía text-aline) */
    }
}

@media (max-width:760px) {
    .experience-levels__route {
        gap: 8px;
        justify-content: center;
        align-items: center;       /* Reforzamos el centrado para pantallas aún más pequeñas */
    }
    .experience-levels__route span {
        font-size: 22px;
    }
    .experience-levels__route strong {
        font-size: 32px;
    }
}

/* ============================================================
   MARK PRESS
   ============================================================ */
.mark-press {
    display: inline-block;
    position: relative;
    color: inherit;
    font-weight: 700;
}

.mark-press::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: var(--rojo);
    transform: skewX(-20deg);
    transform-origin: bottom left;
    border-radius: 2px 0 0 2px;
}

/* ============================================================
   VIDEO MODAL
   ============================================================ */
.video-modal {
    color: #fff;
    width: min(96vw, 152vh, 1600px);
    max-width: none;
    max-height: 96vh;
    margin: auto;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
}

.video-modal[open] {
    display: block;
}

.video-modal::backdrop {
    background: rgba(2, 12, 21, .86);
    backdrop-filter: blur(7px);
}

.video-modal__panel {
    position: relative;
    width: 100%;
    padding: 12px 12px 14px;
    background: #071b2b;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .55);
}

.video-modal__viewport {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #000;
}

.video-modal__viewport iframe,
.video-modal__viewport video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000;
}

.video-modal__viewport>[hidden] {
    display: none;
}

.video-modal__panel>h3 {
    margin: 13px 4px 0;
    padding: 0;
    color: #fff;
    font: 800 clamp(18px, 1.55vw, 27px)/1.2 'Inter', Arial, sans-serif;
}

.video-modal__close {
    position: absolute;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 2px;
    background: rgba(5, 20, 33, .9);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
}

.video-modal__viewport video {
    object-fit: contain;
}

.video-modal__status {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    line-height: 1.55;
    max-width: 680px;
    padding: 34px;
    color: #dce8ed;
}

.video-modal__status strong {
    color: #65e3df;
    font: 800 22px/1.2 'Inter', Arial, sans-serif;
}

.video-modal__status--error strong {
    color: #ffb4aa;
}

.video-modal--model .video-modal__viewport {
    height: auto;
    aspect-ratio: 16/9;
    background: #000;
}

@media (max-width:900px) {
    .video-modal {
        width: 98vw;
        max-height: 98vh;
    }
}

@media (max-width:760px) {
    .video-modal {
        width: 100vw;
        max-height: 100vh;
        margin: 0;
    }
    .video-modal__panel {
        min-height: 0;
        padding: 48px 0 12px;
    }
    .video-modal__viewport {
        aspect-ratio: 16/9;
    }
    .video-modal__panel>h3 {
        padding: 0 15px;
    }
    .video-modal__close {
        top: 2px;
        right: 6px;
    }
}

/* ============================================================
   VIDEO CARD
   ============================================================ */
.video-card,
.press-grid button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.video-card h3 {
    margin: 18px 0 5px;
    font: 700 21px/1.25 'Inter', Arial, sans-serif;
    color: var(--ink);
}

.video-card p {
    margin: 0;
    color: #535f66;
    font: 600 13px/1.3 'Inter', Arial, sans-serif;
    letter-spacing: .05em;
}

.video-card:hover .video-thumb img,
.video-card:focus-visible .video-thumb img,
.press-grid button:hover img,
.press-grid button:focus-visible img {
    transform: scale(1.025);
}

.video-card:focus-visible,
.press-grid button:focus-visible {
    outline: 3px solid var(--rojo);
    outline-offset: 5px;
}

.video-section-intro {
    max-width: 760px;
    margin: -18px 0 34px;
    color: #535f66;
    font-size: 17px;
    line-height: 1.65;
}

/* ============================================================
   MODELOS DE JUEGO - MEJORA VISUAL
   ============================================================ */
#modelos.dark-section {
    background: #fff;
    color: var(--ink);
}

#modelos {
    padding: 50px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

#modelos .section-title {
    color: var(--rojo);
    margin-bottom: 18px;
    font-size: clamp(48px, 5.8vw, 88px);
}

#modelos .video-section-intro {
    max-width: 830px;
    margin: 0 0 44px;
    color: #535f66;
    font-size: 18px;
    line-height: 1.65;
}

#modelos .video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 50px 30px;
}

#modelos .video-list article {
    background: #fff;
    border: 1px solid var(--rojo);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(214, 26, 42, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 26px;
}

#modelos .video-list article:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(214, 26, 42, 0.25);
}

#modelos .video-card h3 {
    margin-top: 16px;
    color: var(--ink);
    font: 800 22px/1.2 'Inter', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .02em;
}

#modelos .video-card p {
    margin-top: 6px;
    color: var(--rojo);
    font: 700 15px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
}

#modelos .video-thumb span {
    background: var(--rojo);
    color: #fff;
    width: 72px;
    height: 72px;
    box-shadow: 0 6px 18px rgba(214, 26, 42, 0.4);
    transition: transform 0.2s ease;
}

#modelos .video-list article:hover .video-thumb span {
    transform: translate(-50%, -50%) scale(1.1);
}

#modelos .video-thumb {
    border: 1px solid rgba(0, 0, 0, .2);
}

.video-modal--model .video-modal__viewport iframe {
    background: #071b2b;
}

@media (max-width:900px) {
    #modelos .video-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width:760px) {
    #modelos {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    #modelos .section-title {
        font-size: 43px;
    }
    #modelos .video-section-intro {
        font-size: 16px;
        margin-bottom: 34px;
    }
    #modelos .video-list {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

@media (max-width:700px) {
    #modelos .video-list {
        grid-template-columns: 1fr;
        gap: 38px;
    }
}

/* ============================================================
   COMPETICIONES CARRUSEL (CORREGIDO)
   ============================================================ */

/* 1. Normalización de imágenes (Mismo tamaño para todos los logos) */
.logo-slider figure img,
.competition-slider .competition-card--wide img,
.competition-slider .competition-card--rffm img {
    width: 100%;
    max-width: 100%;
    height: 90px; /* Tamaño homogéneo */
    object-fit: contain;
    margin-bottom: 12px;
    pointer-events: none;
    filter: none;
}

/* ============================================================
   COMPETICIONES CARRUSEL (ÚNICO Y DEFINITIVO)
   ============================================================ */

.competitions-strip {
    padding: 34px 0 38px;
    overflow: hidden;
    background: #fff;
}

.competitions-strip__heading {
    width: min(92%, 1660px);
    max-width: none;
    margin-inline: auto;
}

.competitions-strip__heading .section-title {
    margin-bottom: 28px;
}

.competition-carousel {
    position: relative;
    padding: 0 15px;
}

/* Contenedor del carrusel */
.competition-slider {
    display: flex !important; /* Desactiva el grid de la l600 */
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: none !important; /* ELIMINA EL ENGANCHE/ATASCO */
    touch-action: pan-y pinch-zoom;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 12px 8px;
    user-select: none;
    cursor: grab;
}

.competition-slider::-webkit-scrollbar {
    display: none;
}

.competition-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto !important;
}

/* ============================================================
   RESPONSIVE / MEDIA QUERIES (LIMPIO Y UNIFICADO)
   ============================================================ */

/* PANTALLAS GRANDES Y ESCRITORIO (min-width: 901px) */
@media (min-width: 901px) {
    #competiciones .competitions-strip__heading .section-title {
        margin-bottom: 40px;
    }

    #competiciones .competition-slider {
        width: 100%;
        justify-content: flex-start;
        gap: clamp(20px, 2vw, 36px);
        padding: 12px clamp(20px, 3vw, 50px) 24px;
    }

    #competiciones .competition-slider figure {
        flex: 0 0 clamp(220px, 14vw, 260px);
        width: clamp(220px, 14vw, 260px);
        min-height: clamp(190px, 11vw, 220px);
        padding: 16px 14px;
    }

    /* Ajuste proporcional de imágenes sin nth-child rigidos */
    #competiciones .competition-slider figure img {
        max-width: 85%;
        max-height: 110px;
    }

    #competiciones .competition-slider .competition-card--wide img {
        max-width: 95%;
        max-height: 100px;
    }

    #competiciones .competition-slider .competition-card--rffm img {
        max-width: 75%;
        max-height: 115px;
    }

    #competiciones .competition-slider figcaption {
        min-height: 36px;
        margin-top: 10px;
        padding-top: 10px;
        font-size: 14px;
    }
}

@media (min-width: 1600px) {
    #competiciones .competitions-strip__heading .section-title {
        margin-bottom: 52px;
    }
}

@media (min-width: 1700px) {
    #competiciones .competition-slider {
        padding-inline: 0;
    }
}

/* TABLETS Y MÓVILES (max-width: 900px) */
@media (max-width: 900px) {
    #competiciones.competitions-strip {
        padding: 26px 0 30px;
    }

    #competiciones .competitions-strip__heading {
        width: 90%;
    }

    #competiciones .competitions-strip__heading .section-title {
        margin-bottom: 22px;
    }

    #competiciones .competition-slider {
        gap: 14px;
        padding: 8px 12px 16px;
        scroll-padding-inline: 12px;
    }

    #competiciones .competition-slider figure {
        flex: 0 0 170px;
        width: 170px;
        min-height: 175px;
        padding: 12px 10px;
    }

    /* Imagen proporcional limpia en móvil */
    #competiciones .competition-slider figure img {
        max-width: 85%;
        max-height: 85px;
    }

    #competiciones .competition-slider .competition-card--wide img {
        max-width: 95%;
        max-height: 80px;
    }

    #competiciones .competition-slider .competition-card--rffm img {
        max-width: 75%;
        max-height: 90px;
    }

    #competiciones .competition-slider figcaption {
        font-size: 12px;
        min-height: 30px;
        margin-top: 8px;
        padding-top: 8px;
    }

    /* Flechas ajustadas a pantalla pequeña */
    #competiciones .slider-arrow {
        width: 36px;
        height: 36px;
    }

    #competiciones .slider-arrow.prev {
        left: -2px;
    }

    #competiciones .slider-arrow.next {
        right: -2px;
    }

    #competiciones+.club-journey {
        padding-top: 34px;
    }
}

/* MÓVILES PEQUEÑOS (max-width: 600px) */
@media (max-width: 600px) {
    #competiciones {
        padding-bottom: 18px;
    }

    #competiciones > .page-width {
        width: 100%;
    }

    #competiciones .section-title {
        width: 90%;
        margin-inline: auto;
    }

    .trajectory-rework {
        padding-top: 32px;
    }
}

/* ============================================================
   TRAYECTORIA - TACTICAL PANEL (OSWALD)
   ============================================================ */
.trajectory-tactical-panel {
    display: grid;
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
    gap: 46px;
    padding: 38px 40px 40px;
    border: 1px solid #d6e2e6;
    border-top: 5px solid var(--rojo);
    background: #fff;
}

.trajectory-tactical-panel__lead {
    padding-right: 38px;
    border-right: 1px solid #cdd9de;
}

.trajectory-tactical-panel__lead h3 {
    margin: 0 0 18px;
    color: #0a2740;
    font: 900 clamp(34px, 2.6vw, 48px)/1.06 'Oswald', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.trajectory-tactical-panel__title {
    margin: 0 0 20px;
    color: #0a2740;
    font: 900 clamp(32px, 2.4vw, 44px)/1.08 'Oswald', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: -.03em;
    text-transform: uppercase;
}

.trajectory-tactical-panel__lead p,
.trajectory-tactical-panel__body p {
    margin: 0 0 18px;
    color: #21323d;
    font-size: 18px;
    line-height: 1.72;
}

.trajectory-tactical-panel__lead p:last-child,
.trajectory-tactical-panel__body p:last-child {
    margin-bottom: 0;
}

.trajectory-tactical-panel__lead .more-info {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #cdd9de;
}

.trajectory-tactical-panel__lead h4 {
    margin: 30px 0 12px;
    padding-top: 22px;
    border-top: 1px solid #cdd9de;
    color: #0a2740;
    font: 800 15px/1.2 'Inter', Arial, sans-serif;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.trajectory-tactical-panel__body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
}

.trajectory-tactical-panel strong {
    color: #0a2740;
    font-weight: 700;
}

.trajectory-tactical-panel--quote .trajectory-tactical-panel__body {
    display: block;
}

@media (max-width:1100px) {
    .trajectory-tactical-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .trajectory-tactical-panel__lead {
        padding: 0 0 28px;
        border-right: 0;
        border-bottom: 1px solid #cdd9de;
    }
    .trajectory-tactical-panel__lead .more-info {
        margin-top: 22px;
    }
}

@media (max-width:760px) {
    .trajectory-tactical-panel {
        gap: 24px;
        padding: 27px 22px 29px;
    }
    .trajectory-tactical-panel__lead {
        padding-bottom: 23px;
    }
    .trajectory-tactical-panel__lead h3 {
        font-size: 29px;
    }
    .trajectory-tactical-panel__title {
        margin-bottom: 16px;
        font-size: 28px;
    }
    .trajectory-tactical-panel__lead p,
    .trajectory-tactical-panel__body p {
        font-size: 16px;
        line-height: 1.68;
    }
    .trajectory-tactical-panel__body {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .trajectory-tactical-panel__body>div+div {
        margin-top: 2px;
    }
    .trajectory-tactical-panel__lead h4 {
        margin-top: 25px;
        padding-top: 19px;
        font-size: 14px;
    }
}

@media (min-width:1101px) {
    .trajectory-tactical-panel--quote {
        grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
        align-items: start;
    }
    .trajectory-tactical-panel--quote .trajectory-tactical-panel__body {
        display: block;
    }
    .trajectory-tactical-panel--quote .trajectory-game-quote {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .trajectory-tactical-panel--quote .trajectory-game-quote footer {
        margin-top: auto;
    }
}

/* ============================================================
   TRAJECTORY GAME QUOTE
   ============================================================ */
.trajectory-game-quote {
    counter-reset: game-phase;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 0;
    height: auto;
    padding: 36px 40px 30px;
    border: 1px solid #dce7ea;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fbfc 100%);
    box-shadow: 0 14px 34px rgba(10, 39, 64, .055);
    overflow: hidden;
    position: relative;
    margin: 0;
}

.trajectory-game-quote::after {
    content: none;
    display: none;
}

.trajectory-game-quote::before {
    content: "“";
    position: absolute;
    font: 700 96px/1 Georgia, serif;
    pointer-events: none;
    top: 12px;
    right: 24px;
    color: rgba(8, 127, 136, .11);
    font-size: 92px;
}

.trajectory-game-quote p {
    margin: 0;
    color: #263943;
    font-size: 16.5px;
    line-height: 1.68;
    font-style: italic;
    position: relative;
}

.trajectory-game-quote p:last-of-type {
    margin-bottom: 24px;
}

.trajectory-game-quote__opening {
    grid-column: 1 / -1;
    padding: 0 62px 25px 0;
    border-bottom: 1px solid #dce7ea;
    color: #0a2740;
    font-size: 20px;
    line-height: 1.52;
    font-weight: 700;
    letter-spacing: -.012em;
}

.trajectory-game-quote p:not(.trajectory-game-quote__opening) {
    position: relative;
    padding: 20px 0 20px 42px;
    border-top: 1px solid #e3ecef;
}

.trajectory-game-quote p:nth-of-type(2),
.trajectory-game-quote p:nth-of-type(3) {
    border-top: 0;
}

.trajectory-game-quote p:nth-of-type(6) {
    grid-column: 1 / -1;
    padding-right: 26px;
}

.trajectory-game-quote p:not(.trajectory-game-quote__opening)::before {
    counter-increment: game-phase;
    content: "0" counter(game-phase);
    position: absolute;
    top: 21px;
    left: 0;
    color: rgba(8, 127, 136, .58);
    font: 800 12px/1 'Inter', Arial, sans-serif;
    font-style: normal;
    letter-spacing: .08em;
}

.trajectory-game-quote strong {
    display: block;
    margin: 0 0 5px;
    color: #087f88;
    font-weight: 800;
    font-style: normal;
    letter-spacing: -.01em;
}

.trajectory-game-quote footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 4px;
    padding-top: 17px;
    border-top: 1px solid #d6e2e6;
    color: #0a2740;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.trajectory-game-quote cite {
    font-style: normal;
}

@media (max-width:900px) {
    .trajectory-game-quote {
        grid-template-columns: 1fr;
        column-gap: 0;
        padding: 31px 30px 27px;
    }
    .trajectory-game-quote p:nth-of-type(3) {
        border-top: 1px solid #e3ecef;
    }
    .trajectory-game-quote p:nth-of-type(6) {
        grid-column: auto;
        padding-right: 0;
    }
}

@media (max-width:760px) {
    .trajectory-game-quote {
        display: block;
        padding: 27px 21px 23px;
        border-radius: 8px;
    }
    .trajectory-game-quote::before {
        top: 8px;
        right: 13px;
        font-size: 68px;
    }
    .trajectory-game-quote__opening {
        padding: 0 38px 22px 0;
        font-size: 18px;
        line-height: 1.52;
    }
    .trajectory-game-quote p:not(.trajectory-game-quote__opening) {
        padding: 18px 0 18px 36px;
        border-top: 1px solid #e3ecef;
    }
    .trajectory-game-quote p:not(.trajectory-game-quote__opening)::before {
        top: 20px;
        font-size: 11px;
    }
    .trajectory-game-quote p {
        font-size: 16px;
        line-height: 1.66;
    }
    .trajectory-game-quote footer {
        margin-top: 2px;
    }
    .trajectory-feature-card--secondary .trajectory-feature-card__photo img {
        width: 100%;
        height: auto;
        aspect-ratio: 4/3;
        object-position: center 32%;
    }
}

/* ============================================================
   TRAJECTORY CREDENTIALS
   ============================================================ */
.trajectory-feature-card__copy .trajectory-credentials {
    margin: 4px 0 24px;
    padding: 13px 16px 14px;
    border-left: 4px solid var(--rojo);
    background: #f1f5f6;
    color: #263943;
    font: 600 15px/1.55 'Inter', Arial, sans-serif;
}


@media (max-width:760px) {
    .trajectory-rework {
        padding: 54px 0 66px;
    }
    .trajectory-rework__inner {
        width: 90%;
        padding-inline: 0;
    }
    .trajectory-rework__intro h3 {
        font-size: 34px;
    }
    .trajectory-rework__intro p {
        font-size: 17px;
    }
    .trajectory-feature-card__copy {
        padding: 26px 22px 28px;
    }
    .trajectory-feature-card__copy h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .trajectory-feature-card__copy p {
        font-size: 16px;
        line-height: 1.68;
    }
    .trajectory-feature-card__photo img {
        min-height: 0;
        aspect-ratio: 4/3;
    }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.language-switcher {
    position: fixed;
    z-index: 9020;
    left: 0;
    top: 0;
    display: flex;
    align-items: stretch;
    height: 34px;
    background: #111820;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

.language-switcher a {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 58px;
    padding: 0 10px;
    color: #aeb8c0;
    text-decoration: none;
    border-right: 1px solid rgba(255, 255, 255, .15);
    font: 700 11px/1 'Inter', Arial, sans-serif;
    letter-spacing: .05em;
}

.language-switcher a:last-child {
    border-right: 0;
}

.language-switcher a span {
    font-size: 14px;
    line-height: 1;
}

.language-switcher a.is-active {
    background: #fff;
    color: #111820;
}

.language-switcher a:hover {
    color: #fff;
    background: #24303a;
}

.language-switcher a.is-active:hover {
    color: #111820;
    background: #fff;
}

@media (max-width:760px) {
    .language-switcher {
        height: 31px;
    }
    .language-switcher a {
        min-width: 52px;
        padding: 0 8px;
        font-size: 10px;
    }
}

/* ============================================================
   CONTACT FORM - HONEYPOT
   ============================================================ */
.contact-form__website {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .66;
}

.form-status {
    min-height: 1.4em;
    font-weight: 500;
    line-height: 1.5;
}

.form-status--sending {
    color: #465b67;
}

.form-status--success {
    color: #176a45;
}

.form-status--error {
    color: #a3202d;
}

/* ============================================================
   GLOBAL - SECTION TITLES
   ============================================================ */
.section-title,
main h2,
main h3,
main h4 {
    font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
}

.section-title {
    font-weight: 700;
    letter-spacing: -.018em;
}

main h3,
main h4 {
    font-weight: 700;
}

/* ============================================================
   COMPETICIONES - PADDING
   ============================================================ */
#competiciones {
    padding-bottom: 28px;
}

#competiciones>.page-width {
    width: min(98.5%, 1940px);
    max-width: none;
}

.trajectory-rework {
    padding-top: 38px;
    padding-bottom: 42px;
}

#competiciones+.club-journey {
    padding-top: 44px;
}

@media (min-width:1400px) {
    .competition-slider {
        grid-auto-columns: calc((100% - 96px)/5);
    }
    .competition-slider figure {
        min-height: 252px;
        padding: 22px 18px 18px;
        border-radius: 20px;
    }
    .competition-slider img {
        width: 74%;
        max-width: 200px;
        height: 138px;
    }
    .competition-slider figcaption {
        margin-top: 14px;
        padding-top: 14px;
        font-size: 14px;
    }
    
   .competition-slider .competition-card--wide img {
    max-width: 95%;   /* Para logos muy horizontales/alargados */
    max-height: 100px;
}

.competition-slider .competition-card--rffm img {
    max-width: 75%;   /* Para logos muy altos o cuadrados */
    max-height: 115px;
}
}

/* ============================================================
   MEDIA EDITORIAL - ACTIONS
   ============================================================ */
.media-editorial__actions {
    justify-content: center;
}

/* ============================================================
   RESPONSIVE - HERO EXPERIENCE (600px)
   ============================================================ */
@media (max-width:600px) {
    .site-hero__experience {
        grid-template-columns: 1fr 1fr;
    }
    .site-hero__experience>div {
        padding: 14px 12px;
        min-height: 0;
    }
    .site-hero__experience .experience-heading {
        grid-column: 1 / -1;
        min-height: 58px;
        border-right: 0;
        border-bottom: 1px solid #cdd7da;
    }
    .experience-heading span {
        font-size: 21px;
    }
    .site-hero__experience .experience-years,
    .site-hero__experience .experience-matches {
        min-height: 96px;
    }
    .site-hero__experience .experience-years {
        border-right: 1px solid #cdd7da;
    }
    .site-hero__experience .experience-matches {
        border-right: 0;
    }
    .experience-years strong {
        font-size: 34px;
    }
    .experience-matches {
        gap: 3px;
    }
    .experience-matches strong {
        font-size: 51px;
    }
    .experience-matches span {
        font-size: 13px;
    }
    .site-hero__experience .experience-levels {
        grid-column: 1 / -1;
        min-height: 102px;
        border-right: 0;
        border-bottom: 0;
    }
    .experience-levels__label {
        font-size: 12px;
        letter-spacing: .15em;
    }
    .experience-levels__route span {
        font-size: 16px;
    }
    .experience-levels__route strong {
        font-size: 31px;
    }
}

/* ============================================================
   PAGE WIDTH OVERRIDES FOR MEDIA
   ============================================================ */
#modelos>.page-width,
#ruedas-prensa>.page-width {
    width: min(97%, 1840px);
    max-width: none;
}

@media (max-width:860px) {
    #modelos>.page-width,
    #ruedas-prensa>.page-width {
        width: 92%;
    }
}

#estadisticas>.page-width,
#medios .media-editorial__inner {
    width: min(97%, 1840px);
    max-width: none;
}

@media (max-width:760px) {
    #estadisticas>.page-width,
    #medios .media-editorial__inner {
        width: 92%;
    }
}
.highlight-red {
    color: #d32f2f; /* Rojo oscuro elegante */
    font-weight: 700; /* Negrita para que destaque */
}
.site-footer__copyright {
  text-align: left;
  margin-left: 0;       /* Elimina márgenes automáticos que puedan estar centrándolo */
  width: 100%;          /* Asegura que ocupe todo el ancho disponible para alinear al borde */
}

/* 1. Eliminar overlays azulados anteriores */
.competition-carousel::before,
.competition-carousel::after,
.competitions-strip::before,
.competitions-strip::after {
  display: none !important;
  background: none !important;
}

/* 2. Contenedor del carrusel con scroll horizontal habilitado */
.competition-carousel {
  position: relative;
  display: flex;
  align-items: center;
}

.competition-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  touch-action: pan-y pinch-zoom; /* Permite scroll táctil sin bloqueo */
  scrollbar-width: none; /* Oculta scrollbar en Firefox */
  -ms-overflow-style: none; /* Oculta scrollbar en IE/Edge */
  padding: 16px 8px;
  user-select: none;
  cursor: grab;
}

.competition-slider::-webkit-scrollbar {
  display: none; /* Oculta scrollbar en Chrome/Safari */
}

.competition-slider.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

/* 3. Aumentar tamaño de las marquesinas/tarjetas */
.competition-slider figure {
  flex: 0 0 auto;
  min-width: 160px; /* Tamaño mínimo incrementado */
  margin: 0;
  text-align: center;
}

.competition-slider figure.competition-card--wide {
  min-width: 200px;
}

.competition-slider a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.competition-slider img {
  width: 100%;
  height: 90px; /* Altura fija visible para logos */
  object-fit: contain;
  margin-bottom: 8px;
  pointer-events: none; /* Evita arrastrar la imagen en lugar del slider */
}

.competition-slider figcaption {
  font-size: 0.9rem;
  font-weight: 600;
}
/* ============================================================
   COMPETICIONES CARRUSEL - CORRECCION FONDO / BORDE / FLECHAS
   (Fondo gris no deseado -> transparente, borde azul -> rojo,
   flechas invisibles por fondo negro -> visibles, sin hover)
   ============================================================ */

/* 1. Quitar cualquier overlay/fondo gris o azulado heredado en las tarjetas */
#competiciones .competition-slider figure::before,
#competiciones .competition-slider figure::after {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* 2. Fondo limpio y borde fino ROJO (antes azul) en las tarjetas */
#competiciones .competition-slider figure {
    background: #fff !important;
    border: 1px solid var(--rojo) !important;
    box-shadow: none !important;
    transition: none !important;
}

/* 3. Sin animacion en hover de las tarjetas */
#competiciones .competition-slider figure:hover {
    transform: none !important;
    border-color: var(--rojo) !important;
    box-shadow: none !important;
}

#competiciones .competition-slider figcaption {
    border-top-color: rgba(214, 26, 42, .3) !important;
}

/* 4. Flechas: sin rectangulo/caja alrededor, solo el icono de la flecha */
#competiciones .slider-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transition: none !important;
    cursor: pointer !important;
}

/* 5. Sin animacion en hover de las flechas (mismo aspecto, sin movimiento) */
#competiciones .slider-arrow:hover {
    background: transparent !important;
    border: none !important;
    transform: none !important;
    box-shadow: none !important;
    cursor: pointer !important;
}

/* 6. Dibujar el icono de la flecha (el span estaba vacio, sin CSS propio) */
#competiciones .slider-arrow__icon {
    display: block;
    width: 20px;
    height: 20px;
    border-top: 4px solid var(--rojo);
    border-right: 4px solid var(--rojo);
    pointer-events: none;
}

#competiciones .slider-arrow.prev .slider-arrow__icon {
    transform: rotate(-135deg);
}

#competiciones .slider-arrow.next .slider-arrow__icon {
    transform: rotate(45deg);
}
