/*******************************************************************************
 * *
 * 3. PÁGINA DE INICIO                       *
 * *
 *******************************************************************************/

body.pagina-inicio {
    background: #f5f5f5;
}

.seccion-hero {
    position: relative;
    isolation: isolate;
    color: white;
    display: block;
    padding: 60px 10%;
    overflow: hidden;
    min-height: 640px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 32%),
        linear-gradient(135deg, #8f1111 0%, #c51d1d 42%, #390404 100%);
}

.hero-fondo-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-fondo-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1.8s ease-in-out, transform 6s ease-in-out;
}

.hero-fondo-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-fondo-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(56, 6, 6, 0.9) 0%, rgba(56, 6, 6, 0.72) 42%, rgba(56, 6, 6, 0.3) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.42));
}

.hero-texto {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding-top: 18px;
}

.seccion-hero h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    margin-bottom: 18px;
    line-height: 0.92;
    text-wrap: balance;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.seccion-hero p {
    max-width: 58ch;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.botones-hero {
    margin-top: 24px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.boton-principal {
    background: white;
    color: #e60000;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease;
}

.boton-secundario {
    background: transparent;
    border: 2px solid white;
    padding: 10px 18px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.boton-principal::before,
.boton-secundario::before,
.inicio-score-link::before,
.inicio-mini-clasificacion-link::before,
.inicio-cta-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.22) 35%, transparent 68%);
    transform: translateX(-130%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.boton-principal:hover,
.boton-secundario:hover,
.inicio-score-link:hover,
.inicio-mini-clasificacion-link:hover,
.inicio-cta-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.boton-principal:hover::before,
.boton-secundario:hover::before,
.inicio-score-link:hover::before,
.inicio-mini-clasificacion-link:hover::before,
.inicio-cta-link:hover::before {
    transform: translateX(130%);
}

.boton-principal:hover {
    background: #fff7f7;
}

.boton-secundario:hover {
    background: rgba(255, 255, 255, 0.14);
}

.hero-indicadores {
    position: absolute;
    left: 10%;
    bottom: 28px;
    display: flex;
    gap: 8px;
    z-index: 1;
}

.hero-indicador {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: transform 0.35s ease, background-color 0.35s ease, width 0.35s ease;
}

.hero-indicador.is-active {
    width: 28px;
    background: white;
}

.inicio-club-cta {
    padding: 0 5%;
    background: linear-gradient(180deg, #f5f5f5 0%, #fff 100%);
}

.inicio-club-cta-card {
    max-width: 1180px;
    margin: -52px auto 0;
    padding: 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(252, 165, 165, 0.28), transparent 30%),
        linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #fef2f2 100%);
    border: 1px solid #f2d5cd;
    box-shadow: 0 24px 50px rgba(127, 29, 29, 0.12);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: center;
}

.inicio-club-cta-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #111827;
}

.inicio-club-cta-copy p:not(.inicio-kicker) {
    margin: 0;
    max-width: 58ch;
    color: #4b5563;
    line-height: 1.75;
}

.inicio-club-cta-actions {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.inicio-club-cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #ea580c 100%);
    color: #fff;
    border: 1px solid rgba(185, 28, 28, 0.2);
    box-shadow: 0 16px 34px rgba(220, 38, 38, 0.24);
}

.inicio-club-cta-button:hover {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(220, 38, 38, 0.3);
}

.inicio-club-cta-secondary {
    border-color: #b91c1c;
    color: #b91c1c;
}

.inicio-club-cta-aside {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(185, 28, 28, 0.12);
    backdrop-filter: blur(8px);
}

.inicio-club-cta-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
}

.inicio-club-cta-list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.inicio-club-cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
    line-height: 1.5;
}

.inicio-club-cta-list i {
    color: #b91c1c;
    margin-top: 4px;
}

.inicio-club-stats {
    padding: 52px 5% 18px;
    background: #fff;
}

.inicio-club-stats-header {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}

.inicio-club-stats-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3.1vw, 2.8rem);
    color: #111827;
}

.inicio-club-stats-header p:not(.inicio-kicker) {
    margin: 12px auto 0;
    max-width: 62ch;
    color: #6b7280;
    line-height: 1.7;
}

