/* ============================================================
   ASSETS/CSS/MAIN.CSS — FEDERACIÓN PARAGUAYA DE VÓLEY
   Versión: 9.0 — Diseño Claro y Moderno con Colores de Bandera PY
   ============================================================ */

/* ============================================================
   IMPORTACIÓN DE FUENTES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Antonio:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================
   VARIABLES CSS — Diseño Claro con Colores de Bandera PY
   ============================================================ */
:root {
    /* Colores institucionales — Basados en la bandera de Paraguay */
    --red:            #D52B1E;
    --red-dark:       #B82215;
    --red-light:      #E84A3A;
    --red-rgb:        213, 43, 30;

    --white:          #FFFFFF;
    --white-smoke:    #F5F6FA;
    --off-white:      #F0F1F6;

    --blue:           #003087;
    --blue-dark:      #002466;
    --blue-light:     #1A4A8A;
    --blue-rgb:       0, 48, 135;

    --gold:           #F5C518;
    --gold-dark:      #D4A800;
    --gold-light:     #FFE27A;
    --gold-rgb:       245, 197, 24;

    /* Colores de acento modernos */
    --accent-red:     #DC3545;
    --accent-blue:    #0D6EFD;
    --success:        #198754;
    --success-light:  #D1E7DD;
    --warning:        #FFC107;
    --danger:         #DC3545;

    /* Neutros — Base clara y limpia */
    --bg-primary:     #F8F9FC;
    --bg-secondary:   #FFFFFF;
    --bg-tertiary:    #F0F1F6;
    --bg-card:        #FFFFFF;
    --bg-card-hover:  #F8F9FC;
    --bg-surface:     #E8EBF2;
    --bg-dark:        #1A1A2E;

    /* Textos — Escala de grises legible */
    --text-primary:   #631313;
    --text-secondary: #a50000;
    --text-muted:     #d60000;
    --text-light:     #ff1f1f;
    --text-white:     #FFFFFF;

    /* Bordes — Suaves y definidos */
    --border:         rgba(0, 0, 0, 0.06);
    --border-md:      rgba(0, 0, 0, 0.10);
    --border-accent:  rgba(213, 43, 30, 0.15);

    /* Header — Oscuro por contraste */
    --header-bg:      #031234;
    --header-border:  rgba(255, 255, 255, 0.06);

    /* Header */
    --header-h:       78px;
    --header-h-mobile:62px;

    /* Sombras — Modernas y suaves */
    --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md:      0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg:      0 8px 32px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
    --shadow-xl:      0 20px 60px rgba(0, 0, 0, 0.10), 0 8px 16px rgba(0, 0, 0, 0.06);
    --shadow-hover:   0 12px 40px rgba(0, 0, 0, 0.10), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-glow-r:  0 0 30px rgba(213, 43, 30, 0.15), 0 0 60px rgba(213, 43, 30, 0.05);
    --shadow-glow-a:  0 0 30px rgba(245, 197, 24, 0.15), 0 0 60px rgba(245, 197, 24, 0.05);

    /* Transiciones */
    --t-fast:   0.15s ease;
    --t:        0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-slow:   0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t-bounce: 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    /* Tipografía */
    --font-display: 'Anton', 'DM Serif Display', Georgia, serif;
    --font-head:    'Antonio', 'Syne', system-ui, sans-serif;
    --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

    /* Bordes */
    --r-xs:   4px;
    --r-sm:   8px;
    --r-md:   12px;
    --r-lg:   18px;
    --r-xl:   24px;
    --r-2xl:  32px;
    --r-full: 9999px;

    /* Gradientes — Modernos y con colores de bandera */
    --grad-hero:    linear-gradient(135deg, #D52B1E 0%, #003087 50%, #D52B1E 100%);
    --grad-card:    linear-gradient(145deg, #FFFFFF 0%, #F8F9FC 100%);
    --grad-accent:  linear-gradient(135deg, var(--red) 0%, var(--red-light) 100%);
    --grad-gold:    linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    --grad-blue:    linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);

    /* Fondo base */
    --bg-body: var(--bg-primary);
    --bg-body-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(213, 43, 30, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 110%, rgba(0, 48, 135, 0.02) 0%, transparent 50%);
}

/* ============================================================
   RESET Y BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    background-image: var(--bg-body-image);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    padding-top: var(--header-h);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scrollbar */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--bg-primary); }
::-webkit-scrollbar-thumb  {
    background: linear-gradient(180deg, var(--red), var(--blue));
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* Selección */
::selection {
    background: rgba(213, 43, 30, 0.15);
    color: var(--text-primary);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: var(--r-sm);
}

/* ============================================================
   TIPOGRAFÍA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text-primary);
}

/* Títulos principales con Anton */
h1, .h1-style {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Subtítulos con Antonio */
h2, h3, .h2-style, .h3-style {
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem);   margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem);  margin-bottom: 0.7rem; }
h4 { font-size: 1.2rem;   margin-bottom: 0.5rem; }
h5 { font-size: 1rem;     margin-bottom: 0.4rem; }

p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--t-fast);
}

a:hover { color: var(--red); }

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

