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

body{
    font-family:"Segoe UI",Arial,sans-serif;
    color:#1f2937;
    background:#f5f7fb;
}

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

.container{
    width:92%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */

.site-header{
    background:rgba(255,255,255,.78);
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:.35s ease;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.site-header.scrolled{
    background:rgba(255,255,255,.92);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.nav-container{
    min-height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:72px;
    width:auto;
    display:block;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:22px;
}

.main-nav a{
    font-weight:600;
    color:#243043;
    transition:.3s;
    position:relative;
}

.main-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#0066b3;
    transition:.3s;
}

.main-nav a:hover{
    color:#0066b3;
}

.main-nav a:hover::after{
    width:100%;
}

.btn-nav{
    background:#0066b3;
    color:#fff !important;
    padding:11px 18px;
    border-radius:999px;
}

.btn-nav::after{
    display:none;
}

.menu-toggle{
    display:none;
    border:none;
    background:#003b73;
    color:white;
    font-size:24px;
    padding:8px 12px;
    border-radius:8px;
    cursor:pointer;
}

/* HERO */

.hero{
    min-height:720px;
    background:
    linear-gradient(120deg,rgba(0,25,55,.88),rgba(0,60,120,.72)),
    url("../img/hero-athletics.jpg");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at top right,rgba(255,183,3,.25),transparent 35%);
    pointer-events:none;
}

.hero::after{
    content:"";
    position:absolute;
    width:800px;
    height:800px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
    top:-300px;
    left:-250px;
    filter:blur(20px);
}

.hero-premium-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
    position:relative;
    z-index:2;
}

.hero-shape{
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    top:-250px;
    right:-180px;
    filter:blur(20px);
}

.hero-content{
    max-width:760px;
}

.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    font-weight:700;
}

.hero h1{
    font-size:clamp(58px,10vw,115px);
    line-height:.9;
    font-weight:900;
    letter-spacing:3px;
}

.hero p{
    margin-top:25px;
    font-size:22px;
    line-height:1.6;
    max-width:700px;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.btn-primary,
.btn-secondary,
.btn-primary-outline{
    padding:15px 26px;
    border-radius:999px;
    font-weight:800;
    display:inline-block;
    transition:.3s;
}

.btn-primary{
    background:#ffb703;
    color:#111827;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-primary-outline:hover{
    transform:translateY(-3px);
}

.btn-secondary{
    background:white;
    color:#003b73;
}

.btn-primary-outline{
    border:2px solid white;
    color:white;
}

.hero-stats{
    margin-top:45px;
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.hero-stats div{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    padding:18px 24px;
    border-radius:20px;
    min-width:130px;
}

.hero-stats strong{
    display:block;
    font-size:30px;
    font-weight:900;
}

.hero-stats span{
    color:#dbe7f5;
    font-size:14px;
}

.hero-glass-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(18px);
    padding:40px;
    border-radius:30px;
    color:white;
    box-shadow:0 25px 60px rgba(0,0,0,.22);
}

.hero-glass-card span{
    color:#ffb703;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:14px;
}

.hero-glass-card h3{
    font-size:34px;
    margin:16px 0;
    line-height:1.2;
}

.hero-glass-card p{
    color:#e5edf8;
    line-height:1.8;
    margin-bottom:24px;
}

.hero-glass-card a{
    color:#ffb703;
    font-weight:800;
}

/* FEATURES */

.features{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span,
.section-mini{
    color:#0066b3;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    margin-top:12px;
    font-size:38px;
    color:#102033;
}

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

.feature-card{
    background:#ffffff;
    padding:38px 30px;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s ease;
}

.feature-icon{
    font-size:42px;
    margin-bottom:20px;
}

.feature-card h3{
    font-size:24px;
    color:#003b73;
    margin-bottom:12px;
}

.feature-card p{
    color:#5f6b7a;
    line-height:1.7;
}

/* EVENTS */

.events-preview{
    padding:90px 0;
    background:#eef3f9;
}

.section-header-flex{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:45px;
    gap:20px;
}

.section-header-flex h2{
    font-size:40px;
    color:#102033;
    margin-top:10px;
}

.link-more{
    color:#0066b3;
    font-weight:800;
}

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

.event-card{
    background:white;
    border-radius:28px;
    padding:32px;
    display:flex;
    gap:25px;
    align-items:center;
    box-shadow:0 18px 45px rgba(0,0,0,.07);
    transition:.35s;
}

.event-date{
    min-width:90px;
    height:90px;
    border-radius:22px;
    background:#003b73;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.event-date strong{
    font-size:34px;
    line-height:1;
}

.event-date span{
    font-size:14px;
    letter-spacing:1px;
}

.event-card h3{
    color:#102033;
    margin-bottom:10px;
}

.event-card p{
    color:#667085;
}

/* NEWS */

.news-preview{
    padding:100px 0;
    background:white;
}

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

.news-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    transition:.35s;
}

.news-image{
    height:230px;
    background:
    linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),
    url("../img/noticias/taller-velocidad.png");
    background-size:cover;
    background-position:center;
}

.img-2{
    background:
    linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),
    url("../img/noticias/Epinal_francia.png");
    background-size:cover;
    background-position:center;
}

.img-3{
    background:
    linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2)),
    url("../img/noticias/enemigo_master.png");
    background-size:cover;
    background-position:center;
}

.news-content{
    padding:30px;
}

.news-content span{
    color:#0066b3;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
}

.news-content h3{
    margin:16px 0;
    color:#102033;
    font-size:24px;
    line-height:1.4;
}

.news-content p{
    color:#667085;
    line-height:1.8;
}