.inicio-club-stats-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.inicio-club-stat-card {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
    border: 1px solid #f3d8d3;
    box-shadow: 0 18px 40px rgba(127, 29, 29, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.inicio-club-stat-card:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
    box-shadow: 0 24px 52px rgba(127, 29, 29, 0.16);
}

.inicio-club-stat-card strong {
    display: block;
    margin-bottom: 10px;
    color: #b91c1c;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}

.inicio-club-stat-card h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.05rem;
}

.inicio-club-stat-card p {
    margin: 0;
    color: #6b7280;
    line-height: 1.65;
}

.inicio-marcadores {
    padding: 56px 5% 24px;
    background: #fff;
}

.inicio-marcadores-header {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}

.inicio-kicker {
    margin: 0 0 10px;
    color: #b91c1c;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.inicio-marcadores-header .inicio-kicker,
.inicio-mini-clasificacion-header .inicio-kicker {
    color: #b91c1c;
}

.inicio-marcadores-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3.4vw, 3rem);
    color: #111827;
}

.inicio-marcadores-header p {
    margin: 12px auto 0;
    max-width: 62ch;
    color: #6b7280;
    line-height: 1.7;
}

.inicio-marcadores-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.inicio-score-card {
    background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
    border: 1px solid #f3d8d3;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(127, 29, 29, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.inicio-score-card:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
    box-shadow: 0 26px 54px rgba(127, 29, 29, 0.16);
}

.inicio-score-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.inicio-score-eyebrow {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #991b1b;
}

.inicio-score-badge {
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.inicio-score-badge.is-next {
    background: #fee2e2;
    color: #b91c1c;
}

.inicio-score-badge.is-result {
    background: #dcfce7;
    color: #166534;
}

.inicio-score-card h3 {
    margin: 0 0 18px;
    color: #111827;
    font-size: 1.45rem;
    text-align: center;
}

.inicio-score-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.inicio-score-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.inicio-score-team img {
    width: 82px;
    height: 82px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #ead1cb;
    border-radius: 18px;
    background: #fff;
    display: block;
}

.inicio-score-team span {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 170px;
    min-height: 2.7em;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.35;
}

.inicio-score-center strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    background: #111827;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.inicio-score-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.inicio-score-meta div {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    color: #4b5563;
    font-weight: 600;
}

.inicio-score-meta i {
    width: 18px;
    color: #b91c1c;
}

.inicio-score-empty {
    min-height: 184px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
}

.inicio-score-empty h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #111827;
}

.inicio-score-empty p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.inicio-score-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    align-self: center;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.inicio-mini-clasificacion {
    padding: 24px 5% 60px;
    background: #fff;
}

.inicio-mini-clasificacion-header {
    max-width: 1180px;
    margin: 0 auto 22px;
    text-align: center;
}

.inicio-mini-clasificacion-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #111827;
}

.inicio-mini-clasificacion-header p:not(.inicio-kicker) {
    margin: 10px 0 0;
    color: #6b7280;
    line-height: 1.6;
}

.inicio-mini-clasificacion-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.inicio-mini-clasificacion .inicio-cta-wrap {
    margin-top: 28px;
    margin-bottom: 22px;
}