/* ============================================================
   HEADER Y NAVEGACIÓN — Oscuro por contraste
   ============================================================ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;

    background: var(--header-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    border-bottom: 1px solid var(--header-border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
    transition: background var(--t), box-shadow var(--t), border-color var(--t);

    isolation: isolate;
}

#header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--red) 20%,
        var(--gold) 50%,
        var(--blue) 80%,
        transparent 100%
    );
    opacity: 0.8;
    transition: opacity var(--t);
}

#header.scrolled {
    background: rgba(13, 13, 26, 0.98);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

#header.scrolled::after {
    opacity: 1;
}

#header::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
    transition: left 0.8s ease;
    z-index: -1;
}
#header:hover::before { left: 100%; }

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--t-bounce);
}
.header-logo:hover { transform: scale(1.03); }

.header-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
    transition: filter var(--t);
}
.header-logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(213, 43, 30, 0.3));
}

.header-logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-white);
    line-height: 1.15;
}
.header-logo-text span {
    display: block;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--white);
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.9;
}

/* Nav desktop */
nav.desktop {
    display: flex;
    align-items: center;
    gap: 2px;
}

nav.desktop a {
    position: relative;
    padding: 7px 16px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: var(--r-full);
    transition: color var(--t), background var(--t);
    overflow: hidden;
}

nav.desktop a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--r-full);
    opacity: 0;
    transition: opacity var(--t);
}

nav.desktop a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform var(--t-bounce);
}

nav.desktop a:hover,
nav.desktop a.active {
    color: var(--text-white);
}
nav.desktop a:hover::before,
nav.desktop a.active::before { opacity: 1; }
nav.desktop a:hover::after,
nav.desktop a.active::after  { transform: translateX(-50%) scaleX(1); }

.btn-login {
    background: var(--grad-accent) !important;
    color: var(--text-white) !important;
    border-radius: var(--r-full) !important;
    padding: 8px 22px !important;
    margin-left: 10px;
    font-weight: 700 !important;
    box-shadow: 0 2px 12px rgba(213, 43, 30, 0.3) !important;
    letter-spacing: 0.06em !important;
    transition: transform var(--t-bounce), box-shadow var(--t) !important;
}
.btn-login::after, .btn-login::before { display: none !important; }
.btn-login:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: var(--shadow-glow-r) !important;
    color: var(--text-white) !important;
}

/* Hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t), background var(--t);
    transform-origin: center;
}
.hamburger:hover span       { background: var(--gold); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menú móvil */
#mobile-menu {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0; bottom: 0;
    background: var(--header-bg);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 36px 20px 40px;
    transform: translateX(110%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    border-left: 1px solid var(--header-border);
}
#mobile-menu.open { transform: translateX(0); }

#mobile-menu a {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    padding: 13px 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-full);
    transition: color var(--t), background var(--t), border-color var(--t), transform var(--t-bounce);
}
#mobile-menu a:hover,
#mobile-menu a.active {
    color: var(--gold);
    background: rgba(245, 197, 24, 0.05);
    border-color: rgba(245, 197, 24, 0.15);
    transform: scale(1.02);
}
#mobile-menu a:last-child {
    background: var(--grad-accent);
    border-color: transparent;
    color: white;
    margin-top: 24px;
    box-shadow: var(--shadow-glow-r);
}
#mobile-menu a:last-child:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(213, 43, 30, 0.4);
}

/* ============================================================
   HERO / PAGE HERO — CON CARRUSEL DE IMÁGENES
   ============================================================ */
.page-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 20px;
    position: relative;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 26, 0.45);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 15% 50%, rgba(213, 43, 30, 0.12) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 85% 20%, rgba(0, 48, 135, 0.10) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 60% at center, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 20%, transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.slide-cat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.2);
    color: var(--gold);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: var(--r-full);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.slide-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.slide-title em {
    font-style: italic;
    color: var(--gold);
}

.slide-sub {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--grad-accent);
    color: var(--text-white);
    border: none;
    padding: 15px 38px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--t-bounce), box-shadow var(--t), gap var(--t);
    border-radius: var(--r-full);
    margin-top: 34px;
    box-shadow: 0 4px 20px rgba(213, 43, 30, 0.4);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.slide-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}
.slide-btn:hover::before { left: 100%; }
.slide-btn:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--shadow-glow-r);
    color: var(--text-white);
}

/* ============================================================
   RESPONSIVE — HERO
   ============================================================ */
@media (max-width: 768px) {
    .page-hero {
        min-height: 340px;
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 280px;
        padding: 40px 16px;
    }
}

/* ============================================================
   LAYOUT GENERAL
   ============================================================ */
.section-pad {
    padding: 90px 5%;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Título de sección */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    display: block;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 3px;
    margin: 18px auto 0;
}

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: transform var(--t-bounce), box-shadow var(--t), gap var(--t), background var(--t);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
}
.btn:hover::after { width: 280px; height: 280px; opacity: 1; }

.btn-primary {
    background: var(--grad-accent);
    color: var(--text-white);
    box-shadow: 0 2px 12px rgba(213, 43, 30, 0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    gap: 14px;
    box-shadow: var(--shadow-glow-r);
    color: var(--text-white);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--red);
    color: var(--red);
}
.btn-outline:hover {
    background: rgba(213, 43, 30, 0.05);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    gap: 14px;
    color: var(--red-dark);
}

.btn-ghost {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-md);
    color: var(--text-secondary);
}
.btn-ghost:hover {
    background: rgba(0, 0, 0, 0.06);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--grad-gold);
    color: var(--text-primary);
    font-weight: 800;
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-a);
    color: var(--text-primary);
}

/* ============================================================
   TARJETAS — NOTICIAS
   ============================================================ */
.noticias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.noticia-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: transform var(--t-bounce), box-shadow var(--t), border-color var(--t);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.noticia-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(213, 43, 30, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
    z-index: 0;
}