/* CLUBES AFILIADOS */

.clubs-carousel-section{
    padding:90px 0;
    background:#ffffff;
    overflow:hidden;
}

.clubs-carousel{
    width:100%;
    overflow:hidden;
    padding:10px 0 25px;
    position:relative;
}

.clubs-carousel::before,
.clubs-carousel::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.clubs-carousel::before{
    left:0;
    background:linear-gradient(to right,#ffffff,rgba(255,255,255,0));
}

.clubs-carousel::after{
    right:0;
    background:linear-gradient(to left,#ffffff,rgba(255,255,255,0));
}

.clubs-track{
    display:flex;
    align-items:stretch;
    width:max-content;
    animation:clubsMove 70s linear infinite;
    will-change:transform;
}

.clubs-carousel:hover .clubs-track{
    animation-play-state:paused;
}

.clubs-group{
    display:flex;
    align-items:stretch;
    gap:34px;
    padding-right:34px;
    flex-shrink:0;
}

.club-item{
    width:170px;
    min-width:170px;
    flex:0 0 170px;
    text-align:center;
    background:#ffffff;
    border:1px solid #edf1f6;
    border-radius:22px;
    padding:22px 14px 18px;
    box-shadow:0 14px 35px rgba(0,0,0,.06);
    transition:.35s ease;
}

.club-item img{
    width:170px;
    height:170px;
    object-fit:contain;
    display:block;
    margin:0 auto 14px;
}

.club-item p{
    font-size:14px;
    color:#333;
    line-height:1.3;
    margin:0;
}

@keyframes clubsMove{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* GALERÍA PREMIUM */

.gallery-section{
    padding:110px 0;
    background:#f7f9fc;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:22px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.gallery-item.large{
    grid-column:span 2;
    grid-row:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.gallery-item::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.45),transparent 45%);
}

.gallery-item:hover img{
    transform:scale(1.08);
}

/* CALENDARIO PREMIUM */

.calendar-premium{
    padding:110px 0;
    background:white;
}

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

.calendar-card{
    background:#ffffff;
    border-radius:30px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #eef2f7;
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.calendar-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:#0066b3;
}

.calendar-card.active::before{
    background:#ffb703;
}

.calendar-month{
    display:inline-block;
    background:#003b73;
    color:white;
    padding:8px 18px;
    border-radius:999px;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:20px;
}

.calendar-day{
    font-size:74px;
    font-weight:900;
    line-height:1;
    color:#102033;
    margin-bottom:22px;
}

.calendar-info span{
    color:#0066b3;
    font-weight:800;
    text-transform:uppercase;
    font-size:13px;
}

.calendar-info h3{
    margin:14px 0;
    font-size:28px;
    line-height:1.3;
    color:#102033;
}

.calendar-info p{
    color:#667085;
    line-height:1.7;
}

/* PARTNERS */

.partners{
    padding:90px 0;
    background:#081a2f;
    text-align:center;
    color:white;
}

.partners h2{
    margin:16px 0 45px;
    font-size:40px;
}

.partners-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:22px;
}

.partners-row div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.1);
    padding:18px 30px;
    border-radius:18px;
    font-weight:700;
}

/* FOOTER */

.site-footer{
    background:#081a2f;
    color:white;
    padding-top:60px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1.5fr;
    gap:35px;
}

.site-footer h3,
.site-footer h4{
    margin-bottom:15px;
}

.site-footer p,
.site-footer a{
    display:block;
    color:#cbd5e1;
    margin-bottom:9px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:40px;
    padding:20px;
    color:#94a3b8;
}

/* EFECTOS GENERALES */

.feature-card:hover,
.news-card:hover,
.event-card:hover,
.calendar-card:hover,
.club-item:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.12);
}

/* RESPONSIVE */