.inicio-mini-clasificacion-card {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f2d5cd;
    box-shadow: 0 18px 40px rgba(127, 29, 29, 0.08);
    background: linear-gradient(180deg, #fff 0%, #fff8f6 100%);
}

.inicio-mini-clasificacion-table {
    width: 100%;
    border-collapse: collapse;
}

.inicio-mini-clasificacion-table th,
.inicio-mini-clasificacion-table td {
    padding: 16px 18px;
    text-align: left;
}

.inicio-mini-clasificacion-table th {
    background: rgba(185, 28, 28, 0.06);
    color: #7f1d1d;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inicio-mini-clasificacion-table td {
    border-top: 1px solid #f3d8d3;
    color: #1f2937;
    font-weight: 600;
    transition: background-color 0.24s ease, transform 0.24s ease;
}

.inicio-mini-clasificacion-table tbody tr {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.inicio-mini-clasificacion-table tbody tr:hover {
    transform: translateX(6px);
}

.inicio-mini-clasificacion-table tbody tr:hover td {
    background: rgba(185, 28, 28, 0.05);
}

.inicio-mini-clasificacion-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.inicio-mini-clasificacion-team img {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid #ead1cb;
    background: #fff;
    flex-shrink: 0;
}

.inicio-mini-clasificacion-team span {
    display: block;
    line-height: 1.35;
}

.inicio-mini-clasificacion-table tr.is-club-row td {
    background: rgba(185, 28, 28, 0.08);
}

.inicio-galeria-destacada {
    padding: 60px 5%;
    background: #fff;
}

.inicio-galeria-header {
    max-width: 860px;
    margin: 0 auto 28px;
    text-align: center;
}

.inicio-galeria-header h2 {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 3rem);
    color: #111827;
}

.inicio-galeria-header p:not(.inicio-kicker) {
    margin: 12px auto 0;
    max-width: 62ch;
    color: #6b7280;
    line-height: 1.7;
}

.inicio-galeria-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 22px;
}

.inicio-galeria-card {
    min-width: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #f2d5cd;
    background: #fff;
    box-shadow: 0 18px 42px rgba(127, 29, 29, 0.08);
    display: flex;
    flex-direction: column;
}

.inicio-galeria-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f3f4f6;
}

.inicio-galeria-card.is-featured .inicio-galeria-media {
    aspect-ratio: 16 / 10;
}

.inicio-galeria-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.inicio-galeria-card:hover .inicio-galeria-media img {
    transform: scale(1.05);
}

.inicio-galeria-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
}

.inicio-galeria-copy {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.inicio-galeria-type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #fee2e2;
    color: #b91c1c;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inicio-galeria-copy h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.35rem;
}

.inicio-galeria-copy p {
    margin: 0 0 18px;
    color: #6b7280;
    line-height: 1.7;
}

.inicio-galeria-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.inicio-galeria-link::after {
    content: none;
}

.seccion-noticias {
    padding: 42px 5% 60px;
    background: #fff;
}

.seccion-noticias h2 {
    text-align: center;
    font-size: clamp(2rem, 3.3vw, 3rem);
}

.subtitulo {
    text-align: center;
    color: #777;
    margin-bottom: 35px;
}

.noticias-destacadas-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.noticia-principal-home,
.tarjeta-noticia {
    background: linear-gradient(180deg, #ffffff 0%, #fff9f8 100%);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(127, 29, 29, 0.09);
    display: flex;
    flex-direction: column;
    border: 1px solid #f2d5cd;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.noticia-principal-home {
    min-height: 100%;
}

.noticia-principal-home:hover,
.tarjeta-noticia:hover {
    transform: translateY(-8px);
    border-color: #ef4444;
    box-shadow: 0 26px 52px rgba(127, 29, 29, 0.16);
}

.noticia-principal-media {
    display: block;
    height: 360px;
    background-color: #f0f0f0;
}

.contenedor-img {
    display: block;
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.noticia-principal-media img,
.contenedor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.noticia-principal-home:hover .noticia-principal-media img,
.tarjeta-noticia:hover .contenedor-img img {
    transform: scale(1.1);
}

.noticia-principal-copy {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.noticia-principal-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    align-items: center;
}

.noticia-principal-meta .fecha,
.info-tarjeta .fecha {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b91c1c;
}

.noticia-principal-meta .fecha::before,
.info-tarjeta .fecha::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #f97316;
}

.noticia-autor-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f2937;
    font-weight: 700;
    min-width: 0;
}

.noticia-autor-box-secundaria {
    font-size: 0.9rem;
}

.noticia-autor-icono {
    color: #dc2626;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.noticia-autor {
    color: inherit;
    line-height: 1;
    min-width: 0;
    overflow-wrap: anywhere;
}

.noticia-principal-copy h3 {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    line-height: 1.08;
    color: #111827;
}

.noticia-principal-copy p {
    margin: 0;
    color: #4b5563;
    line-height: 1.75;
}

.noticia-principal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.noticia-principal-link::after {
    content: none;
}

.noticias-secundarias-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.tarjeta-noticia-secundaria {
    min-width: 0;
}