.noticia-card:hover::before { opacity: 1; }
.noticia-card:hover {
    transform: translateY(-8px);
    border-color: rgba(213, 43, 30, 0.15);
    box-shadow: var(--shadow-hover);
}

.noticia-card-img {
    height: 215px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.noticia-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
}

.noticia-card-img > * {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.noticia-card:hover .noticia-card-img > * { transform: scale(1.06); }

.noticia-card-img-placeholder {
    height: 215px;
    background: var(--grad-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.noticia-card:hover .noticia-card-img-placeholder { transform: scale(1.03); }
.noticia-card-img-placeholder img,
.noticia-card-img-placeholder svg {
    width: 52px;
    height: 52px;
    opacity: 0.3;
}

.noticia-card-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.noticia-cat {
    display: inline-block;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.15);
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
    transition: background var(--t), border-color var(--t);
}
.noticia-card:hover .noticia-cat {
    background: rgba(213, 43, 30, 0.08);
    border-color: rgba(213, 43, 30, 0.15);
    color: var(--red);
}

.noticia-card-body h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
    color: var(--text-primary);
    transition: color var(--t);
    letter-spacing: -0.01em;
}
.noticia-card:hover h3 { color: var(--red); }

.noticia-resumen {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.noticia-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.noticia-fecha {
    font-size: 0.68rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.noticia-link {
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    transition: color var(--t), letter-spacing var(--t);
}
.noticia-card:hover .noticia-link {
    color: var(--gold-dark);
    letter-spacing: 0.18em;
}

/* ============================================================
   TARJETAS — JUGADORES
   ============================================================ */
.jugadores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.jugador-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 28px 20px 22px;
    text-align: center;
    transition: transform var(--t-bounce), box-shadow var(--t), border-color var(--t);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.jugador-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.jugador-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(213, 43, 30, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--t);
    pointer-events: none;
}

.jugador-card:hover::before { transform: scaleX(1); }
.jugador-card:hover::after  { opacity: 1; }
.jugador-card:hover {
    transform: translateY(-7px);
    border-color: rgba(213, 43, 30, 0.12);
    box-shadow: var(--shadow-hover);
}

.jugador-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 2px solid var(--border);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.08);
    transition: transform var(--t-bounce), box-shadow var(--t), border-color var(--t);
    position: relative;
    z-index: 1;
}
.jugador-card:hover .jugador-avatar {
    transform: scale(1.06);
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.jugador-initials {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--text-white);
    background: var(--grad-blue);
    border: 2px solid var(--border);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.08);
    transition: transform var(--t-bounce), box-shadow var(--t);
    position: relative;
    z-index: 1;
}
.jugador-card:hover .jugador-initials {
    transform: scale(1.06);
    background: var(--grad-accent);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
}

.jugador-nombre {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.jugador-pos {
    font-size: 0.75rem;
    color: var(--gold-dark);
    margin-bottom: 6px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.jugador-club {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.jugador-numero {
    display: inline-block;
    background: rgba(0, 48, 135, 0.06);
    border: 1px solid rgba(0, 48, 135, 0.1);
    color: var(--blue);
    padding: 3px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.jugador-genero {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ver-perfil {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    transition: color var(--t), letter-spacing var(--t);
    position: relative;
    z-index: 1;
}
.jugador-card:hover .ver-perfil {
    color: var(--red);
    letter-spacing: 0.22em;
}

/* ============================================================
   TARJETAS — TORNEOS
   ============================================================ */
.torneos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.torneo-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 26px;
    transition: transform var(--t-bounce), box-shadow var(--t), border-color var(--t);
    cursor: pointer;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.torneo-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.torneo-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(213, 43, 30, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--t), transform var(--t-slow);
}

.torneo-card:hover::before { transform: scaleX(1); }
.torneo-card:hover::after  { opacity: 1; transform: scale(1.3); }
.torneo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 43, 30, 0.12);
    box-shadow: var(--shadow-hover);
}

.torneo-tipo {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.torneo-tipo.pista {
    background: rgba(0, 48, 135, 0.06);
    border: 1px solid rgba(0, 48, 135, 0.12);
    color: var(--blue);
}
.torneo-tipo.playa {
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.15);
    color: var(--gold-dark);
}

.torneo-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    transition: color var(--t);
    line-height: 1.3;
    letter-spacing: -0.01em;
    flex: 1;
}
.torneo-card:hover h3 { color: var(--red); }

.torneo-descripcion {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 16px;
}

.torneo-info {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: var(--text-light);
    margin: 12px 0 16px;
    align-items: center;
}

.torneo-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red);
    padding: 6px 0;
    transition: color var(--t), gap var(--t), letter-spacing var(--t);
    margin-top: auto;
}
.torneo-card:hover .btn-small {
    letter-spacing: 0.18em;
    color: var(--gold-dark);
    gap: 10px;
}

/* ============================================================
   TARJETA DE RESULTADOS
   ============================================================ */
.resultado-card {
    background: var(--bg-card);
    border-radius: var(--r-md);
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform var(--t-bounce), border-color var(--t), box-shadow var(--t);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.resultado-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--grad-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.resultado-card:hover::before { transform: scaleY(1); }
.resultado-card:hover {
    transform: translateX(6px);
    border-color: rgba(213, 43, 30, 0.12);
    box-shadow: var(--shadow-md);
}

.resultado-score {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--success);
    letter-spacing: 0.02em;
}

/* ============================================================
   FORMULARIOS
   ============================================================ */
.search-input,
.filter-select {
    background: var(--bg-card);
    border: 1px solid var(--border-md);
    border-radius: var(--r-full);
    padding: 11px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
    box-shadow: var(--shadow-sm);
}