@media(max-width:1000px){
    .hero-premium-grid,
    .events-grid,
    .news-grid,
    .features-grid,
    .footer-grid,
    .calendar-grid{
        grid-template-columns:1fr;
    }

    .gallery-grid{
        grid-template-columns:1fr;
        grid-auto-rows:260px;
    }

    .gallery-item.large,
    .gallery-item.wide{
        grid-column:auto;
        grid-row:auto;
    }

    .section-header-flex{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:900px){
    .menu-toggle{
        display:block;
    }

    .main-nav{
        position:absolute;
        top:92px;
        left:0;
        right:0;
        background:white;
        flex-direction:column;
        align-items:flex-start;
        padding:25px;
        display:none;
        box-shadow:0 18px 35px rgba(0,0,0,.12);
    }

    .main-nav.active{
        display:flex;
    }

    .main-nav a::after{
        display:none;
    }

    .hero{
        min-height:650px;
    }

    .hero p{
        font-size:18px;
    }

    .hero-glass-card{
        padding:30px;
    }

    .hero-glass-card h3{
        font-size:28px;
    }
}

@media(max-width:768px){
    .clubs-track{
        animation-duration:55s;
    }

    .clubs-group{
        gap:22px;
        padding-right:22px;
    }

    .club-item{
        width:135px;
        min-width:135px;
        flex-basis:135px;
        padding:18px 10px 15px;
    }

    .club-item img{
        width:88px;
        height:88px;
    }

    .club-item p{
        font-size:12px;
    }
}

.single-news-hero{
    padding:110px 0;
    background:
    linear-gradient(120deg,rgba(0,35,75,.92),rgba(0,102,179,.78)),
    url("../img/hero-athletics.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
}

.single-news-hero span{
    color:#ffb703;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.single-news-hero h1{
    font-size:clamp(38px,6vw,68px);
    max-width:900px;
    margin:15px auto;
    line-height:1.1;
}

.single-news-hero p{
    font-size:18px;
    color:#dbe7f5;
}

.single-news-content{
    padding:90px 0;
    background:#f7f9fc;
}

.single-news-container{
    max-width:900px;
}

.single-news-container img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 55px rgba(0,0,0,.16);
    margin-bottom:45px;
}

.single-news-text{
    background:white;
    padding:45px;
    border-radius:28px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    margin-bottom:35px;
}

.single-news-text p{
    color:#394150;
    font-size:19px;
    line-height:1.9;
    margin-bottom:22px;
}

.news-page-hero{
    position:relative;
}

.featured-news-section{
    padding:90px 0;
    background:#f7f9fc;
}

.featured-news-card{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    background:white;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 25px 65px rgba(0,0,0,.12);
}

.featured-news-image{
    min-height:430px;
}

.featured-news-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.featured-news-content{
    padding:55px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-news-content span{
    color:#0066b3;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.featured-news-content h2{
    font-size:42px;
    line-height:1.15;
    margin:18px 0;
    color:#102033;
}

.featured-news-content p{
    color:#667085;
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

.featured-news-date{
    color:#94a3b8;
    font-weight:700;
    margin-bottom:30px;
}

.news-list-section{
    padding:90px 0;
    background:white;
}

@media(max-width:900px){
    .featured-news-card{
        grid-template-columns:1fr;
    }

    .featured-news-content{
        padding:35px;
    }

    .featured-news-content h2{
        font-size:32px;
    }

    .featured-news-image{
        min-height:280px;
    }
}

.single-news-premium-hero{
    min-height:480px;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    color:white;
    position:relative;
}

.single-news-hero-content{
    max-width:950px;
}

.single-news-hero-content span{
    color:#ffb703;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.single-news-hero-content h1{
    font-size:clamp(42px,6vw,76px);
    line-height:1.05;
    margin:18px 0;
}

.single-news-hero-content p{
    font-size:18px;
    color:#dbe7f5;
}

.single-news-premium-content{
    padding:90px 0;
    background:#f7f9fc;
}

.single-news-layout{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 320px;
    gap:40px;
    align-items:start;
}

.single-news-article{
    background:white;
    border-radius:32px;
    padding:28px;
    box-shadow:0 25px 65px rgba(0,0,0,.10);
}

.single-news-article img{
    width:100%;
    border-radius:26px;
    margin-bottom:35px;
}

.single-news-body{
    padding:10px 15px 30px;
}

.single-news-body p{
    color:#394150;
    font-size:19px;
    line-height:1.9;
    margin-bottom:24px;
}

.single-news-sidebar{
    background:#081a2f;
    color:white;
    border-radius:30px;
    padding:35px;
    position:sticky;
    top:120px;
    box-shadow:0 25px 65px rgba(0,0,0,.15);
}

.single-news-sidebar h3{
    font-size:28px;
    margin-bottom:15px;
}

.single-news-sidebar p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:25px;
}

.single-news-sidebar a{
    display:block;
    color:#ffb703;
    font-weight:800;
    margin-top:16px;
}

@media(max-width:900px){
    .single-news-layout{
        grid-template-columns:1fr;
    }

    .single-news-sidebar{
        position:static;
    }
}

.single-news-layout{
    max-width:1200px;
    display:grid !important;
    grid-template-columns:minmax(0, 780px) 320px !important;
    gap:40px;
    align-items:start;
}

.single-news-article img{
    max-height:520px;
    object-fit:cover;
}

.single-news-sidebar{
    display:block !important;
    min-height:260px;
}

@media(max-width:900px){
    .single-news-layout{
        grid-template-columns:1fr !important;
    }
}

.nosotros-hero {
    position: relative;
    min-height: 430px;
    background: linear-gradient(135deg, #001f3f, #0057b8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.nosotros-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,0,0,.35), transparent 40%);
}

.nosotros-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.28);
}

.nosotros-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 30px;
}

.nosotros-hero-content span {
    display: inline-block;
    background: #ffcc00;
    color: #002b5c;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.nosotros-hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.nosotros-hero-content p {
    font-size: 22px;
    font-weight: 500;
}

.nosotros-intro,
.nosotros-valores,
.nosotros-objetivo,
.nosotros-compromiso {
    padding: 80px 0;
}

.seccion-etiqueta {
    display: inline-block;
    color: #0057b8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.nosotros-intro h2,
.nosotros-valores h2,
.nosotros-objetivo h2,
.nosotros-compromiso h2,
.nosotros-final h2 {
    font-size: 40px;
    font-weight: 900;
    color: #111;
    margin-bottom: 22px;
}

.nosotros-intro p,
.nosotros-objetivo p,
.nosotros-compromiso p,
.nosotros-final p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.nosotros-card-destacada {
    background: #002b5c;
    color: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.nosotros-card-destacada h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 18px;
}

.nosotros-card-destacada p {
    color: #fff;
    font-size: 19px;
}

.nosotros-valores {
    background: #f5f8ff;
}

.valor-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: all .3s ease;
}

.valor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.valor-icono {
    font-size: 48px;
    margin-bottom: 15px;
}

.valor-card h3 {
    font-size: 26px;
    font-weight: 900;
    color: #0057b8;
    margin-bottom: 14px;
}