.info-tarjeta {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.info-tarjeta-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-tarjeta h3 {
    font-size: 1.14rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.28;
    color: #1a1a1a;
}

.info-tarjeta p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.tarjeta-noticia-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #b91c1c;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.tarjeta-noticia-link::after {
    content: none;
}

.patrocinadores {
    padding: 64px 5%;
    background: #fff;
    text-align: center;
}

.patrocinadores-header {
    max-width: 860px;
    margin: 0 auto 30px;
}

.patrocinadores h2 {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 2.9rem);
}

.rejilla-patrocinadores {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.patrocinador {
    background: rgba(255, 255, 255, 0.92);
    min-height: 170px;
    padding: 0;
    text-align: center;
    border-radius: 24px;
    border: 1px solid #f2d5cd;
    box-shadow: 0 18px 42px rgba(127, 29, 29, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.patrocinador::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(185, 28, 28, 0.14));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

.patrocinador:hover {
    transform: translateY(-6px);
    border-color: #e11d48;
    box-shadow: 0 24px 54px rgba(127, 29, 29, 0.16);
}

.patrocinador:hover::after {
    opacity: 1;
}

.patrocinador img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.75);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.patrocinador:hover img {
    transform: scale(1.06);
    filter: saturate(1) contrast(1.04);
}

.sin-noticias {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px;
    background: #fff;
    border-radius: 15px;
    border: 2px dashed #e2e8f0;
}

.sin-noticias i {
    font-size: 3rem;
    color: #cbd5e0;
    margin-bottom: 15px;
}

.sin-noticias p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a5568;
    margin: 0;
}

.sin-noticias span {
    color: #a0aec0;
    font-size: 0.9rem;
}

.inicio-cta-wrap {
    margin-top: 28px;
    text-align: center;
}

.inicio-cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #111827;
    color: white;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
    .boton-principal,
    .boton-secundario,
    .inicio-score-link,
    .inicio-mini-clasificacion-link,
    .inicio-cta-link {
        transition: none;
    }

    .boton-principal::before,
    .boton-secundario::before,
    .inicio-score-link::before,
    .inicio-mini-clasificacion-link::before,
    .inicio-cta-link::before,
    .inicio-cta-link::before {
        transition: none;
    }
}