.search-input::placeholder { color: var(--text-light); }

.search-input:focus,
.filter-select:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.06), 0 0 0 1px rgba(213, 43, 30, 0.15);
    background: var(--bg-card);
}

/* ============================================================
   COMPONENTES — TOOLBAR DE FILTROS
   ============================================================ */
.toolbar-filtros {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 45px;
}

.toolbar-filtros .search-input {
    flex: 1;
    min-width: 250px;
}

.toolbar-filtros .filter-select {
    min-width: 180px;
    cursor: pointer;
}

/* ============================================================
   COMPONENTES — ESTADO VACÍO
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    grid-column: 1 / -1;
    box-shadow: var(--shadow-sm);
}

.empty-state p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================================
   COMPONENTES — SKELETON DE CARGA
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-card-hover) 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
}

.skeleton-card {
    height: 340px;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.editor-link {
    display: none;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    border-top: 1px solid var(--border);
}

/* ============================================================
   PÁGINA — CONTACTO
   ============================================================ */
.contacto-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.info-card:first-child { padding-top: 0; }

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 48, 135, 0.06);
    border: 1px solid rgba(0, 48, 135, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-icon img { width: 22px; height: 22px; object-fit: contain; }

.info-card h3 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-section { margin-top: 32px; }
.social-section h3 {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon-custom {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: background var(--t-bounce), transform var(--t-bounce), border-color var(--t), color var(--t);
    box-shadow: var(--shadow-sm);
}
.social-icon-custom:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(213, 43, 30, 0.2);
}

.form-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-md);
    border-radius: var(--r-md);
    padding: 13px 18px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    resize: vertical;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
    box-shadow: var(--shadow-sm);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-light); }

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.06), 0 0 0 1px rgba(213, 43, 30, 0.15);
    background: var(--bg-card);
}

.btn-enviar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad-accent);
    color: var(--text-white);
    border: none;
    padding: 14px 30px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(213, 43, 30, 0.25);
    transition: transform var(--t-bounce), box-shadow var(--t);
    margin-top: 4px;
}
.btn-enviar:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow-r); }
.btn-enviar:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-result {
    display: none;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    font-size: 0.85rem;
}
.form-result.success {
    display: block;
    background: var(--success-light);
    border: 1px solid rgba(25, 135, 84, 0.2);
    color: var(--success);
}
.form-result.error {
    display: block;
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.15);
    color: var(--danger);
}

.map-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-card-title {
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
}
.map-card-title h3 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.map-card iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

/* ============================================================
   PÁGINA — GALERÍA
   ============================================================ */
.galeria-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.galeria-tab {
    background: var(--bg-card);
    border: 1px solid var(--border-md);
    color: var(--text-secondary);
    padding: 12px 30px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background var(--t), border-color var(--t), color var(--t), transform var(--t-bounce);
    box-shadow: var(--shadow-sm);
}
.galeria-tab:hover {
    border-color: rgba(213, 43, 30, 0.2);
    color: var(--text-primary);
}
.galeria-tab.active {
    background: var(--grad-accent);
    border-color: transparent;
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(213, 43, 30, 0.2);
}

.tab-content { display: none; }
.tab-content.active {
    display: block;
    animation: fadeIn 0.4s ease both;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.galeria-item {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background: var(--bg-card);
    transition: transform var(--t-bounce), border-color var(--t), box-shadow var(--t);
    box-shadow: var(--shadow-sm);
}
.galeria-item:hover {
    transform: translateY(-6px);
    border-color: rgba(213, 43, 30, 0.12);
    box-shadow: var(--shadow-hover);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.galeria-item:hover img { transform: scale(1.08); }

.galeria-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
}
.galeria-info h4 {
    font-family: var(--font-head);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.3;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}
.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(13, 13, 26, 0.95);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    animation: fadeIn 0.25s ease both;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-xl);
}

.lightbox-caption {
    margin-top: 18px;
    color: var(--text-white);
    font-size: 0.9rem;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    transition: color var(--t), transform var(--t-bounce);
}
.lightbox-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: linear-gradient(160deg, #031234 0%, #1A1A2E 100%);
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--red) 20%,
        var(--gold) 50%,
        var(--blue) 80%,
        transparent 100%
    );
    opacity: 0.6;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(213, 43, 30, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 5% 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(213, 43, 30, 0.2);
    transition: transform var(--t-bounce), box-shadow var(--t);
}

.footer-logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(213, 43, 30, 0.3);
}

.footer-logo-initials {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-white);
    letter-spacing: 0.04em;
}

.footer-logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-logo-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-white);
    line-height: 1.1;
    letter-spacing: 0.04em;
}

.footer-logo-subtitle {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1.2;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 340px;
}

.footer-country {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-flag {
    font-size: 0.8rem;
}

.footer-location {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.05em;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--red), var(--gold));
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--t), transform var(--t), padding-left var(--t);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--red);
    opacity: 0;
    transition: opacity var(--t), transform var(--t);
    transform: translateX(-6px);
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 4px;
    transform: translateX(2px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.85rem;
    transition: background var(--t), transform var(--t-bounce);
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(213, 43, 30, 0.15);
    transform: scale(1.05);
}

.footer-contact-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--t);
}

.footer-contact-link:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--t-bounce);
    letter-spacing: 0.02em;
}

.footer-social-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--text-white);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 24px rgba(213, 43, 30, 0.2);
}