.valor-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.objetivo-box {
    background: linear-gradient(135deg, #0057b8, #002b5c);
    color: #fff;
    padding: 55px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.objetivo-box h2,
.objetivo-box p {
    color: #fff;
}

.lista-impacto {
    background: #fff;
    border-left: 7px solid #ffcc00;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
}

.lista-impacto p {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.nosotros-final {
    padding: 90px 0;
    background: #111;
    color: #fff;
}

.nosotros-final h2,
.nosotros-final p {
    color: #fff;
}

.btn-nosotros {
    display: inline-block;
    margin-top: 25px;
    background: #ffcc00;
    color: #002b5c;
    padding: 15px 34px;
    border-radius: 40px;
    font-weight: 900;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-nosotros:hover {
    background: #fff;
    color: #002b5c;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .nosotros-hero-content h1 {
        font-size: 36px;
    }

    .nosotros-hero-content p {
        font-size: 18px;
    }

    .nosotros-intro,
    .nosotros-valores,
    .nosotros-objetivo,
    .nosotros-compromiso {
        padding: 50px 0;
    }

    .nosotros-intro h2,
    .nosotros-valores h2,
    .nosotros-objetivo h2,
    .nosotros-compromiso h2,
    .nosotros-final h2 {
        font-size: 30px;
    }

    .objetivo-box,
    .nosotros-card-destacada {
        padding: 30px;
    }
}

.noticias-hero {
    position: relative;
    min-height: 380px;
    background: linear-gradient(135deg, #001f3f, #0057b8);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.noticias-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,0,0,.45), transparent 45%);
}

.noticias-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.noticias-hero .container {
    position: relative;
    z-index: 2;
}

.noticias-hero span {
    display: inline-block;
    background: #ffcc00;
    color: #002b5c;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.noticias-hero h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 15px;
}

.noticias-hero p {
    max-width: 720px;
    font-size: 21px;
    line-height: 1.6;
}

.noticias-page {
    padding: 80px 0;
    background: #f4f7fb;
}

.noticias-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.noticias-heading span {
    color: #0057b8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.noticias-heading h2 {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin: 12px 0;
}

.noticias-heading p {
    font-size: 18px;
    color: #555;
}

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

.noticia-card-premium {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0,0,0,.10);
    transition: all .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticia-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0,0,0,.18);
}

.noticia-card-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.noticia-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.noticia-card-premium:hover .noticia-card-img img {
    transform: scale(1.08);
}

.noticia-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
}

.noticia-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    background: #ffcc00;
    color: #002b5c;
    padding: 7px 15px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1px;
}

.noticia-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.noticia-card-fecha {
    display: inline-block;
    color: #0057b8;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.noticia-card-body h3 {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.25;
    color: #111;
    margin-bottom: 14px;
}

.noticia-card-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
    flex: 1;
}

.noticia-card-btn {
    display: inline-block;
    width: fit-content;
    background: #0057b8;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 900;
    transition: all .3s ease;
}

.noticia-card-btn:hover {
    background: #002b5c;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .noticias-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .noticias-hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .noticias-hero {
        min-height: 320px;
        text-align: center;
    }

    .noticias-hero h1 {
        font-size: 38px;
    }

    .noticias-hero p {
        font-size: 18px;
    }

    .noticias-page {
        padding: 55px 0;
    }

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

    .noticias-heading h2 {
        font-size: 32px;
    }
}

.records-hero {
    position: relative;
    min-height: 390px;
    background: linear-gradient(135deg, #001f3f, #0057b8);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.records-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,0,0,.45), transparent 45%);
}

.records-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.25);
}

.records-hero .container {
    position: relative;
    z-index: 2;
}

.records-hero span,
.records-heading span {
    display: inline-block;
    background: #ffcc00;
    color: #002b5c;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.records-hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 15px;
}

.records-hero p {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.6;
}

.records-resumen {
    margin-top: -65px;
    position: relative;
    z-index: 5;
}

.records-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
    border-bottom: 6px solid #0057b8;
    height: 100%;
}

.records-stat-card small {
    display: block;
    color: #667085;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.records-stat-card strong {
    display: block;
    font-size: 42px;
    line-height: 1;
    font-weight: 900;
    color: #111;
    margin: 10px 0 6px;
}

.records-stat-card span {
    color: #0057b8;
    font-weight: 800;
}