@media (max-width: 992px) {
    .seccion-hero {
        padding: 48px 24px;
        min-height: 0;
    }

    .inicio-club-cta {
        padding-left: 24px;
        padding-right: 24px;
    }

    .inicio-club-cta-card {
        margin-top: -38px;
        grid-template-columns: 1fr;
    }

    .inicio-club-stats {
        padding-left: 24px;
        padding-right: 24px;
    }

    .inicio-club-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-metricas {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seccion-noticias,
    .inicio-galeria-destacada,
    .inicio-mini-clasificacion,
    .patrocinadores {
        padding-left: 24px;
        padding-right: 24px;
    }

    .noticias-destacadas-layout {
        grid-template-columns: 1fr;
    }

    .noticias-secundarias-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rejilla-patrocinadores {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .inicio-marcadores-grid {
        grid-template-columns: 1fr;
    }

    .inicio-galeria-grid {
        grid-template-columns: 1fr 1fr;
    }

    .inicio-galeria-card.is-featured {
        grid-column: 1 / -1;
    }

}

@media (max-width: 768px) {
    .seccion-hero {
        padding: 34px 18px;
        text-align: center;
        min-height: 0;
    }

    .hero-texto {
        max-width: none;
    }

    .hero-kicker {
        margin-left: auto;
        margin-right: auto;
    }

    .seccion-hero h1 {
        font-size: 34px;
        line-height: 1.04;
    }

    .seccion-hero p {
        font-size: 15px;
        line-height: 1.6;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-metricas {
        grid-template-columns: 1fr;
        margin-top: 26px;
    }

    .hero-indicadores {
        position: static;
        left: auto;
        transform: none;
        bottom: auto;
        justify-content: center;
        margin-top: 18px;
    }

    .botones-hero {
        flex-direction: column;
        align-items: stretch;
    }

    .boton-principal,
    .boton-secundario {
        width: 100%;
    }

    .inicio-marcadores {
        padding: 42px 18px 20px;
    }

    .inicio-club-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .inicio-club-cta-card {
        margin-top: -26px;
        padding: 22px;
        border-radius: 22px;
    }

    .inicio-club-cta-copy p:not(.inicio-kicker) {
        max-width: none;
    }

    .inicio-club-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .inicio-club-cta-actions .boton-principal,
    .inicio-club-cta-actions .boton-secundario {
        width: 100%;
    }

    .inicio-club-cta-aside {
        padding: 18px;
    }

    .inicio-club-stats {
        padding: 40px 18px 12px;
    }

    .inicio-mini-clasificacion {
        padding: 12px 18px 44px;
    }

    .inicio-mini-clasificacion-link {
        width: 100%;
    }

    .inicio-club-stats-grid {
        grid-template-columns: 1fr;
    }

    .inicio-score-card {
        padding: 20px;
        border-radius: 20px;
    }

    .inicio-score-matchup {
        grid-template-columns: 1fr;
    }

    .inicio-score-center {
        order: 2;
        text-align: center;
    }

    .inicio-score-team {
        order: 1;
    }

    .hero-imagen img {
        max-width: 280px;
    }

    .seccion-noticias,
    .inicio-galeria-destacada,
    .inicio-mini-clasificacion,
    .patrocinadores {
        padding-left: 18px;
        padding-right: 18px;
    }

    .seccion-noticias h2,
    .inicio-galeria-header h2,
    .patrocinadores h2 {
        font-size: clamp(1.85rem, 6vw, 2.35rem);
    }

    .inicio-galeria-destacada {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .inicio-galeria-grid,
    .noticias-secundarias-grid,
    .rejilla-patrocinadores {
        grid-template-columns: 1fr;
    }

    .noticia-principal-media {
        height: 260px;
    }

    .noticia-principal-copy {
        padding: 20px;
    }

    .noticia-principal-meta,
    .info-tarjeta .fecha,
    .info-tarjeta .noticia-autor-box {
        font-size: 0.95rem;
    }

    .inicio-galeria-copy {
        padding: 18px;
    }

    .tarjeta-noticia,
    .noticia-principal-home {
        max-width: 420px;
        width: 100%;
        margin: 0 auto;
    }

    .sin-noticias {
        padding: 32px 20px;
    }
}

@media (max-width: 576px) {
    .seccion-hero {
        padding: 28px 16px;
        min-height: 520px;
    }

    .inicio-club-cta {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inicio-club-stats {
        padding-left: 16px;
        padding-right: 16px;
    }

    .seccion-hero h1 {
        font-size: 28px;
    }

    .seccion-noticias,
    .inicio-galeria-destacada,
    .inicio-mini-clasificacion,
    .patrocinadores {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contenedor-img {
        height: 190px;
    }

    .noticia-principal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .noticia-autor-box {
        width: 100%;
    }

    .noticia-autor-box-secundaria {
        font-size: 0.88rem;
    }

    .patrocinador {
        padding: 24px 10px;
    }

    .inicio-cta-link {
        width: 100%;
        min-width: 0;
    }

    .inicio-score-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .inicio-score-team img {
        width: 64px;
        height: 64px;
    }

    .inicio-score-center strong {
        min-width: 78px;
        min-height: 48px;
        font-size: 1.1rem;
    }

    .inicio-club-cta-card {
        margin-top: -18px;
        padding: 18px;
    }

    .inicio-club-cta-pill {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* =========================
   Modo oscuro SOLO Inicio
   ========================= */
html[data-theme="dark"] .seccion-hero {
    background:
        radial-gradient(circle at top left, rgba(248, 113, 113, 0.12), transparent 28%),
        linear-gradient(135deg, #450a0a 0%, #111827 44%, #020617 100%);
}

html[data-theme="dark"] .hero-kicker {
    background: rgba(15, 23, 42, 0.35);
    border-color: rgba(226, 232, 240, 0.16);
}

html[data-theme="dark"] .hero-metrica {
    background: rgba(15, 23, 42, 0.3);
    border-color: rgba(248, 250, 252, 0.12);
}

html[data-theme="dark"] .boton-principal {
    background: #f8fafc;
    color: #991b1b;
}

html[data-theme="dark"] .boton-principal:hover {
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .boton-secundario {
    background: rgba(15, 23, 42, 0.36);
    border-color: rgba(226, 232, 240, 0.42);
}

html[data-theme="dark"] .boton-secundario:hover {
    background: rgba(15, 23, 42, 0.62);
}

html[data-theme="dark"] .inicio-club-cta {
    background: linear-gradient(180deg, #111827 0%, #0b1120 100%);
}

html[data-theme="dark"] .inicio-club-cta-card {
    background:
        radial-gradient(circle at top right, rgba(248, 113, 113, 0.12), transparent 28%),
        linear-gradient(135deg, #1f2937 0%, #111827 54%, #0f172a 100%);
    border-color: #334155;
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .inicio-club-cta-copy h2,
html[data-theme="dark"] .inicio-club-cta-list li {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-club-cta-copy p:not(.inicio-kicker) {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-club-cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
    color: #fff;
    border-color: rgba(248, 113, 113, 0.28);
}

html[data-theme="dark"] .inicio-club-cta-button:hover {
    background: linear-gradient(135deg, #ef4444 0%, #fb923c 100%);
    color: #fff;
}

html[data-theme="dark"] .inicio-club-cta-secondary {
    border-color: rgba(248, 250, 252, 0.32);
    color: #f8fafc;
    background: rgba(15, 23, 42, 0.36);
}

html[data-theme="dark"] .inicio-club-cta-secondary:hover {
    background: rgba(15, 23, 42, 0.62);
}

html[data-theme="dark"] .inicio-club-cta-aside {
    background: rgba(15, 23, 42, 0.52);
    border-color: rgba(248, 250, 252, 0.1);
}

html[data-theme="dark"] .inicio-club-cta-pill {
    background: #b91c1c;
}

html[data-theme="dark"] .inicio-club-cta-list i {
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-club-stats {
    background: #0b1120;
}

html[data-theme="dark"] .inicio-club-stats-header h2,
html[data-theme="dark"] .inicio-club-stat-card h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-club-stats-header p:not(.inicio-kicker),
html[data-theme="dark"] .inicio-club-stat-card p {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-club-stat-card {
    background: linear-gradient(180deg, #1e293b 0%, #111827 100%);
    border-color: #334155;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .inicio-club-stat-card strong {
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-marcadores {
    background: #0b1120;
}

html[data-theme="dark"] .inicio-marcadores-header h2 {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-marcadores-header p {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-kicker,
html[data-theme="dark"] .inicio-score-eyebrow {
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-marcadores-header .inicio-kicker,
html[data-theme="dark"] .inicio-mini-clasificacion-header .inicio-kicker {
    color: #f87171;
}

html[data-theme="dark"] .inicio-score-card {
    background: linear-gradient(180deg, #1e293b 0%, #111827 100%);
    border-color: #334155;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .inicio-score-card h3,
html[data-theme="dark"] .inicio-score-team span,
html[data-theme="dark"] .inicio-score-empty h4 {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-score-team img {
    background: #0f172a;
    border-color: #475569;
}

html[data-theme="dark"] .inicio-score-center strong {
    background: #020617;
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-score-meta div,
html[data-theme="dark"] .inicio-score-empty p {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-score-meta i {
    color: #f87171;
}

html[data-theme="dark"] .inicio-score-badge.is-next {
    background: rgba(185, 28, 28, 0.2);
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-score-badge.is-result {
    background: rgba(22, 101, 52, 0.24);
    color: #86efac;
}

html[data-theme="dark"] .inicio-score-link {
    background: #b91c1c;
}

html[data-theme="dark"] .inicio-score-link:hover {
    background: #dc2626;
}

html[data-theme="dark"] .inicio-mini-clasificacion {
    background: #0b1120;
}

html[data-theme="dark"] .inicio-mini-clasificacion-header h2 {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-mini-clasificacion-header p:not(.inicio-kicker) {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-mini-clasificacion-link {
    background: #b91c1c;
}

html[data-theme="dark"] .inicio-mini-clasificacion-link:hover {
    background: #dc2626;
}

html[data-theme="dark"] .inicio-mini-clasificacion-card {
    background: linear-gradient(180deg, #1e293b 0%, #111827 100%);
    border-color: #334155;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .inicio-mini-clasificacion-table th {
    background: rgba(185, 28, 28, 0.14);
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-mini-clasificacion-table td {
    border-top-color: #334155;
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-mini-clasificacion-team img {
    background: #0f172a;
    border-color: #475569;
}

html[data-theme="dark"] .inicio-mini-clasificacion-table tr.is-club-row td {
    background: rgba(185, 28, 28, 0.14);
}

html[data-theme="dark"] .inicio-galeria-destacada {
    background: #0b1120;
}

html[data-theme="dark"] .inicio-galeria-header h2,
html[data-theme="dark"] .inicio-galeria-copy h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .inicio-galeria-header p:not(.inicio-kicker),
html[data-theme="dark"] .inicio-galeria-copy p {
    color: #cbd5e1;
}

html[data-theme="dark"] .inicio-galeria-card {
    background: linear-gradient(180deg, #1e293b 0%, #111827 100%);
    border-color: #334155;
    box-shadow: 0 18px 42px rgba(2, 6, 23, 0.45);
}

html[data-theme="dark"] .inicio-galeria-badge {
    background: rgba(2, 6, 23, 0.82);
}

html[data-theme="dark"] .inicio-galeria-type {
    background: rgba(185, 28, 28, 0.2);
    color: #fca5a5;
}

html[data-theme="dark"] .inicio-galeria-link {
    background: #b91c1c;
    color: #fff;
}

html[data-theme="dark"] .seccion-noticias {
    background: #0b1120;
}

html[data-theme="dark"] .seccion-noticias h2,
html[data-theme="dark"] .patrocinadores h2 {
    color: #f1f5f9;
}

html[data-theme="dark"] .subtitulo {
    color: #cbd5e1;
}

html[data-theme="dark"] .noticia-principal-home,
html[data-theme="dark"] .tarjeta-noticia {
    background: linear-gradient(180deg, #1e293b 0%, #111827 100%);
    border-color: #334155;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.5);
}

html[data-theme="dark"] .noticia-principal-home:hover,
html[data-theme="dark"] .tarjeta-noticia:hover {
    box-shadow: 0 20px 40px rgba(2, 6, 23, 0.7);
}

html[data-theme="dark"] .noticia-principal-media,
html[data-theme="dark"] .contenedor-img {
    background-color: #0f172a;
}

html[data-theme="dark"] .noticia-principal-meta .fecha,
html[data-theme="dark"] .info-tarjeta .fecha {
    color: #fca5a5;
}

html[data-theme="dark"] .noticia-autor-box {
    color: #f8fafc;
}

html[data-theme="dark"] .noticia-autor-icono {
    color: #f87171;
}

html[data-theme="dark"] .noticia-principal-copy h3,
html[data-theme="dark"] .info-tarjeta h3 {
    color: #f8fafc;
}

html[data-theme="dark"] .noticia-principal-copy p,
html[data-theme="dark"] .info-tarjeta p {
    color: #d1d5db;
}

html[data-theme="dark"] .noticia-principal-link,
html[data-theme="dark"] .info-tarjeta a {
    background: #b91c1c;
    color: #fff;
}

html[data-theme="dark"] .inicio-cta-link {
    background: #b91c1c;
}

html[data-theme="dark"] .inicio-cta-link:hover {
    background: #dc2626;
}

html[data-theme="dark"] .patrocinadores {
    background: #0b1120;
    color: #f8fafc;
}

html[data-theme="dark"] .patrocinadores .subtitulo {
    color: #e2e8f0;
}

html[data-theme="dark"] .patrocinador {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    border-color: #374151;
    color: #f8fafc;
}

html[data-theme="dark"] .patrocinador img {
    filter: grayscale(0.15) brightness(1.04);
    opacity: 0.95;
}

html[data-theme="dark"] .patrocinador:hover {
    border-color: #f87171;
    box-shadow: 0 24px 54px rgba(2, 6, 23, 0.65);
}

html[data-theme="dark"] .patrocinador::after {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), rgba(248, 113, 113, 0.18));
}

html[data-theme="dark"] body.pagina-inicio {
    background: #111827;
}