.footer-newsletter-title {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-newsletter-input {
    flex: 1;
    min-width: 160px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r-full);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: rgba(213, 43, 30, 0.4);
    box-shadow: 0 0 0 3px rgba(213, 43, 30, 0.06);
    background: rgba(255, 255, 255, 0.06);
}

.footer-newsletter-btn {
    background: var(--grad-accent);
    border: none;
    padding: 10px 22px;
    border-radius: var(--r-full);
    color: var(--text-white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--t-bounce);
    box-shadow: 0 2px 12px rgba(213, 43, 30, 0.2);
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--shadow-glow-r);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.03em;
}

.footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.65rem;
    transition: color var(--t);
}

.footer-legal-link:hover {
    color: var(--gold);
}

/* ============================================================
   FOOTER — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 60px;
    }

    .footer-container {
        padding: 44px 4% 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo-title {
        font-size: 1.1rem;
    }

    .footer-logo-subtitle {
        font-size: 0.75rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
    }

    .footer-newsletter-input {
        min-width: auto;
    }

    .footer-newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-heading {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        align-items: center;
    }

    .footer-link::before {
        display: none;
    }

    .footer-link:hover {
        padding-left: 0;
    }
}

/* ============================================================
   PÁGINA — DETALLE DE NOTICIA
   ============================================================ */
.noticia-hero {
    background: var(--grad-hero);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px 50px;
    position: relative;
    overflow: hidden;
}

.noticia-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(213, 43, 30, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 48, 135, 0.06) 0%, transparent 55%);
    z-index: 0;
}

.noticia-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.hero-content p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
}

.noticia-detalle-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--r-xl);
    padding: 48px 52px 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.noticia-detalle-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
}

@keyframes shimmerBar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: var(--r-full);
    transition: all var(--t-bounce);
    margin-bottom: 28px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
}

.back-btn:hover {
    color: var(--red);
    background: rgba(213, 43, 30, 0.04);
    border-color: rgba(213, 43, 30, 0.15);
    transform: translateX(-4px);
    gap: 12px;
}

.noticia-imagen {
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--r-lg);
    margin-bottom: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform var(--t-slow), box-shadow var(--t);
}

.noticia-imagen:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.noticia-categoria {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 197, 24, 0.06);
    border: 1px solid rgba(245, 197, 24, 0.12);
    padding: 6px 16px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
    transition: all var(--t);
}

.noticia-categoria:hover {
    background: rgba(213, 43, 30, 0.06);
    border-color: rgba(213, 43, 30, 0.12);
    color: var(--red);
}

.noticia-titulo {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

.noticia-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--text-light);
}

.noticia-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-destacada {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 197, 24, 0.08);
    border: 1px solid rgba(245, 197, 24, 0.15);
    color: var(--gold-dark);
    padding: 2px 12px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge-destacada::before {
    content: '⭐';
    font-size: 0.55rem;
}

.noticia-cuerpo {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.noticia-cuerpo p {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.noticia-cuerpo p:last-child {
    margin-bottom: 0;
}

.noticia-cuerpo h2,
.noticia-cuerpo h3 {
    font-family: var(--font-head);
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 14px;
}

.noticia-cuerpo h2 {
    font-size: 1.4rem;
    font-weight: 600;
}

.noticia-cuerpo h3 {
    font-size: 1.15rem;
    font-weight: 600;
}

.noticia-cuerpo ul,
.noticia-cuerpo ol {
    margin: 16px 0 20px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.noticia-cuerpo li {
    margin-bottom: 6px;
}

.noticia-cuerpo blockquote {
    border-left: 3px solid var(--red);
    padding: 12px 20px;
    margin: 20px 0;
    background: rgba(213, 43, 30, 0.03);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-style: italic;
    color: var(--text-primary);
}

.noticia-cuerpo img {
    max-width: 100%;
    border-radius: var(--r-md);
    margin: 16px 0;
    border: 1px solid var(--border);
}

.noticia-cuerpo a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--t);
}

.noticia-cuerpo a:hover {
    color: var(--gold-dark);
}

.compartir-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.compartir-label {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.compartir-links {
    display: flex;
    gap: 10px;
}

.compartir-link {
    width: 38px;
    height: 38px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--t-bounce);
    letter-spacing: 0.02em;
}

.compartir-link:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(213, 43, 30, 0.2);
}

.compartir-link:nth-child(1):hover {
    background: #1877F2;
    border-color: #1877F2;
}
.compartir-link:nth-child(2):hover {
    background: #000000;
    border-color: #000000;
}
.compartir-link:nth-child(3):hover {
    background: #25D366;
    border-color: #25D366;
}

.nota-pie {
    margin-top: 16px;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}

.nota-pie p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* ============================================================
   RESPONSIVE — DETALLE DE NOTICIA
   ============================================================ */
@media (max-width: 1024px) {
    .noticia-detalle-container {
        padding: 36px 32px 32px;
    }
}