.records-stat-card.mujer { border-bottom-color: #d63384; }
.records-stat-card.hombre { border-bottom-color: #0057b8; }
.records-stat-card.relevo { border-bottom-color: #198754; }

.records-page {
    padding: 85px 0;
    background: #f4f7fb;
}

.records-heading {
    max-width: 800px;
    margin: 0 auto 40px;
}

.records-heading span {
    background: #0057b8;
    color: #fff;
}

.records-heading h2 {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
}

.records-heading p {
    font-size: 18px;
    color: #555;
}

.records-filter-box,
.records-table-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 15px 38px rgba(0,0,0,.10);
}

.records-filter-box {
    margin-bottom: 28px;
}

.records-filter-box .form-label {
    font-weight: 900;
    color: #002b5c;
}

.records-filter-box .form-select {
    border-radius: 14px;
    padding: 12px 15px;
    border: 1px solid #d9e3f0;
}

.records-table-card table thead th {
    background: #002b5c !important;
    color: #fff !important;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: none !important;
}

.records-table-card table tbody td {
    font-size: 15px;
    color: #333;
    vertical-align: middle;
}

.records-table-card table tbody tr:hover {
    background: #f0f6ff;
}

.rama-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
}

.rama-badge.mujeres { background: #d63384; }
.rama-badge.hombres { background: #0057b8; }
.rama-badge.relevos { background: #198754; }

.marca-record {
    color: #002b5c;
    font-size: 16px;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border-radius: 12px;
    border: 1px solid #d9e3f0;
    padding: 7px 10px;
}

.page-link {
    color: #0057b8;
    border-radius: 10px !important;
    margin: 0 2px;
}

.active > .page-link,
.page-link.active {
    background: #0057b8;
    border-color: #0057b8;
}

@media (max-width: 768px) {
    .records-hero {
        min-height: 330px;
        text-align: center;
    }

    .records-hero h1 {
        font-size: 36px;
    }

    .records-hero p {
        font-size: 18px;
    }

    .records-resumen {
        margin-top: -35px;
    }

    .records-page {
        padding: 55px 0;
    }

    .records-heading h2 {
        font-size: 32px;
    }

    .records-filter-box,
    .records-table-card {
        padding: 18px;
        border-radius: 18px;
    }
}


.contacto-premium {
    position: relative;
    min-height: 100vh;
    padding: 90px 0 70px;
    overflow: hidden;
    color: #fff;
}

.contacto-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/contacto-asavur.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contacto-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,35,80,.96) 0%, rgba(0,61,130,.78) 38%, rgba(0,0,0,.18) 100%);
    z-index: 2;
}

.contacto-contenido {
    position: relative;
    z-index: 3;
}

.contacto-hero-text {
    max-width: 560px;
    margin-bottom: 45px;
}

.contacto-hero-text span {
    display: inline-block;
    color: #ffcc00;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contacto-hero-text h1 {
    font-size: 68px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.linea-contacto {
    width: 85px;
    height: 5px;
    background: #ffcc00;
    margin: 18px 0 28px;
    border-radius: 20px;
}

.contacto-hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
}

.contact-card {
    background: rgba(255,255,255,.96);
    color: #082b5f;
    border-radius: 22px;
    padding: 32px 22px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: #002b5c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.contact-card a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.contact-card a:hover {
    color: #0057b8;
}

.contacto-info-box {
    background: rgba(0,43,92,.78);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 34px;
    color: #ffcc00;
}

.info-item h4 {
    color: #ffcc00;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-item p {
    color: #fff;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
}

.contacto-frase {
    margin-top: 28px;
    font-size: 26px;
    font-style: italic;
    color: #fff;
}

.contacto-frase p {
    margin-bottom: 0;
}

.contacto-frase strong {
    color: #ffcc00;
    font-size: 30px;
}

.contacto-form-box {
    background: rgba(255,255,255,.97);
    color: #082b5f;
    border-radius: 24px;
    padding: 38px;
    height: 100%;
    box-shadow: 0 20px 45px rgba(0,0,0,.22);
}

.contacto-form-box h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #002b5c;
}

.contacto-form-box .form-control {
    border-radius: 12px;
    border: 1px solid #d8d8d8;
    padding: 14px 16px;
    font-size: 16px;
}

.contacto-form-box .form-control:focus {
    border-color: #0057b8;
    box-shadow: 0 0 0 .2rem rgba(0,87,184,.15);
}

.btn-contacto {
    display: block;
    margin: 10px auto 0;
    background: #002b5c;
    color: #fff;
    border: none;
    padding: 14px 34px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all .3s ease;
}

.btn-contacto:hover {
    background: #0057b8;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .contacto-premium {
        padding: 65px 0 45px;
    }

    .contacto-overlay {
        background: linear-gradient(180deg, rgba(0,35,80,.96), rgba(0,43,92,.88));
    }

    .contacto-hero-text {
        text-align: center;
        margin: 0 auto 35px;
    }

    .contacto-hero-text h1 {
        font-size: 44px;
    }

    .contacto-hero-text p {
        font-size: 18px;
    }

    .linea-contacto {
        margin-left: auto;
        margin-right: auto;
    }

    .contacto-form-box,
    .contacto-info-box {
        padding: 26px;
    }

    .contacto-frase {
        text-align: center;
        font-size: 22px;
    }

    .contacto-frase strong {
        font-size: 25px;
    }
}


.contacto-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 45px 0 30px;
}

.contact-card {
    background: rgba(255,255,255,.96);
    color: #082b5f;
    border-radius: 22px;
    padding: 32px 22px;
    text-align: center;
    min-height: 210px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
    transition: all .3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.28);
}

.contact-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 18px;
    background: #002b5c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 17px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: #002b5c;
}

.contact-card a {
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    word-break: break-word;
}

.contacto-form-box input,
.contacto-form-box textarea {
    width: 100%;
    display: block;
}

@media (max-width: 992px) {
    .contacto-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contacto-cards-grid {
        grid-template-columns: 1fr;
    }
}

.contacto-bottom-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin-top:40px;
    align-items:start;
}

.contacto-info-col,
.contacto-form-col{
    width:100%;
}

.contacto-info-box{
    height:100%;
}

.contacto-form-box{
    height:100%;
}

@media(max-width:992px){

    .contacto-bottom-grid{
        grid-template-columns:1fr;
    }

}

.resultados-hero {
    position: relative;
    min-height: 430px;
    background: linear-gradient(135deg, #001f3f, #0057b8);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.resultados-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,0,0,.45), transparent 45%);
}

.resultados-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,31,63,.95), rgba(0,87,184,.70));
}

.resultados-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.resultados-hero-content span,
.resultados-section-title span,
.resultados-evento-header span {
    display: inline-block;
    color: #ffcc00;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.resultados-hero-content h1 {
    font-size: 62px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 18px;
}

.resultados-hero-content p {
    font-size: 21px;
    line-height: 1.6;
    max-width: 730px;
}

.btn-resultados-hero {
    display: inline-block;
    margin-top: 22px;
    background: #ffcc00;
    color: #002b5c;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 900;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-resultados-hero:hover {
    background: #fff;
    color: #002b5c;
    transform: translateY(-3px);
}

