    :root{
        --bg-light:#f4f4f2;
        --bg-soft:#efefef;
        --green-soft:#8a9a84;
        --green-text:#7f8f79;
        --green-btn:#8be24b;
        --green-border:#93e0b7;
        --mint:#63d7c2;
        --mint-dark:#63cbb3;
        --olive:#99a393;
        --dark:#111;
    }

    /* ABOUT PAGE */
    .about-page-hero{
        position:relative;
        background:transparent;
        padding-top:0;
    }

    .about-page-hero-image{
        display:block;
        width:100%;
        height:auto;
        object-fit:contain;
        object-position:center top;
    }

    .about-page-hero-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.04) 52%, rgba(0,0,0,.12) 100%);
        pointer-events:none;
        z-index:1;
    }

    .about-page-mobile-breadcrumb,
    .about-page-mobile-copy{
        display:none;
    }

    .about-page-story{
        background:#fff;
    }

    .about-page-team{
        position:relative;
        background:#98a394;
        padding:34px 0 30px;
        overflow:hidden;
    }

    .about-page-team-head{
        max-width:620px;
        margin:0 auto 22px;
        position:relative;
        z-index:2;
    }

    .about-page-team-head h2{
        color:#fff;
        font-size:22px;
        font-weight:700;
        margin:0 0 10px;
    }

    .about-page-team-head p{
        color:#f2f4ef;
        font-size:14px;
        line-height:1.15;
        margin:0;
    }

    .about-page-team-grid{
        position:relative;
        z-index:2;
        display:grid;
        grid-template-columns:repeat(4, 1fr);
        gap:18px;
    }

    .about-page-team-card img{
        display:block;
        width:100%;
        height:122px;
        object-fit:cover;
        border-radius:4px;
    }

    .about-page-team-action{
        position:relative;
        z-index:2;
        margin-top:18px;
        text-align:center;
    }

    .about-page .team-icon{
        right:34px;
        top:26px;
        width:118px;
        opacity:.22;
    }

    @media (max-width:991.98px){
        .about-page-team-grid{
            grid-template-columns:repeat(2, 1fr);
        }
    }

    @media (max-width:575.98px){
        .about-page-hero{
            min-height:494px;
            overflow:hidden;
        }

        .about-page-hero-media,
        .about-page-hero-media picture{
            display:block;
            height:100%;
        }

        .about-page-hero-image{
            height:100%;
            object-fit:cover;
            object-position:center top;
        }

        .about-page-hero-overlay{
            inset:0;
            background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
        }

        .about-page-mobile-breadcrumb{
            position:absolute;
            left:32px;
            top:92px;
            z-index:3;
            display:flex;
            align-items:center;
            gap:7px;
            color:#fff;
            font-size:11px;
            font-weight:500;
        }

        .about-page-mobile-copy{
            position:absolute;
            right:23px;
            bottom:44px;
            z-index:3;
            display:block;
            max-width:210px;
            color:#fff;
            text-align:right;
        }

        .about-page-mobile-copy h1{
            margin:0 0 8px;
            font-size:26px;
            line-height:1;
            font-weight:700;
        }

        .about-page-mobile-copy p{
            margin:0;
            font-size:15px;
            line-height:1.03;
            font-weight:500;
        }

        .about-page-team{
            padding:28px 0 24px;
        }

        .about-page-team-head h2{
            font-size:18px;
        }

        .about-page-team-head p{
            font-size:12px;
        }

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

        .about-page-team-card img{
            height:90px;
        }

        .about-page .team-icon{
            right:10px;
            top:18px;
            width:84px;
            opacity:.16;
        }
    }

    /* EVENTS PAGE */
    .events-page-hero{
        position:relative;
        background:#fff;
    }

    .events-page-hero-image{
        display:block;
        width:100%;
        height:auto;
        object-fit:contain;
        object-position:center top;
    }

    .events-page-hero-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.02) 48%, rgba(0,0,0,.08) 100%);
        pointer-events:none;
    }

    .events-page-intro{
        background:#fff;
        padding:108px 0 40px;
    }

    .events-page-copy-grid{
        display:grid;
        grid-template-columns:260px 520px;
        gap:62px;
        align-items:start;
        justify-content:center;
        max-width:900px;
        margin:0 auto 58px;
    }

    .events-page-kicker{
        margin:0;
        font-size:28px;
        line-height:1.05;
        color:#8f978d;
        font-weight:700;
    }

    .events-page-text{
        margin:0;
        font-size:20px;
        line-height:1.05;
        color:#4b4f4a;
        max-width:520px;
        font-weight:500;
    }

    .events-page-logos{
        display:grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        align-items:center;
        gap:26px;
        max-width:860px;
        margin:0 auto 28px;
    }

    .events-page-logo-item{
        text-align:center;
    }

    .events-page-logo-item img{
        display:inline-block;
        max-width:100%;
        max-height:68px;
        width:auto;
        height:auto;
    }

    .events-page-actions{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:10px;
    }

    .events-page .btn-about-page{
        min-width:120px;
        text-align:center;
    }

    @media (max-width:991.98px){
        .events-page-copy-grid{
            grid-template-columns:1fr;
            gap:14px;
            max-width:100%;
            margin-bottom:38px;
        }

        .events-page-logos{
            grid-template-columns:repeat(2, minmax(0, 1fr));
            gap:22px 18px;
            max-width:520px;
        }
    }

    @media (max-width:575.98px){
        .events-page-hero{
            min-height:494px;
            overflow:hidden;
        }

        .events-page-hero picture{
            display:block;
            height:100%;
        }

        .events-page-hero-image{
            height:100%;
            object-fit:cover;
            object-position:center top;
        }

        .events-page-intro{
            padding:28px 0 30px;
        }

        .events-page-kicker{
            font-size:18px;
        }

        .events-page-text{
            font-size:20px;
            font-weight:500;
        }

        .events-page-logos{
            grid-template-columns:1fr 1fr;
            gap:18px 12px;
        }

        .events-page-logo-item img{
            max-height:54px;
        }
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
        margin:0;
        font-family:'Montserrat', Arial, sans-serif;
        color:#222;
        background:#fff;
    }

    .container{
        max-width:1220px;
    }

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

    a{ text-decoration:none; }

    .racevents-page{
        width:100%;
        max-width:1366px;
        margin:0 auto;
        overflow:hidden;
        background:#fff;
        opacity:0;
        transform:none;
        transition:opacity .15s ease, filter .15s ease;
        filter:blur(2px);
    }

    body.page-ready .racevents-page{
        opacity:1;
        transform:none;
        filter:blur(0);
    }

    body.page-transitioning .racevents-page{
        opacity:.35;
        transform:none;
        filter:blur(2px);
    }

    body.menu-open{
        overflow:hidden;
    }

    @media (prefers-reduced-motion: reduce){
        .racevents-page{
            opacity:1;
            transform:none;
            filter:none;
            transition:none;
        }

        body.page-ready .racevents-page,
        body.page-transitioning .racevents-page{
            opacity:1;
            transform:none;
            filter:none;
        }
    }

    .menu-drawer-backdrop{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.32);
        opacity:0;
        pointer-events:none;
        transition:opacity .25s ease;
        z-index:30;
    }

    .menu-drawer{
        position:fixed;
        top:0;
        right:0;
        width:min(320px, 86vw);
        height:100vh;
        background:#fff;
        color:#111;
        padding:30px 22px 32px;
        transform:translateX(100%);
        transition:transform .28s ease;
        z-index:31;
        box-shadow:-16px 0 40px rgba(0,0,0,.18);
    }

    .menu-drawer-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        font-size:20px;
        color:#879681;
        margin-bottom:36px;
    }

    .menu-close{
        border:none;
        background:transparent;
        color:#879681;
        font-size:30px;
        line-height:1;
        padding:0;
        cursor:pointer;
    }

    .menu-drawer-nav{
        display:flex;
        flex-direction:column;
        gap:14px;
    }

    .menu-drawer-nav a{
        color:#111;
        font-size:18px;
        font-weight:400;
    }

    .menu-drawer-nav a:first-child{
        font-weight:700;
    }

    body.menu-open .menu-drawer{
        transform:translateX(0);
    }

    body.menu-open .menu-drawer-backdrop{
        opacity:1;
        pointer-events:auto;
    }

    /* BLOQUE 1 */
    .hero-home{
        position:relative;
        min-height:740px;
        background:#101513;
        overflow:hidden;
    }

    .hero-video{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center 18%;
        z-index:0;
    }

    .hero-home::before{
        content:"";
        position:absolute;
        inset:0;
        background:
            linear-gradient(90deg, rgba(10, 18, 15, .18) 0%, rgba(10, 18, 15, .05) 38%, rgba(10, 18, 15, .22) 100%),
            radial-gradient(circle at 72% 44%, rgba(255, 255, 255, .12) 0%, rgba(255, 255, 255, 0) 36%);
        z-index:1;
    }

    .hero-overlay{
        position:absolute;
        inset:0;
        background:rgba(0,0,0,.1);
        z-index:1;
    }

    .topbar-custom{
        position:absolute;
        top:0;
        left:50%;
        transform:translateX(-50%);
        width:1086px;
        height:80px;
        background:#000;
        backdrop-filter:blur(5px);
        opacity:.35;
        border-radius:0 0 12px 12px;
        z-index:4;
        padding:26px 28px 0;
    }

    .brand-logo{
        display:inline-flex;
        align-items:center;
        flex:none;
    }

    .brand-logo img{
        display:block;
        height:34px;
        width:auto;
    }

    .brand-logo .icon-box{
        width:20px;
        height:20px;
        border-radius:2px;
        background:#fff;
        display:inline-block;
        position:relative;
        flex:none;
    }

    .brand-logo .icon-box::after{
        content:"";
        position:absolute;
        top:5px;
        left:5px;
        width:8px;
        height:8px;
        background:#1d1d1d;
    }

    .menu-link{
        color:#fff;
        font-size:17px;
        font-weight:500;
        display:flex;
        align-items:center;
        gap:8px;
        border:none;
        background:transparent;
        padding:0;
    }

    .menu-icon{
        font-size:24px;
        line-height:1;
    }

    .hero-content{
        position:relative;
        z-index:3;
        min-height:605px;
        display:flex;
        align-items:flex-start;
        padding:184px 0 78px;
    }

    .hero-text-box{
        max-width:444px;
        margin-left:auto;
        margin-right:7.8%;
        color:#fff;
        text-align:right;
        transform:none;
    }

    .hero-title{
        font-size:36px;
        font-weight:600;
        line-height:.93;
        letter-spacing:-.04em;
        margin-bottom:2px;
    }

    .hero-subtitle{
        max-width:444px;
        font-size:36px;
        font-weight:300;
        line-height:.93;
        letter-spacing:-.03em;
        margin-bottom:18px;
    }

    .btn-events,
    .btn-events-green,
    .btn-inscribete{
        display:inline-block;
        background:#91e065;
        color:#10150f;
        border:none;
        padding:11px 20px;
        border-radius:16px;
        font-weight:700;
        font-size:14px;
        line-height:1;
        transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
        box-shadow:0 8px 24px rgba(78, 139, 44, .18);
    }

    .btn-events:hover,
    .btn-events-green:hover,
    .btn-inscribete:hover{
        color:#10150f;
        background:#9ceb70;
        transform:translateY(-1px);
        box-shadow:0 10px 28px rgba(78, 139, 44, .24);
    }

    .hero-dots{
        position:absolute;
        left:50%;
        bottom:110px;
        transform:translateX(-50%);
        z-index:4;
        display:flex;
        gap:9px;
    }

    .hero-dots span{
        width:8px;
        height:8px;
        border:1px solid #b9f0c1;
        border-radius:50%;
        background:transparent;
        display:block;
    }

    .hero-dots span.active{
        background:#b9f0c1;
    }

    .events-strip{
        position:relative;
        z-index:4;
        background:#98a394;
        padding:18px 0 14px;
    }

    .events-mobile-dots{
        display:none;
        justify-content:center;
        gap:8px;
        margin-bottom:12px;
    }

    .events-mobile-dots button{
        width:8px;
        height:8px;
        border-radius:50%;
        border:none;
        padding:0;
        background:rgba(255,255,255,.55);
        appearance:none;
    }

    .events-mobile-dots button.active{
        background:#b9f0c1;
    }

    .event-card{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:flex-start;
        gap:10px;
        color:#fff;
        min-height:118px;
        width:100%;
    }

    .event-logo{
        width:100%;
        text-align:center;
        display:flex;
        align-items:center;
        justify-content:center;
        padding-top:0;
        min-height:auto;
    }

    .event-logo-image{
        width:192px;
        max-width:100%;
        height:auto;
        object-fit:contain;
    }

    .event-info{
        width:100%;
        max-width:330px;
        display:flex;
        align-items:center;
        justify-content:center;
        gap:18px;
        min-height:auto;
    }

    .event-desc{
        font-size:16px;
        line-height:1.02;
        font-weight:500;
        margin:0;
        color:#f3f3f3;
        max-width:228px;
        text-align:center;
    }

    .event-date{
        display:inline-block;
        border:1.5px solid #60d6c3;
        color:#60d6c3;
        border-radius:8px;
        padding:4px 10px 3px;
        text-align:center;
        font-weight:700;
        line-height:1;
        font-size:12px;
    }

    .event-date small{
        display:block;
        font-size:10px;
        font-weight:700;
        line-height:1;
    }

    /* BLOQUE 2 */
    .about-block{
        background:#fbfbf8;
        padding:66px 0 10px;
        border-bottom:2px solid #62ddd3;
    }

    .about-content{
        position:relative;
        padding:16px 0 0;
        max-width:455px;
        z-index:2;
    }

    .about-icon{
        position:absolute;
        top:-16px;
        right:-116px;
        width:186px;
        opacity:.42;
        z-index:-1;
        pointer-events:none;
    }

    .about-icon img{
        display:block;
        width:100%;
        height:auto;
    }

    .about-kicker{
        font-size:18px;
        font-weight:700;
        color:#93a18f;
        margin:0;
        letter-spacing:-.02em;
    }

    .about-title{
        font-size:54px;
        line-height:.98;
        font-weight:300;
        letter-spacing:-.05em;
        color:#151515;
        margin-bottom:16px;
    }

    .about-text{
        font-size:16px;
        line-height:1.15;
        color:#8c988d;
        max-width:440px;
        margin-bottom:0;
    }

    .about-image-wrap{
        text-align:right;
        padding-left:12px;
    }

    .about-image{
        width:100%;
        max-width:642px;
        min-height:472px;
        border-radius:10px;
        display:inline-block;
        object-fit:cover;
        box-shadow:0 18px 44px rgba(32, 49, 41, .08);
    }

    .about-button-wrap{
        margin-top:34px;
    }

    .racevents-page:not(.about-page) .about-button-wrap{
        margin:34px;
    }

    .btn-about{
        display:inline-block;
        padding:9px 20px;
        border:1.5px solid #9cac99;
        border-radius:16px;
        color:#98a594;
        font-size:12px;
        font-weight:700;
        background:transparent;
        transition:all .2s ease;
        box-shadow:none;
    }

    .btn-about:hover{
        background:#9cac99;
        color:#fff;
        box-shadow:none;
    }

    /* BLOQUE 3 */
    .team-block{
        background:#63d7c2;
        padding:32px 0 22px;
        position:relative;
        overflow:hidden;
    }

    .team-title{
        font-size:22px;
        font-weight:700;
        letter-spacing:-.03em;
        margin-bottom:12px;
        color:#0c1915;
    }

    .team-subtitle{
        max-width:670px;
        margin:0 auto;
        font-size:18px;
        line-height:1.08;
        color:#18322b;
        letter-spacing:-.02em;
    }

    .team-dots,
    .beneficios-dots,
    .galeria-dots,
    .inscripciones-dots{
        display:flex;
        justify-content:center;
        gap:10px;
    }

    .team-dots{
        margin-top:22px;
        align-items:center;
    }

    .team-dots button{
        width:8px;
        height:8px;
        border-radius:50%;
        background:rgba(255,255,255,.58);
        border:none;
        padding:0;
        appearance:none;
        cursor:pointer;
    }

    .team-dots button.active{
        background:#f0e6a3;
    }

    .team-slider{
        overflow:hidden;
        padding:0 16px;
    }

    .team-track{
        display:flex;
        gap:12px;
        transition:transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change:transform;
    }

    .team-slide{
        flex:0 0 322px;
    }

    .team-img{
        width:100%;
        border-radius:10px;
        display:block;
        height:230px;
        object-fit:cover;
        box-shadow:0 10px 24px rgba(20, 54, 46, .14);
    }

    .team-icon{
        position:absolute;
        right:34px;
        top:18px;
        width:126px;
        opacity:.58;
    }

    /* BLOQUE 3.2 */
    .events-types{
        background:#fdfdfb;
        padding:60px 0 64px;
    }

    .events-kicker{
        color:#95a18f;
        font-size:18px;
        font-weight:700;
        margin-bottom:10px;
        letter-spacing:-.02em;
    }

    .events-title{
        max-width:610px;
        font-size:52px;
        font-weight:300;
        line-height:1.02;
        letter-spacing:-.05em;
        color:#1b1b1b;
        margin-bottom:0;
    }

    .events-text{
        max-width:262px;
        margin-left:auto;
        font-size:20px;
        font-weight:500;
        color:#9aa49a;
        line-height:1.08;
        letter-spacing:-.02em;
    }

    /* BLOQUE 4 */
    .inscripciones-block{
        position:relative;
        min-height:706px;
        background:#111715;
        overflow:hidden;
    }

    .inscripciones-video{
        position:absolute;
        inset:0;
        width:100%;
        height:100%;
        object-fit:cover;
        object-position:center center;
        z-index:0;
    }

    .inscripciones-overlay{
        position:absolute;
        inset:0;
        background:
            linear-gradient(90deg, rgba(14, 17, 15, .55) 0%, rgba(14, 17, 15, .22) 48%, rgba(14, 17, 15, .34) 100%),
            linear-gradient(180deg, rgba(11, 14, 12, .08) 0%, rgba(11, 14, 12, .42) 100%);
    }

    .inscripciones-content{
        position:relative;
        z-index:2;
        padding-top:34px;
        padding-bottom:92px;
        min-height:706px;
    }

    .inscripciones-top{
        max-width:432px;
        color:#fff;
        padding-left:14px;
    }

    .inscripciones-kicker{
        font-size:22px;
        font-weight:700;
        margin-bottom:60px;
        letter-spacing:-.03em;
    }

    .inscripciones-title{
        font-size:24px;
        font-weight:700;
        margin-bottom:4px;
        line-height:1.02;
        letter-spacing:-.03em;
    }

    .inscripciones-text{
        font-size:18px;
        line-height:.98;
        font-weight:300;
        margin:0;
        color:#f6f6f6;
        letter-spacing:-.03em;
    }

    .inscripciones-dots{
        margin-top:56px;
        margin-left:132px;
        margin-bottom:16px;
        justify-content:flex-start;
        gap:8px;
    }

    .inscripciones-dots button{
        width:8px;
        height:8px;
        border-radius:50%;
        background:#d5e6c8;
        opacity:.8;
        border:none;
        padding:0;
        appearance:none;
        cursor:pointer;
    }

    .inscripciones-dots button.active{
        background:#91e065;
    }

    .inscripciones-slider{
        position:relative;
        overflow:hidden;
        width:260px;
        margin-left:28px;
        min-height:162px;
    }

    .inscripciones-track{
        position:relative;
        min-height:162px;
    }

    .inscripcion-step-slide{
        position:absolute;
        inset:0;
        opacity:0;
        transform:translateX(18px);
        transition:opacity .45s ease, transform .45s ease;
        pointer-events:none;
    }

    .inscripcion-step-slide.active{
        opacity:1;
        transform:translateX(0);
        pointer-events:auto;
    }

    .inscripcion-step-card{
        width:234px;
        min-height:142px;
        border:1.5px solid #91e065;
        border-radius:14px;
        color:#fff;
        padding:14px 18px 14px 14px;
        display:flex;
        align-items:flex-start;
        gap:12px;
        position:relative;
        backdrop-filter:blur(1px);
        background:rgba(0,0,0,.14);
    }

    .step-number{
        font-size:47px;
        line-height:1;
        font-weight:300;
        color:#fff;
        letter-spacing:-.05em;
    }

    .step-content h4{
        font-size:23px;
        line-height:.94;
        font-weight:700;
        margin:4px 0 10px;
        color:#fff;
        letter-spacing:-.04em;
    }

    .step-content p{
        font-size:13px;
        line-height:1.12;
        margin:0;
        color:#f4f4f4;
        max-width:118px;
    }

    .step-arrow{
        position:absolute;
        right:16px;
        top:50%;
        transform:translateY(-50%);
        font-size:24px;
        color:#91e065;
        font-weight:700;
    }

    .inscripciones-btn-wrap{
        position:absolute;
        left:50%;
        bottom:38px;
        transform:translateX(-50%);
    }

    /* BLOQUE 5 */
    .beneficios-block{
        position:relative;
        background:#fbfbf8;
        overflow:hidden;
        padding:42px 0 26px;
    }

    .beneficios-inner{
        position:relative;
        z-index:2;
        min-height:420px;
    }

    .beneficios-content{
        max-width:500px;
        padding-top:8px;
    }

    .beneficios-kicker{
        font-size:18px;
        font-weight:700;
        color:#93a18f;
        margin-bottom:18px;
        letter-spacing:-.02em;
    }

    .beneficios-title{
        font-size:52px;
        line-height:.98;
        font-weight:300;
        letter-spacing:-.05em;
        color:#1c1c1c;
        margin-bottom:14px;
        max-width:470px;
    }

    .beneficios-text{
        font-size:16px;
        line-height:1.1;
        color:#9aa59b;
        max-width:404px;
        margin-bottom:0;
        letter-spacing:-.02em;
    }

    .beneficios-bg-image{
        position:absolute;
        right:0;
        top:0;
        width:58%;
        height:100%;
        z-index:1;
        pointer-events:none;
        opacity:.9;
    }

    .beneficios-bg-image img{
        width:100%;
     
        object-fit:cover;
        object-position:center top;
        transform:scale(.94);
        filter:contrast(1.08) saturate(1.02);
    }

    .beneficios-dots{
        margin-top:14px;
        margin-bottom:18px;
        position:relative;
        z-index:2;
        justify-content:center;
        gap:8px;
    }

    .beneficios-dots button{
        width:8px;
        height:8px;
        border-radius:50%;
        background:#94a08d;
        opacity:.7;
        border:none;
        padding:0;
        appearance:none;
        cursor:pointer;
    }

    .beneficios-dots button.active{
        background:#7fc15d;
        opacity:1;
    }

    .beneficios-slider{
        overflow:hidden;
        position:relative;
        z-index:2;
    }

    .beneficios-track{
        display:flex;
        gap:12px;
        transition:transform .55s cubic-bezier(.22, .61, .36, 1);
        will-change:transform;
        margin-top:4px;
    }

    .beneficio-slide{
        flex:0 0 calc((100% - 36px) / 4);
    }

    .beneficio-card{
        min-height:118px;
        border:1.5px solid #c5ecaa;
        border-radius:12px;
        background:rgba(255,255,255,.9);
        padding:13px 14px 12px;
        display:flex;
        gap:12px;
        align-items:flex-start;
        box-shadow:0 10px 30px rgba(119, 137, 116, .06);
    }

    .beneficio-icon{
        width:34px;
        min-width:34px;
        opacity:.78;
    }

    .beneficio-info h4{
        font-size:18px;
        line-height:.96;
        font-weight:700;
        color:#8e9f88;
        margin:0 0 7px;
        letter-spacing:-.03em;
    }

    .beneficio-info p{
        font-size:13px;
        line-height:1.02;
        color:#242424;
        margin:0;
    }

    /* BLOQUE 6 */
    .galeria-block{
        background:#040404;
        padding:38px 0 36px;
        position:relative;
        overflow:hidden;
        border-bottom:1px solid rgba(255,255,255,.08);
    }

    .galeria-container{
        position:relative;
        width:75%;
        max-width:75%;
        margin:0 auto;
    }

    .galeria-header{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        margin-bottom:18px;
    }

    .galeria-kicker{
        color:#93a18f;
        font-size:18px;
        font-weight:700;
        margin:0;
        letter-spacing:-.02em;
    }

    .galeria-icon{
        width:84px;
        flex:0 0 84px;
    }

    .galeria-icon img{
        width:100%;
        opacity:.78;
    }

    .galeria-main-wrap{
        border-radius:10px;
        overflow:hidden;
        max-width:100%;
        box-shadow:0 22px 54px rgba(0,0,0,.35);
    }

    .galeria-main-img{
        width:100%;
        height:322px;
        object-fit:cover;
        border-radius:10px;
    }

    .galeria-side-text{
        color:#ececec;
        font-size:20px;
        line-height:.98;
        font-weight:300;
        letter-spacing:-.03em;
        max-width:188px;
        margin:10px 0 0 4px;
    }

    .galeria-btn-wrap{
        margin-top:168px;
        margin-left:112px;
    }

    .btn-ver-mas{
        display:inline-block;
        padding:10px 18px;
        border:1.5px solid #78d966;
        border-radius:16px;
        color:#78d966;
        font-size:13px;
        font-weight:700;
        background:transparent;
        transition:all .2s ease;
    }

    .btn-ver-mas:hover{
        background:#78d966;
        color:#000;
    }

    .galeria-dots{
        margin:14px 0 18px;
        justify-content:center;
        gap:8px;
    }

    .galeria-dots button{
        width:8px;
        height:8px;
        border-radius:50%;
        background:#91a08c;
        opacity:.8;
        border:none;
        padding:0;
        appearance:none;
        cursor:pointer;
    }

    .galeria-dots button.active{
        background:#b1da76;
        opacity:1;
    }

    .galeria-thumbs-row{
        display:flex;
        align-items:center;
        justify-content:flex-start;
        gap:8px;
    }

    .galeria-thumbs-viewport{
        overflow:hidden;
        flex:1 1 auto;
        width:auto;
        max-width:none;
    }

    .galeria-thumbs{
        display:flex;
        gap:14px;
        transition:transform .65s cubic-bezier(.22, .61, .36, 1);
        will-change:transform;
    }

    .thumb-item{
        width:118px;
        height:78px;
        border-radius:10px;
        overflow:hidden;
        flex:0 0 118px;
        opacity:.96;
        border:none;
        padding:0;
        background:transparent;
        cursor:pointer;
        box-shadow:none;
        transition:transform .25s ease, opacity .25s ease, outline-color .25s ease;
    }

    .thumb-item.active{
        outline:2px solid #78d966;
        outline-offset:2px;
        transform:translateY(-2px);
    }

    .thumb-item:hover{
        opacity:1;
        transform:translateY(-2px);
    }

    .thumb-item img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .galeria-next{
        flex:none;
    }

    .galeria-next{
        width:32px;
        height:32px;
        border:none;
        background:transparent;
        color:#38b5aa;
        font-size:30px;
        line-height:1;
        cursor:pointer;
        padding:0;
    }

    .galeria-swipe-icon{
        display:none;
    }

    .galeria-btn-wrap-mobile{
        margin-top:24px;
    }

    /* BLOQUE 7 */
    .experiencia-block{
        background:#fbfbf8;
        padding:58px 0 42px;
    }

    .experiencia-head{
        margin-bottom:46px;
    }

    .experiencia-title{
        font-size:28px;
        font-weight:700;
        color:#93a18f;
        margin-bottom:26px;
        letter-spacing:-.02em;
    }

    .experiencia-text{
        font-size:17px;
        line-height:1.08;
        color:#2d2d2d;
        margin:0;
        font-weight:300;
        letter-spacing:-.02em;
    }

    .experiencia-logos{
        display:grid;
        grid-template-columns:repeat(4, 1fr);
        align-items:center;
        gap:24px;
    }

    .logo-item{
        display:flex;
        align-items:center;
        justify-content:center;
        min-height:84px;
    }

    .logo-item img{
        max-width:144px;
        max-height:60px;
        width:auto;
        height:auto;
        object-fit:contain;
    }

    /* BLOQUE 8 */
    .footer-racevents{
        width:100%;
        margin:0;
    }

    .footer-top{
        background:#63d7c2;
        padding:36px 0 22px;
    }

    .footer-top-inner{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:26px;
        position:relative;
        min-height:118px;
    }

    .footer-logo{
        position:absolute;
        left:6px;
        top:6px;
    }

    .footer-logo img{
        width:100%;
        height:auto;
    }

    .footer-nav{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
    }

    .footer-nav a,
    .footer-nav span{
        color:#111;
        font-size:14px;
        font-weight:400;
        letter-spacing:-.01em;
    }

    .footer-social{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        flex-wrap:wrap;
    }

    .footer-social-label{
        font-size:12px;
        color:#8a938e;
        margin-right:4px;
    }

    .footer-social a img{
        width:18px;
        height:18px;
        object-fit:contain;
    }

    .footer-bottom{
        background:#98a394;
        padding:14px 0 12px;
    }

    .footer-bottom-inner{
        display:flex;
        justify-content:space-between;
        align-items:flex-end;
        gap:20px;
    }

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

    .footer-contact-item{
        display:flex;
        align-items:center;
        gap:10px;
        color:#f4f4f4;
        font-size:13px;
        line-height:1.15;
    }

    .footer-contact-item img{
        width:16px;
        height:16px;
        object-fit:contain;
        opacity:.95;
    }

    .footer-copy{
        color:#fff;
        font-size:12px;
        white-space:nowrap;
    }

    .gallery-page{
        background:#000;
    }

    .error-page{
        background:#050505;
        min-height:100vh;
    }

    .error-hero{
        position:relative;
        min-height:100vh;
        display:flex;
        align-items:center;
        background:
            linear-gradient(135deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 52%, rgba(0,0,0,.88) 100%),
            url("../images/hero-poster.jpg") center / cover no-repeat;
        color:#fff;
        overflow:hidden;
    }

    .error-hero-inner{
        position:relative;
        z-index:2;
        max-width:760px;
        padding-top:90px;
        text-align:center;
    }

    .error-code{
        color:#91e065;
        font-size:96px;
        line-height:.85;
        font-weight:700;
        letter-spacing:-.07em;
        margin-bottom:22px;
    }

    .error-hero h1{
        margin:0 0 16px;
        font-size:42px;
        line-height:.98;
        font-weight:700;
        letter-spacing:-.04em;
    }

    .error-hero p{
        max-width:520px;
        margin:0 auto 28px;
        color:#e8e8e8;
        font-size:18px;
        line-height:1.2;
        font-weight:400;
    }

    .error-actions{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:12px;
        flex-wrap:wrap;
    }

    .gallery-hero{
        position:relative;
        overflow:hidden;
        background:transparent;
    }

    .gallery-hero-media{
        position:relative;
        inset:auto;
    }

    .gallery-hero-image{
        display:block;
        width:100%;
        height:auto;
        object-fit:contain;
        object-position:center top;
        filter:none;
    }

    .gallery-hero-overlay{
        position:absolute;
        inset:0;
        background:linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 45%, rgba(0,0,0,.12) 100%);
    }

    .gallery-topbar{
        top:0;
    }

    .gallery-hero-copy{
        display:none;
    }

    .gallery-hero-copy h1{
        font-size:32px;
        font-weight:700;
        margin:0 0 10px;
        display:inline-block;
        background:#fff;
        padding:0 4px;
        line-height:1;
    }

    .gallery-hero-copy p{
        margin:0 0 0 auto;
        max-width:300px;
        font-size:17px;
        line-height:1.18;
        color:#111;
        background:rgba(255,255,255,.88);
        padding:8px 10px;
    }

    .gallery-showcase{
        background:#000;
        padding:26px 0 0;
    }

    .gallery-showcase-inner{
        padding-bottom:46px;
    }

    .gallery-primary{
        color:#fff;
    }

    .gallery-primary-head{
        display:flex;
        align-items:flex-start;
        justify-content:space-between;
        gap:20px;
        margin-bottom:18px;
    }

    .gallery-primary-head h2{
        margin:0;
        color:#93a18f;
        font-size:22px;
        font-weight:700;
        letter-spacing:-.02em;
    }

    .gallery-primary-grid{
        display:grid;
        grid-template-columns:minmax(0, 720px) 210px;
        justify-content:center;
        gap:30px;
        align-items:start;
    }

    .gallery-primary-main{
        border-radius:12px;
        overflow:hidden;
    }

    .gallery-primary-image{
        width:100%;
        height:430px;
        object-fit:cover;
        display:block;
        cursor:pointer;
    }

    .gallery-primary-copy{
        padding-top:2px;
    }

    .gallery-primary-copy p{
        margin:0;
        color:#e8e8e8;
        font-size:20px;
        line-height:1;
        font-weight:300;
        letter-spacing:0;
    }

    .gallery-page-dots{
        margin:16px 0 18px;
    }

    .gallery-strip{
        display:flex;
        align-items:center;
        justify-content:center;
        gap:10px;
        margin-bottom:28px;
    }

    .gallery-strip-row{
        display:flex;
        gap:14px;
        transition:transform .45s ease;
        will-change:transform;
        flex:0 0 auto;
        justify-content:flex-start;
    }

    .gallery-page-thumbs{
        width:880px;
        margin:0 auto;
        overflow:hidden;
    }

    .gallery-page .thumb-item{
        width:130px;
        height:88px;
        flex:0 0 130px;
        border-radius:8px;
    }

    .gallery-category{
        margin-top:24px;
    }

    .gallery-category h3{
        margin:0;
        color:#93a18f;
        font-size:18px;
        font-weight:700;
    }

    .gallery-carousel-head{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:12px;
        margin-bottom:14px;
    }

    .gallery-carousel:first-of-type .gallery-carousel-head h3{
        display:none;
    }

    .gallery-page-trigger{
        display:block;
    }

    .gallery-modal{
        position:fixed;
        inset:0;
        z-index:1000;
        display:grid;
        place-items:center;
        background:rgba(0,0,0,.88);
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:opacity .22s ease, visibility .22s ease;
        padding:24px;
    }

    .gallery-modal.open{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
    }

    .gallery-modal-dialog{
        position:relative;
        transform:scale(.96);
        opacity:0;
        transition:transform .22s ease, opacity .22s ease;
        width:min(1080px, 94vw);
        max-height:88vh;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .gallery-modal.open .gallery-modal-dialog{
        transform:scale(1);
        opacity:1;
    }

    .gallery-modal-dialog img{
        display:block;
        max-width:100%;
        max-height:88vh;
        width:auto;
        height:auto;
        border-radius:10px;
        object-fit:contain;
    }

    .gallery-modal-close{
        position:absolute;
        top:-18px;
        right:-18px;
        width:42px;
        height:42px;
        border:1px solid rgba(255,255,255,.35);
        border-radius:50%;
        background:rgba(0,0,0,.35);
        color:#fff;
        font-size:28px;
        line-height:1;
        cursor:pointer;
    }

    @media (max-width:1199.98px){
        .beneficios-cards-row{ grid-template-columns:repeat(2, 1fr); }
        .beneficios-bg-image{ width:50%; }
    }

    @media (max-width:991.98px){
        .hero-home{ min-height:auto; background-position:center; }
        .topbar-custom{ width:calc(100% - 30px); height:auto; top:14px; border-radius:12px; opacity:.5; padding:14px 18px; }
        .hero-content{ min-height:500px; padding:110px 20px 88px; }
        .hero-text-box{ margin:0 auto; max-width:520px; text-align:center; transform:none; }
        .hero-title{ font-size:42px; }
        .hero-subtitle{ font-size:24px; }
        .hero-dots{ bottom:206px; }
        .events-strip{ padding:26px 0 18px; }
        .event-card{ text-align:center; justify-content:center; padding:16px 0; gap:14px; }
        .event-info{ max-width:100%; flex-direction:column; gap:10px; }
        .event-logo{ min-width:0; }
        .event-logo-image{ width:160px; }

        .about-block{ padding:48px 0 18px; }
        .about-content{ max-width:100%; margin-bottom:28px; }
        .about-icon{ position:relative; top:auto; right:auto; width:132px; margin:0 0 14px auto; opacity:.5; }
        .about-title{ font-size:40px; }
        .about-text{ max-width:100%; }
        .about-image-wrap{ text-align:center; padding-left:0; }
        .about-image{ min-height:0; max-width:100%; }

        .team-block{ padding:44px 0 30px; }
        .team-subtitle{ max-width:100%; font-size:17px; }
        .team-icon{ display:none; }
        .events-types{ padding:48px 0 52px; }
        .events-title{ font-size:36px; max-width:100%; }
        .events-text{ max-width:100%; margin:18px 0 0; }

        .inscripciones-block,
        .inscripciones-content{ min-height:auto; }
        .inscripciones-content{ padding-top:30px; padding-bottom:110px; }
        .inscripciones-top{ max-width:100%; padding-left:0; }
        .inscripciones-kicker{ margin-bottom:24px; }
        .inscripciones-title{ font-size:22px; }
        .inscripciones-text{ font-size:17px; line-height:1.2; }
        .inscripciones-dots{ margin-left:0; margin-top:30px; }
        .inscripciones-slider{ margin-left:0; width:100%; max-width:320px; min-height:176px; }
        .inscripciones-track{ min-height:176px; }
        .inscripcion-step-card{ width:100%; max-width:320px; }

        .beneficios-block{ padding:46px 0 22px; }
        .beneficios-title{ font-size:38px; }
        .beneficios-bg-image{ position:relative; width:100%; height:320px; margin-top:25px; opacity:.82; }

        .galeria-block{ padding:40px 0 30px; }
        .galeria-container{ width:100%; max-width:100%; }
        .galeria-main-img{ height:320px; }
        .galeria-side-text{ max-width:100%; margin:18px 0 0; font-size:20px; }
        .galeria-btn-wrap{ display:none; }

        .experiencia-block{ padding:50px 0 38px; }
        .experiencia-head{ margin-bottom:40px; }
        .experiencia-logos{ grid-template-columns:repeat(2, 1fr); gap:24px 18px; }

        .footer-top{ padding:28px 0 18px; }
        .footer-top-inner{ min-height:auto; gap:20px; }
        .footer-logo{ position:static; align-self:flex-start; }
        .footer-bottom-inner{ flex-direction:column; align-items:flex-start; }

        .gallery-hero-copy{
            right:24px;
            bottom:34px;
        }

        .gallery-primary-grid{
            grid-template-columns:1fr;
            gap:18px;
        }

        .gallery-primary-copy{
            padding-top:0;
            max-width:240px;
        }
    }

    @media (max-width:767.98px){
        .about-title{ font-size:34px; }
        .about-text{ font-size:15px; line-height:1.25; }
        .team-title{ font-size:20px; }
        .team-subtitle{ font-size:16px; line-height:1.2; }
        .team-slide{ flex-basis:calc((100% - 12px) / 2); }
        .beneficio-slide{ flex-basis:calc((100% - 12px) / 2); }
        .beneficios-title{ font-size:30px; }
        .galeria-kicker{ font-size:16px; }
        .galeria-icon{ width:64px; flex-basis:64px; }
        .galeria-main-img{ height:240px; }
        .galeria-side-text{
            font-size:18px;
            line-height:1.1;
            font-weight:500;
        }
        .galeria-side-text-mobile{
            margin:18px auto 0;
            max-width:310px;
            text-align:justify;
            text-align-last:center;
        }
        .galeria-thumbs-row{ gap:10px; }
        .galeria-thumbs-viewport{
            width:calc(100% - 42px);
            flex:0 0 calc(100% - 42px);
        }
        .galeria-next{
            width:auto;
            min-width:64px;
            height:42px;
            color:#fff;
        }
        .galeria-next-arrow{
            display:none;
        }
        .galeria-swipe-icon{
            display:block;
            width:62px;
            height:auto;
        }
        .thumb-item{
            width:calc((100% - 14px) / 2);
            height:104px;
            flex:0 0 calc((100% - 14px) / 2);
        }
        .team-img{ height:200px; }

        .gallery-primary-image{ height:300px; }
        .gallery-strip{ gap:12px; }
        .gallery-category h3{ font-size:16px; }
        .gallery-page-thumbs{ width:492px; }
        .gallery-page .thumb-item{
            width:calc((100% - 14px) / 2);
            height:104px;
            flex:0 0 calc((100% - 14px) / 2);
        }

        .error-hero-inner{
            padding:120px 24px 60px;
        }

        .error-code{
            font-size:74px;
        }

        .error-hero h1{
            font-size:30px;
        }

        .error-hero p{
            font-size:16px;
        }
    }

    @media (max-width:575.98px){
        .topbar-custom{ top:14px; padding:12px 14px; width:calc(100% - 20px); }
        .hero-content{ min-height:430px; padding:96px 18px 86px; }
        .hero-title{ font-size:34px; }
        .hero-subtitle{ font-size:28px; line-height:1; }
        .menu-link{ font-size:14px; }
        .brand-logo{ font-size:18px; }
        .hero-dots{ bottom:182px; }
        .events-strip{ padding:20px 0 14px; }
        .events-mobile-dots{ display:flex; }
    .events-row{
            flex-wrap:nowrap;
            margin-left:0;
            margin-right:0;
            gap:0;
            transition:transform .55s cubic-bezier(.22, .61, .36, 1);
            will-change:transform;
        }
        .event-slide{
            width:100%;
            flex:0 0 100%;
            padding-left:0;
            padding-right:0;
        }
        .event-desc{ font-size:13px; }

        .about-title{ font-size:28px; }
        .about-page .about-title{ display:none; }
        .about-kicker{
            font-size:29px;
            font-weight:700;
            text-align:center;
        }
        .about-content{ margin-bottom:22px; }
        .about-icon{
            position:absolute;
            top:-6px;
            right:-12px;
            width:110px;
            margin:0;
            opacity:.22;
        }
        .about-image{ border-radius:8px; }
        .btn-about{ font-size:11px; padding:9px 16px; }
        .team-block{ padding:34px 0 24px; }
        .team-subtitle{ font-size:15px; }
        .team-dots{ margin-top:16px; }
        .team-slider{ padding:0 4px; }
        .team-slide{ flex-basis:100%; }
        .team-img{ height:170px; }
        .beneficio-slide{ flex-basis:100%; }
        .beneficios-block{
            padding:34px 0 22px;
            min-height:0;
        }
        .beneficios-inner{
            min-height:0;
        }
        .beneficios-content{
            max-width:235px;
            padding-top:0;
        }
        .beneficios-bg-image{
            position:absolute;
            right:0;
            top:8px;
            width:100%;
            height:96%;
            margin-top:0;
            opacity:.84;
        }
        .beneficios-bg-image img{
            object-position:center top;
            transform:scale(.9);
            filter:none;
        }
        .galeria-thumbs-viewport{
            width:calc(100% - 42px);
            flex-basis:calc(100% - 42px);
        }
        .events-title{ font-size:24px; }
        .events-text{ font-size:20px; line-height:1.25; font-weight:500; }
        .events-page-kicker{
            font-size:29px;
            font-weight:700;
            text-align:center;
        }
        .beneficios-title{ font-size:26px; }
        .inscripciones-title{ font-size:20px; }
        .inscripciones-text{ font-size:15px; }
        .step-number{ font-size:36px; }
        .step-content h4{ font-size:22px; }

        .experiencia-title{
            font-size:28px;
            font-weight:600;
        }
        .experiencia-text{
            font-size:16px;
            line-height:1.3;
            font-weight:500;
        }
        .experiencia-logos{ grid-template-columns:1fr; }

        .footer-nav{
            gap:8px;
            max-width:300px;
        }
        .footer-nav a,
        .footer-nav span{
            font-size:16px;
            font-weight:600;
        }
        .footer-nav a:nth-of-type(3),
        .footer-nav span:nth-of-type(3){
            display:none;
        }
        .footer-contact-item{ font-size:13px; align-items:flex-start; }
        .footer-social-label{
            width:auto;
            text-align:left;
            margin-right:4px;
        }
        .footer-social a img{
            width:24px;
            height:24px;
        }

        .gallery-hero-copy{
            position:absolute;
            right:23px;
            bottom:44px;
            z-index:3;
            display:block;
            max-width:210px;
            color:#fff;
            text-align:right;
        }
        .gallery-hero-media,
        .gallery-hero-media picture{
            display:block;
            height:100%;
        }
        .gallery-hero{
            min-height:494px;
            overflow:hidden;
        }
        .gallery-hero-image{
            height:100%;
            object-fit:cover;
            object-position:center top;
        }
        .gallery-hero-overlay{
            background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
        }
        .gallery-hero-copy h1{
            margin:0 0 8px;
            font-size:26px;
            line-height:1;
            font-weight:700;
            color:#fff;
            background:transparent;
            padding:0;
        }
        .gallery-hero-copy p{
            margin:0;
            max-width:none;
            font-size:15px;
            line-height:1.03;
            font-weight:500;
            color:#fff;
            background:transparent;
            padding:0;
        }
        .gallery-primary-head h2{ font-size:18px; }
        .gallery-primary-image{ height:240px; }
        .gallery-primary-copy{
            max-width:100%;
            width:100%;
        }
        .gallery-primary-copy p{
            font-size:16px;
            width:100%;
            text-align:justify;
            text-align-last:center;
        }
        .gallery-strip{
            flex-direction:row;
            align-items:center;
            justify-content:flex-start;
            gap:10px;
        }
        .gallery-strip-row{ width:auto; }
        .gallery-page-thumbs{
            width:calc(100% - 74px);
            overflow:hidden;
        }
        .gallery-page .thumb-item{
            width:calc((100% - 14px) / 2);
            height:104px;
            flex:0 0 calc((100% - 14px) / 2);
        }
    }