@media (max-width: 768px) {
    .noticia-hero {
        min-height: 220px;
        padding: 50px 20px 40px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .noticia-detalle-container {
        padding: 28px 18px 24px;
        border-radius: var(--r-lg);
        margin: 0 4px;
    }

    .noticia-titulo {
        font-size: 1.4rem;
    }

    .noticia-imagen {
        max-height: 280px;
        border-radius: var(--r-md);
    }

    .noticia-cuerpo {
        font-size: 0.92rem;
    }

    .noticia-cuerpo p {
        font-size: 0.92rem;
    }

    .compartir-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .compartir-links {
        width: 100%;
        justify-content: center;
    }

    .back-btn {
        font-size: 0.65rem;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .noticia-hero {
        min-height: 180px;
        padding: 40px 16px 30px;
    }

    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .noticia-detalle-container {
        padding: 20px 14px 20px;
        border-radius: var(--r-md);
    }

    .noticia-titulo {
        font-size: 1.2rem;
    }

    .noticia-imagen {
        max-height: 200px;
        border-radius: var(--r-sm);
        margin-bottom: 18px;
    }

    .noticia-categoria {
        font-size: 0.55rem;
        padding: 4px 12px;
    }

    .noticia-meta {
        font-size: 0.7rem;
        gap: 10px;
        padding-bottom: 14px;
        margin-bottom: 18px;
    }

    .noticia-cuerpo {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .noticia-cuerpo p {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .noticia-cuerpo h2 {
        font-size: 1.1rem;
    }

    .noticia-cuerpo h3 {
        font-size: 1rem;
    }

    .noticia-cuerpo ul,
    .noticia-cuerpo ol {
        margin-left: 16px;
    }

    .nota-pie {
        padding: 10px 14px;
    }

    .nota-pie p {
        font-size: 0.68rem;
    }

    .compartir-link {
        width: 34px;
        height: 34px;
        font-size: 0.55rem;
    }
}

.noticia-detalle-container:hover {
    border-color: rgba(213, 43, 30, 0.08);
    box-shadow: var(--shadow-lg);
    transition: border-color var(--t), box-shadow var(--t);
}

/* ============================================================
   PÁGINA — PERFIL DE JUGADOR
   ============================================================ */
.perfil-hero {
    background: var(--grad-hero);
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px 40px;
    position: relative;
    overflow: hidden;
}

.perfil-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(213, 43, 30, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 48, 135, 0.06) 0%, transparent 55%);
    z-index: 0;
}

.perfil-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    z-index: 0;
}

.perfil-hero .hero-content {
    position: relative;
    z-index: 1;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.perfil-hero .hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.perfil-hero .hero-content p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 300;
}

.perfil-container {
    max-width: 820px;
    margin: 0 auto;
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: 0.1s;
}

.perfil-card {
    background: var(--bg-card);
    border-radius: var(--r-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: border-color var(--t), box-shadow var(--t);
}

.perfil-card:hover {
    border-color: rgba(213, 43, 30, 0.08);
    box-shadow: var(--shadow-lg);
}

.perfil-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gold), var(--blue));
    background-size: 200% 100%;
    animation: shimmerBar 3s ease-in-out infinite;
}

.perfil-header {
    text-align: center;
    padding: 48px 32px 32px;
    position: relative;
}

.perfil-foto {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06);
    margin: 0 auto 24px;
    transition: transform var(--t-bounce), box-shadow var(--t);
}

.perfil-foto:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12), 0 12px 40px rgba(0, 0, 0, 0.08);
}

.perfil-foto-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-family: var(--font-display);
    color: var(--text-white);
    background: var(--grad-blue);
    border: 3px solid var(--border);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.06), 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: transform var(--t-bounce), box-shadow var(--t);
}

.perfil-foto-placeholder:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.12), 0 12px 40px rgba(0, 0, 0, 0.08);
}