.resultados-resumen {
    background: #f4f7fb;
    padding: 0 0 35px;
}

.resultados-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    transform: translateY(-45px);
    position: relative;
    z-index: 4;
}

.resultado-stat-card {
    background: #fff;
    border-radius: 24px;
    padding: 28px 22px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

.resultado-stat-card span {
    font-size: 38px;
    display: block;
    margin-bottom: 10px;
}

.resultado-stat-card h3 {
    font-size: 36px;
    font-weight: 900;
    color: #0057b8;
    margin: 0;
}

.resultado-stat-card p {
    margin: 5px 0 0;
    color: #555;
    font-weight: 700;
}

.resultados-eventos-section,
.resultados-tabla-section {
    padding: 70px 0;
    background: #f4f7fb;
}

.resultados-tabla-section {
    padding-top: 30px;
}

.resultados-section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.resultados-section-title h2,
.resultados-evento-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin-bottom: 12px;
}

.resultados-section-title p,
.resultados-evento-header p {
    font-size: 18px;
    color: #555;
}

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

.evento-card-resultados {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    transition: all .3s ease;
    border: 2px solid transparent;
}

.evento-card-resultados:hover,
.evento-card-resultados.evento-activo {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0,0,0,.17);
    border-color: #ffcc00;
}

.evento-card-resultados.evento-proximo {
    opacity: .88;
}

.evento-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.evento-anio,
.evento-estado {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
}

.evento-anio {
    background: #002b5c;
    color: #fff;
}

.evento-estado {
    background: #ffcc00;
    color: #002b5c;
}

.evento-card-resultados h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    min-height: 60px;
}

.evento-meta p {
    margin: 7px 0;
    color: #555;
    font-weight: 600;
}

.evento-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0;
}

.evento-mini-stats div {
    background: #f4f7fb;
    border-radius: 15px;
    padding: 14px 8px;
    text-align: center;
}

.evento-mini-stats strong {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: #0057b8;
}

.evento-mini-stats span {
    display: block;
    font-size: 13px;
    color: #555;
    font-weight: 700;
}

.btn-evento-resultados {
    display: inline-block;
    background: #0057b8;
    color: #fff;
    text-decoration: none;
    padding: 12px 26px;
    border-radius: 40px;
    font-weight: 900;
    transition: all .3s ease;
}

.btn-evento-resultados:hover {
    background: #002b5c;
    color: #fff;
    transform: translateY(-3px);
}

.btn-evento-resultados.disabled {
    background: #d9d9d9;
    color: #555;
}

.resultados-evento-header {
    background: #fff;
    border-radius: 26px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
    margin-bottom: 28px;
}

.resultados-evento-total {
    min-width: 140px;
    background: linear-gradient(135deg, #0057b8, #002b5c);
    color: #fff;
    border-radius: 22px;
    padding: 22px;
    text-align: center;
}

.resultados-evento-total strong {
    display: block;
    font-size: 38px;
    font-weight: 900;
}

.resultados-evento-total span {
    color: #fff;
    margin: 0;
}

.filtros-resultados-premium {
    background: #fff;
    border-radius: 24px;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 14px 35px rgba(0,0,0,.09);
    margin-bottom: 26px;
}

.filtros-resultados-premium label {
    font-weight: 900;
    color: #002b5c;
    margin-bottom: 8px;
}

.tabla-resultados-card {
    background: #fff;
    border-radius: 26px;
    padding: 26px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
    overflow: hidden;
}

#tablaResultados thead th {
    background: #002b5c;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.marca-badge {
    display: inline-block;
    background: #ffcc00;
    color: #002b5c;
    border-radius: 30px;
    padding: 5px 12px;
    font-weight: 900;
    min-width: 55px;
    text-align: center;
}

.resultados-proximamente-box {
    background: #fff;
    border-radius: 26px;
    padding: 50px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

.resultados-proximamente-box h3 {
    font-weight: 900;
    color: #002b5c;
    font-size: 32px;
}

.resultados-proximamente-box p {
    color: #555;
    font-size: 18px;
}

@media (max-width: 992px) {
    .resultados-stats-grid,
    .resultados-eventos-grid,
    .filtros-resultados-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultados-hero-content h1 {
        font-size: 46px;
    }

    .resultados-evento-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .resultados-hero {
        min-height: 360px;
        text-align: center;
    }

    .resultados-hero-content h1 {
        font-size: 36px;
    }

    .resultados-hero-content p {
        font-size: 18px;
    }

    .resultados-stats-grid,
    .resultados-eventos-grid,
    .filtros-resultados-premium {
        grid-template-columns: 1fr;
    }

    .resultados-stats-grid {
        transform: translateY(-25px);
    }

    .resultados-section-title h2,
    .resultados-evento-header h2 {
        font-size: 30px;
    }

    .tabla-resultados-card,
    .resultados-evento-header {
        padding: 18px;
    }
}

.resultados-table-box {
    overflow-x: auto;
}

#tablaResultados {
    width: 100% !important;
    border-collapse: collapse !important;
}

#tablaResultados thead th {
    background: #002b5c !important;
    color: #fff !important;
    padding: 14px 12px !important;
    font-size: 14px;
    text-transform: uppercase;
    border: none !important;
}

#tablaResultados tbody td {
    padding: 13px 12px !important;
    vertical-align: middle;
    border: none !important;
}

#tablaResultados tbody tr:nth-child(even) {
    background: #f1f4f8 !important;
}

#tablaResultados tbody tr:hover {
    background: #e7f0ff !important;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 18px;
}

.dataTables_wrapper .dataTables_filter input,
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #ccd6e0;
    border-radius: 12px;
    padding: 8px 12px;
}

.dataTables_wrapper .dataTables_info {
    margin-top: 18px;
    font-weight: 600;
    color: #333;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 18px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 10px !important;
    padding: 8px 12px !important;
    margin: 0 3px !important;
    border: none !important;
    background: #f0f3f8 !important;
    color: #002b5c !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0057b8 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #002b5c !important;
    color: #fff !important;
}


/* =========================================================
   RESULTADOS ASAVUR - TOQUE PREMIUM FINAL
========================================================= */

.filtros-resultados {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: #ffffff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    margin-bottom: 32px;
}

.filtro-item {
    position: relative;
}

.filtro-item label {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: #002b5c;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 10px;
}

.filtro-item select {
    width: 100%;
    height: 54px;
    border: 2px solid #dce6f2;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    color: #1d2b3a;
    font-size: 15px;
    font-weight: 700;
    padding: 0 18px;
    outline: none;
    cursor: pointer;
    transition: all .25s ease;
}

.filtro-item select:hover {
    border-color: #0057b8;
    box-shadow: 0 8px 20px rgba(0,87,184,.12);
}

.filtro-item select:focus {
    border-color: #0057b8;
    box-shadow: 0 0 0 .22rem rgba(0,87,184,.16);
}

/* Caja general de tabla */
.resultados-table-box {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,.10);
    overflow-x: auto;
}

/* Controles DataTable */
.dataTables_wrapper {
    color: #1d2b3a;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter {
    margin-bottom: 22px;
    font-weight: 700;
    color: #002b5c;
}

.dataTables_wrapper .dataTables_length select {
    height: 42px;
    border: 2px solid #dce6f2;
    border-radius: 14px;
    padding: 0 12px;
    font-weight: 700;
    color: #002b5c;
    background: #fff;
}

.dataTables_wrapper .dataTables_filter input {
    height: 42px;
    min-width: 240px;
    border: 2px solid #dce6f2;
    border-radius: 14px;
    padding: 0 16px;
    font-weight: 600;
    margin-left: 10px;
    outline: none;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #0057b8;
    box-shadow: 0 0 0 .2rem rgba(0,87,184,.14);
}

/* Tabla premium */
#tablaResultados {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 8px !important;
}

#tablaResultados thead th {
    background: #002b5c !important;
    color: #ffffff !important;
    padding: 15px 14px !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
    border: none !important;
    white-space: nowrap;
}

#tablaResultados thead th:first-child {
    border-radius: 14px 0 0 14px;
}

#tablaResultados thead th:last-child {
    border-radius: 0 14px 14px 0;
}

#tablaResultados tbody tr {
    background: #f7faff !important;
    box-shadow: 0 8px 18px rgba(0,0,0,.04);
    transition: all .25s ease;
}

#tablaResultados tbody tr:hover {
    background: #eaf3ff !important;
    transform: scale(1.003);
}

#tablaResultados tbody td {
    padding: 15px 14px !important;
    border: none !important;
    vertical-align: middle;
    font-size: 15px;
    color: #1d2b3a;
}

#tablaResultados tbody td:first-child {
    border-radius: 14px 0 0 14px;
    font-weight: 900;
    color: #002b5c;
}

#tablaResultados tbody td:last-child {
    border-radius: 0 14px 14px 0;
}

#tablaResultados tbody td:nth-child(2) {
    font-weight: 900;
    color: #001f3f;
}

/* Marca destacada */
#tablaResultados tbody td:nth-child(8) {
    font-weight: 900;
    color: #002b5c;
}

#tablaResultados tbody td:nth-child(8)::before {
    content: "⏱ ";
}

/* Posiciones tipo podio */
#tablaResultados tbody td:first-child {
    text-align: center;
}

#tablaResultados tbody tr td:first-child {
    background: rgba(0,87,184,.08);
}

#tablaResultados tbody tr:nth-child(1) td:first-child {
    background: #ffcc00;
    color: #002b5c;
}

#tablaResultados tbody tr:nth-child(2) td:first-child {
    background: #d9dde3;
    color: #002b5c;
}

#tablaResultados tbody tr:nth-child(3) td:first-child {
    background: #d79b54;
    color: #fff;
}