.perfil-nombre {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.perfil-posicion {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.perfil-club {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.badge-estado {
    display: inline-flex;
    align-items: center;
    padding: 4px 16px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-activo {
    background: var(--success-light);
    border: 1px solid rgba(25, 135, 84, 0.15);
    color: var(--success);
}

.badge-lesionado {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.15);
    color: var(--warning);
}

.badge-inactivo {
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.12);
    color: var(--danger);
}

.perfil-body {
    padding: 0 32px 40px;
}

.datos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.dato-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    text-align: center;
    transition: border-color var(--t), background var(--t);
}

.dato-item:hover {
    border-color: rgba(213, 43, 30, 0.12);
    background: var(--bg-card-hover);
}

.dato-label {
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 4px;
}

.dato-valor {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.notas-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.notas-titulo {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--red);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notas-titulo::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.notas-texto {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.estadisticas-section {
    margin-bottom: 8px;
}

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

.estadistica-item {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 20px 16px;
    text-align: center;
    transition: border-color var(--t), transform var(--t-bounce);
}

.estadistica-item:hover {
    border-color: rgba(213, 43, 30, 0.12);
    transform: translateY(-2px);
}

.estadistica-valor {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold-dark);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.estadistica-label {
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-top: 4px;
}

/* ============================================================
   RESPONSIVE — PERFIL DE JUGADOR
   ============================================================ */
@media (max-width: 1024px) {
    .perfil-header {
        padding: 40px 24px 24px;
    }

    .perfil-body {
        padding: 0 24px 32px;
    }
}

@media (max-width: 768px) {
    .perfil-hero {
        min-height: 180px;
        padding: 40px 20px 30px;
    }

    .perfil-hero .hero-content h1 {
        font-size: 1.6rem;
    }

    .perfil-foto,
    .perfil-foto-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .perfil-nombre {
        font-size: 1.4rem;
    }

    .datos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .estadisticas-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .estadistica-valor {
        font-size: 1.3rem;
    }

    .perfil-header {
        padding: 32px 18px 20px;
    }

    .perfil-body {
        padding: 0 18px 28px;
    }
}

@media (max-width: 480px) {
    .perfil-hero {
        min-height: 150px;
        padding: 30px 16px 24px;
    }

    .perfil-hero .hero-content h1 {
        font-size: 1.3rem;
    }

    .perfil-hero .hero-content p {
        font-size: 0.8rem;
    }

    .perfil-foto,
    .perfil-foto-placeholder {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .perfil-nombre {
        font-size: 1.2rem;
    }

    .perfil-posicion {
        font-size: 0.75rem;
    }

    .datos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dato-item {
        padding: 10px 12px;
    }

    .dato-valor {
        font-size: 0.95rem;
    }

    .estadisticas-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }

    .estadistica-item {
        padding: 14px 10px;
    }

    .estadistica-valor {
        font-size: 1.1rem;
    }

    .perfil-header {
        padding: 24px 14px 16px;
    }

    .perfil-body {
        padding: 0 14px 20px;
    }

    .notas-texto {
        font-size: 0.82rem;
    }
}

/* ============================================================
   PÁGINA — DETALLE DE TORNEO
   ============================================================ */
.torneo-header-custom {
    background: var(--grad-hero);
    padding: 50px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.torneo-header-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(213, 43, 30, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 80% 30%, rgba(0, 48, 135, 0.06) 0%, transparent 55%);
    z-index: 0;
}

.torneo-header-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at center, black 20%, transparent 70%);
    z-index: 0;
}

.torneo-header-custom > * {
    position: relative;
    z-index: 1;
}

.torneo-tipo-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.torneo-tipo-badge.pista {
    background: rgba(0, 48, 135, 0.1);
    border: 1px solid rgba(0, 48, 135, 0.15);
    color: var(--text-white);
}

.torneo-tipo-badge.playa {
    background: rgba(245, 197, 24, 0.12);
    border: 1px solid rgba(245, 197, 24, 0.2);
    color: var(--gold);
}

.torneo-titulo {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.torneo-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.torneo-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tabs-torneo {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--t-bounce);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover {
    border-color: rgba(213, 43, 30, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--grad-accent);
    border-color: transparent;
    color: var(--text-white);
    box-shadow: 0 4px 16px rgba(213, 43, 30, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease both;
}

.tab-content.active {
    display: block;
}

.section-title-torneo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.partidos-lista {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partido-item {
    background: var(--bg-card);
    border-radius: var(--r-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border);
    transition: transform var(--t-bounce), border-color var(--t), box-shadow var(--t);
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.partido-item:hover {
    transform: translateX(4px);
    border-color: rgba(213, 43, 30, 0.12);
    box-shadow: var(--shadow-md);
}

.partido-equipos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 180px;
}

.partido-equipo {
    display: flex;
    flex-direction: column;
}

.partido-equipo-nombre {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.partido-equipo-vs {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partido-resultado {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
}

.partido-resultado-pendiente {
    color: var(--gold-dark);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.partido-resultado-jugado {
    color: var(--success);
}

.partido-fecha {
    font-size: 0.7rem;
    color: var(--text-light);
    white-space: nowrap;
}

.tabla-posiciones {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
    background: var(--bg-card);
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.tabla-posiciones thead {
    background: var(--bg-primary);
}

.tabla-posiciones th {
    padding: 12px 14px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
}

.tabla-posiciones td {
    padding: 11px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.tabla-posiciones tbody tr:last-child td {
    border-bottom: none;
}

.tabla-posiciones tbody tr:hover {
    background: var(--bg-primary);
}

.tabla-posiciones .equipo-cell {
    color: var(--text-primary);
    font-weight: 600;
}

.tabla-posiciones .puntos-cell {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

.tabla-posiciones .pos-1 {
    border-left: 3px solid var(--gold);
}

.tabla-posiciones .pos-2 {
    border-left: 3px solid var(--red-light);
}

.podio-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
    align-items: end;
}

.podio-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--bg-card);
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    transition: transform var(--t-bounce), box-shadow var(--t);
    box-shadow: var(--shadow-sm);
}

.podio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.podio-item .podio-medalla {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
}

.podio-item .podio-posicion {
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.podio-item .podio-equipo {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 4px 0;
}

.podio-item.podio-oro {
    border-color: var(--gold);
    background: rgba(245, 197, 24, 0.04);
}

.podio-item.podio-plata {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.04);
}

.podio-item.podio-bronce {
    border-color: #CD7F32;
    background: rgba(205, 127, 50, 0.04);
}

/* ============================================================
   RESPONSIVE — DETALLE DE TORNEO
   ============================================================ */
@media (max-width: 768px) {
    .torneo-header-custom {
        padding: 40px 16px 30px;
    }

    .torneo-titulo {
        font-size: 1.6rem;
    }

    .torneo-meta {
        gap: 12px;
        font-size: 0.75rem;
    }

    .tabs-torneo {
        gap: 6px;
        margin: 30px 0 20px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.6rem;
    }

    .partido-item {
        padding: 12px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .partido-equipos {
        justify-content: center;
        min-width: auto;
    }

    .partido-resultado {
        text-align: center;
    }

    .partido-fecha {
        text-align: center;
    }

    .tabla-posiciones {
        font-size: 0.75rem;
    }

    .tabla-posiciones th,
    .tabla-posiciones td {
        padding: 8px 10px;
    }

    .podio-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px;
    }

    .podio-item {
        padding: 14px 10px;
    }

    .podio-item .podio-medalla {
        font-size: 2rem;
    }

    .podio-item .podio-equipo {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .torneo-header-custom {
        padding: 30px 12px 24px;
    }

    .torneo-titulo {
        font-size: 1.3rem;
    }

    .torneo-meta {
        flex-direction: column;
        gap: 6px;
        font-size: 0.7rem;
    }

    .tabs-torneo {
        gap: 4px;
    }

    .tab-btn {
        padding: 6px 12px;
        font-size: 0.55rem;
    }

    .partido-equipo-nombre {
        font-size: 0.8rem;
    }

    .tabla-posiciones {
        font-size: 0.65rem;
    }

    .tabla-posiciones th,
    .tabla-posiciones td {
        padding: 6px 8px;
    }

    .tabla-posiciones .puntos-cell {
        font-size: 0.9rem;
    }

    .podio-container {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 280px;
    }

    .podio-item {
        padding: 12px 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .podio-item .podio-medalla {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .section-title-torneo {
        font-size: 1rem;
    }
}

/* ============================================================
   DIVIDER Y NAV
   ============================================================ */
.nav-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 8px;
}

.btn-register {
    background: rgba(255, 255, 255, 0.06) !important;
    color: var(--text-white) !important;
    border-radius: var(--r-full) !important;
    padding: 8px 22px !important;
    margin-left: 4px;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: transform var(--t-bounce), box-shadow var(--t), background var(--t) !important;
}
.btn-register::after, .btn-register::before { display: none !important; }
.btn-register:hover {
    transform: translateY(-2px) scale(1.03) !important;
    background: rgba(255, 255, 255, 0.10) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white) !important;
}

.btn-mobile-login {
    background: var(--grad-accent) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: var(--shadow-glow-r) !important;
    margin-top: 8px !important;
}
.btn-mobile-login:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 8px 30px rgba(213, 43, 30, 0.3) !important;
}

.btn-mobile-register {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}
.btn-mobile-register:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--text-white) !important;
}

/* ============================================================
   UTILIDADES
   ============================================================ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-family: var(--font-head);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.badge-success { background: var(--success-light);  border: 1px solid rgba(25, 135, 84, 0.15);  color: var(--success); }
.badge-danger  { background: rgba(220, 53, 69, 0.06);  border: 1px solid rgba(220, 53, 69, 0.12);  color: var(--danger); }
.badge-warning { background: rgba(255, 193, 7, 0.08); border: 1px solid rgba(255, 193, 7, 0.15); color: var(--warning); }
.badge-primary { background: rgba(0, 48, 135, 0.06);   border: 1px solid rgba(0, 48, 135, 0.1);   color: var(--blue); }

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-md), transparent);
    margin: 40px 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
}

.text-gradient {
    background: linear-gradient(135deg, var(--red), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(213, 43, 30, 0.2); }
    50%       { box-shadow: 0 0 0 10px rgba(213, 43, 30, 0); }
}

.animate-fade-up   { animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-fade-in   { animation: fadeIn 0.5s ease both; }
.animate-scale-in  { animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.animate-slide-left{ animation: slideInLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .section-pad { padding: 70px 4%; }

    nav.desktop a {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    .btn-login, .btn-register {
        padding: 6px 16px !important;
        font-size: 0.65rem !important;
    }
    .btn-login i, .btn-register i {
        font-size: 0.7rem;
    }
}

@media (max-width: 820px) {
    nav.desktop a span {
        display: none;
    }
    .btn-login, .btn-register {
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
    }
    .btn-login i, .btn-register i {
        font-size: 0.9rem;
        margin: 0;
    }
    .nav-divider {
        margin: 0 4px;
    }
}

@media (max-width: 768px) {
    body { padding-top: var(--header-h-mobile); }

    #header {
        height: var(--header-h-mobile);
        padding: 0 18px;
    }

    nav.desktop { display: none; }
    .hamburger  { display: flex; }
    .nav-divider { display: none; }

    .section-pad { padding: 54px 18px; }
    .section-title { margin-bottom: 40px; }

    .noticias-grid,
    .torneos-grid  { grid-template-columns: 1fr; }

    .jugadores-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .contacto-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-card iframe { height: 280px; }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .galeria-tab { padding: 10px 22px; font-size: 0.68rem; }

    .lightbox { padding: 20px; }
    .lightbox-close { top: 14px; right: 18px; font-size: 1.8rem; }

    .page-hero {
        min-height: 340px;
        padding: 50px 20px;
    }

    .slide-title  { font-size: 2rem; }
    .slide-sub    { font-size: 0.9rem; }
    .slide-btn    { padding: 13px 28px; font-size: 0.68rem; }

    .resultado-card { padding: 14px 16px; }
}

@media (max-width: 480px) {
    .header-logo-text span { display: none; }
    .header-logo-text { font-size: 1.25rem; }

    .slide-title { font-size: 1.7rem; }
    .section-title { font-size: 1.4rem; }

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

    .btn { padding: 10px 22px; font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
/* Estilos para la tabla de posiciones - colores sutiles en filas completas */
.tabla-posiciones tbody tr.pos-oro {
    background-color: rgba(212, 175, 55, 0.08) !important;
}

.tabla-posiciones tbody tr.pos-oro .equipo-cell {
    color: #b8960f;
    font-weight: 600;
}

.tabla-posiciones tbody tr.pos-plata {
    background-color: rgba(192, 192, 192, 0.06) !important;
}

.tabla-posiciones tbody tr.pos-plata .equipo-cell {
    color: #888;
    font-weight: 500;
}

.tabla-posiciones tbody tr.pos-eliminado {
    background-color: #ffffff !important;
    opacity: 0.65;
}

/* Efecto hover para todas las filas */
.tabla-posiciones tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

.tabla-posiciones tbody tr.pos-oro:hover {
    background-color: rgba(212, 175, 55, 0.15) !important;
}

.tabla-posiciones tbody tr.pos-plata:hover {
    background-color: rgba(192, 192, 192, 0.12) !important;
}

/* ============================================================
   FIN DEL ARCHIVO — v9.0
   ============================================================ */