/* Info y paginador */
.dataTables_wrapper .dataTables_info {
    margin-top: 22px;
    font-weight: 700;
    color: #4a5565;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 22px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 12px !important;
    padding: 9px 14px !important;
    margin: 0 4px !important;
    border: none !important;
    background: #eef3f9 !important;
    color: #002b5c !important;
    font-weight: 900 !important;
    transition: all .25s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0057b8 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #002b5c !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Cards del evento seleccionado */
.resultados-evento-header {
    background: #ffffff;
    border-radius: 28px;
    padding: 34px;
    margin-bottom: 28px;
    box-shadow: 0 22px 55px rgba(0,0,0,.09);
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

.resultados-evento-header span {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resultados-evento-header h2 {
    font-size: 36px;
    font-weight: 900;
    color: #050505;
    margin: 8px 0 14px;
}

.resultados-evento-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: #334155;
    font-size: 16px;
}

.resultados-evento-total {
    background: linear-gradient(135deg, #0057b8, #002b5c);
    color: #fff;
    min-width: 150px;
    min-height: 120px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resultados-evento-total strong {
    font-size: 42px;
    line-height: 1;
}

.resultados-evento-total small {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .filtros-resultados {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultados-evento-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .resultados-evento-total {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .filtros-resultados {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .resultados-table-box {
        padding: 18px;
    }

    .dataTables_wrapper .dataTables_filter input {
        min-width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }

    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_length {
        text-align: left;
    }

    .resultados-evento-header {
        padding: 24px;
    }

    .resultados-evento-header h2 {
        font-size: 28px;
    }
}

/* FORZAR ESTILO PREMIUM EN SELECTS DE FILTROS */
.filtros-resultados select,
.filtro-item select,
#filtroGenero,
#filtroCategoria,
#filtroPrueba,
#filtroClub {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;

    width: 100% !important;
    height: 54px !important;
    padding: 0 46px 0 18px !important;

    border: 2px solid #dce6f2 !important;
    border-radius: 16px !important;

    background-color: #ffffff !important;
    background-image: linear-gradient(45deg, transparent 50%, #0057b8 50%),
                      linear-gradient(135deg, #0057b8 50%, transparent 50%) !important;
    background-position: calc(100% - 22px) 23px,
                         calc(100% - 15px) 23px !important;
    background-size: 7px 7px, 7px 7px !important;
    background-repeat: no-repeat !important;

    color: #1d2b3a !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
}

.filtros-resultados select:focus,
.filtro-item select:focus,
#filtroGenero:focus,
#filtroCategoria:focus,
#filtroPrueba:focus,
#filtroClub:focus {
    border-color: #0057b8 !important;
    outline: none !important;
    box-shadow: 0 0 0 .22rem rgba(0,87,184,.16) !important;
}

.filtros-resultados label,
.filtro-item label {
    display: block !important;
    margin-bottom: 10px !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    color: #002b5c !important;
    text-transform: uppercase !important;
}

/* CORRECCIÓN FINAL PAGINADOR DATATABLES */
.dataTables_wrapper .dataTables_paginate {
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 22px !important;
}

.dataTables_wrapper .dataTables_paginate span {
    display: flex !important;
    gap: 8px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 44px !important;
    height: 40px !important;
    padding: 0 14px !important;
    border-radius: 12px !important;
    background: #eef3f9 !important;
    color: #002b5c !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #0057b8 !important;
    color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    opacity: .45 !important;
    cursor: not-allowed !important;
}

.dataTables_wrapper .dataTables_paginate ul,
.dataTables_wrapper .dataTables_paginate li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.resultados-nota{
    margin-top:40px;
    padding:18px 22px;
    background:#f7f9fc;
    border-left:4px solid #ffcc00;
    border-radius:12px;
    font-size:13px;
    line-height:1.7;
    color:#6b7280;
}

.resultados-nota strong{
    color:#002b5c;
    font-size:14px;
}

.resultados-nota a{
    color:#0057b8;
    text-decoration:none;
    font-weight:700;
}

.resultados-nota a:hover{
    text-decoration:underline;
}

/* ===============================
   CALENDARIO ASAVUR PREMIUM
================================ */

.calendario-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(135deg, #002b5c, #0057b8);
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.calendario-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0,0,0,.45), transparent 45%);
}

.calendario-hero .container {
    position: relative;
    z-index: 2;
}

.calendario-hero span {
    display: inline-block;
    background: #ffcc00;
    color: #002b5c;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.calendario-hero h1 {
    font-size: 58px;
    font-weight: 900;
    margin-bottom: 18px;
}

.calendario-hero p {
    max-width: 760px;
    font-size: 21px;
    line-height: 1.6;
}

.calendario-section {
    padding: 80px 0;
    background: #f3f6fb;
}

.calendario-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px;
}

.calendario-intro span {
    color: #0057b8;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calendario-intro h2 {
    font-size: 42px;
    font-weight: 900;
    color: #111;
    margin: 12px 0;
}

.calendario-intro p {
    font-size: 18px;
    color: #555;
}

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

.calendario-card {
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
}

.calendario-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 100%;
    background: #0057b8;
}

.calendario-card.evento-internacional::before {
    background: #ffcc00;
}

.calendario-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(0,0,0,.16);
}

.calendario-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}

.calendario-fecha {
    color: #002b5c;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
}

.calendario-estado {
    background: #eaf3ff;
    color: #0057b8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.evento-internacional .calendario-estado {
    background: #fff5cc;
    color: #9a7600;
}

.calendario-icono {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #002b5c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.evento-internacional .calendario-icono {
    background: #ffcc00;
    color: #002b5c;
}

.calendario-card h3 {
    font-size: 24px;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.25;
}

.calendario-lugar {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.calendario-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calendario-meta span {
    background: #f0f4fa;
    color: #002b5c;
    padding: 7px 13px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.calendario-nota {
    margin-top: 45px;
    padding: 18px 22px;
    background: #fff;
    border-left: 5px solid #ffcc00;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.7;
    color: #5b6575;
    box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.calendario-nota strong {
    color: #002b5c;
}

.calendario-final {
    padding: 80px 0;
    background: #002b5c;
    color: #fff;
}

.calendario-final h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 14px;
}

.calendario-final p {
    font-size: 20px;
    color: #eaf3ff;
}

@media (max-width: 992px) {
    .calendario-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .calendario-hero h1 {
        font-size: 46px;
    }
}

@media (max-width: 768px) {
    .calendario-hero {
        min-height: 340px;
        text-align: center;
    }

    .calendario-hero h1 {
        font-size: 36px;
    }

    .calendario-hero p {
        font-size: 18px;
    }

    .calendario-section {
        padding: 55px 0;
    }

    .calendario-grid {
        grid-template-columns: 1fr;
    }

    .calendario-intro h2,
    .calendario-final h2 {
        font-size: 30px;
    }
}
