   <style>
        /* =========================================
           1. VARIABLES Y RESETEO
           ========================================= */
        :root {
            --bg-dark: #000000;
            --bg-card: #0a0a0a;
            --text-main: #ffffff;
            --text-muted: #999999;
            
            --rojo-ccv: #e50000;
            --azul-cav: #0066ff;
            --purpura-moto4: #6b21a8;
            
            --font-titles: 'Montserrat', sans-serif;
            --font-texts: 'Inter', sans-serif;
        }

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

        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-texts);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* =========================================
           2. HEADER (MENÚ FIJO Y RESPONSIVE)
           ========================================= */
        .site-header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 0;
            background-color: #000000;
            border-bottom: 1px solid #1a1a1a;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-titles);
            font-size: 2rem;
            font-weight: 900;
            font-style: italic;
            z-index: 1001; 
        }

        .logo span { font-size: 0.6rem; letter-spacing: 2px; color: var(--text-main); display: block; margin-top: -5px; }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            font-family: var(--font-texts);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--rojo-ccv); }

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

        .social-icons a { font-size: 1.1rem; color: #fff; }
        .social-icons a:hover { color: var(--rojo-ccv); }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            cursor: pointer;
            z-index: 1001;
            transition: color 0.3s;
        }

        .mobile-menu-btn:hover { color: var(--rojo-ccv); }

        /* =========================================
           3. HERO
           ========================================= */
        .hero {
            height: 65vh; 
            min-height: 480px; 
            margin-top: 81px; 
            padding-bottom: 100px; 
            background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 100%), 
                        url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
            display: flex;
            align-items: center;
            position: relative;
        }

        .hero .container { display: flex; justify-content: flex-start; }

        .hero-content {
            text-align: left;
            max-width: 600px;
            margin-top: 0;
        }

        .hero-tag {
            color: var(--rojo-ccv);
            font-family: var(--font-titles);
            font-size: 0.9rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 10px;
            display: block;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: var(--font-titles);
            font-size: 4.2rem;
            font-weight: 900;
            font-style: italic;
            line-height: 0.95;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .hero h1 .red-text { color: var(--rojo-ccv); display: block; }

        .hero p {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 35px;
            max-width: 450px;
            font-weight: 400;
        }

        .hero-buttons { display: flex; gap: 15px; justify-content: flex-start; }

        .btn {
            display: inline-flex; align-items: center; justify-content: space-between; gap: 15px;
            padding: 12px 20px; font-family: var(--font-texts); font-size: 0.8rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px; border: 1px solid transparent;
            cursor: pointer; min-width: 180px; transition: all 0.3s;
        }

        .btn-red { background: var(--rojo-ccv); color: #fff; }
        .btn-red:hover { background: #b30000; }
        .btn-outline { background: transparent; color: #fff; border-color: #fff; }
        .btn-outline:hover { background: rgba(255,255,255,0.1); }

        .hero-slider-dots {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5;
        }
        .dot { width: 30px; height: 4px; background: #444; }
        .dot.active { background: var(--rojo-ccv); }

        /* =========================================
           4. TÍTULOS DE SECCIÓN
           ========================================= */
        .section-header {
            display: flex; flex-direction: column; align-items: center; margin: 0 0 40px 0; text-align: center; position: relative; z-index: 10;
        }
        .section-header-title {
            display: flex; align-items: center; gap: 20px; font-family: var(--font-titles); font-size: 0.95rem;
            font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted);
        }
        .section-header-title::before, .section-header-title::after {
            content: ''; display: block; width: 40px; height: 2px; background-color: var(--rojo-ccv);
        }
        .section-header h2 {
            font-family: var(--font-titles); font-size: 1.5rem; font-weight: 800; text-transform: uppercase; margin-top: 10px; letter-spacing: 1px;
        }

        /* =========================================
           5. CAMPEONATOS (AJUSTADOS A FORMATO CUADRADO)
           ========================================= */
        .championships-section {
            margin-top: -120px;
            position: relative;
            z-index: 10;
        }

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

        .card-camp {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.8);
            background: #000;
        }

        .camp-cav { border: 1px solid rgba(0, 102, 255, 0.4); }
        .camp-ccv { border: 1px solid rgba(229, 0, 0, 0.4); }
        .camp-moto4 { border: 1px solid rgba(107, 33, 168, 0.4); }

        .card-camp-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 0;
            transition: transform 0.5s ease;
        }

        .card-camp:hover .card-camp-bg { transform: scale(1.05); }

        .camp-cav .card-camp-bg { background-image: linear-gradient(to bottom, rgba(0, 102, 255, 0.6) 0%, rgba(5, 5, 5, 1) 90%), url('https://images.unsplash.com/photo-1558981403-c5f9899a28bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }
        .camp-ccv .card-camp-bg { background-image: linear-gradient(to bottom, rgba(229, 0, 0, 0.6) 0%, rgba(5, 5, 5, 1) 90%), url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }
        .camp-moto4 .card-camp-bg { background-image: linear-gradient(to bottom, rgba(107, 33, 168, 0.7) 0%, rgba(5, 5, 5, 1) 90%), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80'); }

        .card-camp-content {
            position: relative;
            z-index: 1;
            /* Padding ajustado para compactar el contenido verticalmente */
            padding: 30px 25px 20px 25px; 
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            /* Reducimos la altura para hacerlo más cuadrado (Antes 400px) */
            min-height: 250px; 
        }

        /* Márgenes ajustados para ganar espacio visual */
        .camp-logo-placeholder { margin-bottom: 10px; text-align: center; text-shadow: 0 4px 15px rgba(0,0,0,0.5); }
        .camp-logo-placeholder h2 { font-family: var(--font-titles); font-size: 3.5rem; font-weight: 900; font-style: italic; line-height: 1; color: #fff; }
        .camp-logo-placeholder span { font-size: 1.2rem; display: block; letter-spacing: 3px; font-style: normal; font-weight: 600; }

        .card-camp h3 {
            font-family: var(--font-texts);
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: auto;
            margin-bottom: 15px; /* Margen reducido */
            text-align: center;
            line-height: 1.4;
            color: #fff;
        }

        .btn-camp {
            width: 100%;
            padding: 15px 20px;
            border-radius: 4px;
            font-family: var(--font-texts);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            transition: background 0.3s;
        }
        
        .btn-camp i { position: absolute; right: 20px; }

        .btn-cav { background: var(--azul-cav); color: #fff; }
        .btn-cav:hover { background: #0052cc; }
        .btn-ccv { background: var(--rojo-ccv); color: #fff; }
        .btn-ccv:hover { background: #b30000; }
        .btn-moto4 { background: var(--purpura-moto4); color: #fff; }
        .btn-moto4:hover { background: #4b1776; }

        /* =========================================
           6. CALENDARIO (AJUSTADO A FORMATO CUADRADO)
           ========================================= */
        .calendario-section { margin-top: 80px; }
        
        .grid-calendario {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .card-cal {
            position: relative;
            display: flex;
            flex-direction: column;
            border-radius: 8px;
            overflow: hidden;
            background: #000;
            /* Reducimos la altura para emparejar proporciones cuadradas */
            min-height: 250px; 
        }

        .card-cal-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover;
            background-position: center;
            z-index: 0;
            transition: transform 0.5s ease;
        }

        .card-cal:hover .card-cal-bg { transform: scale(1.05); }

        .card-cal-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.95) 100%);
            z-index: 1;
        }

        .tag-cal {
            position: absolute;
            top: 0; left: 0;
            padding: 6px 25px 6px 15px;
            font-family: var(--font-texts);
            font-weight: 800;
            font-size: 0.9rem;
            color: #fff;
            z-index: 10;
            clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        }
        .tag-ccv { background: var(--rojo-ccv); }
        .tag-cav { background: var(--azul-cav); }
        .tag-moto4 { background: var(--purpura-moto4); }

        .card-cal-content {
            position: relative;
            z-index: 2;
            padding: 30px 20px 20px 20px; /* Reducción ligera de paddings */
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .card-cal-content h4 {
            font-family: var(--font-texts);
            font-size: 1.3rem; /* Tamaño optimizado para la nueva altura */
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 5px;
            letter-spacing: 1px;
            color: #fff;
        }

        .card-cal-content p {
            font-family: var(--font-texts);
            font-size: 0.85rem;
            color: #ccc;
            text-transform: uppercase;
            margin-bottom: 15px; /* Margen reducido */
            letter-spacing: 1px;
        }

        .cal-fecha {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #fff;
        }

        .btn-detalles {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #000000;
            font-family: var(--font-texts);
            font-weight: 600;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s;
        }
        
        .btn-detalles:hover { background: #111111; }

        .btn-detalles-ccv { border: 1px solid var(--rojo-ccv); color: #fff; }
        .btn-detalles-ccv i { color: var(--rojo-ccv); }
        
        .btn-detalles-cav { border: 1px solid var(--azul-cav); color: var(--azul-cav); }
        .btn-detalles-cav i { color: var(--azul-cav); }
        
        .btn-detalles-moto4 { border: 1px solid var(--purpura-moto4); color: #fff; }
        .btn-detalles-moto4 i { color: var(--purpura-moto4); }


        /* =========================================
           7. PARTNERS
           ========================================= */
        .partners-section { margin-top: 100px; }
        .partners-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 50px; padding: 0 20px 80px 20px; }
        .partner-logo { height: 30px; object-fit: contain; filter: grayscale(100%) brightness(200%); }

        /* =========================================
           8. FOOTER
           ========================================= */
        .site-footer { background-color: #050505; border-top: 1px solid #1a1a1a; padding: 60px 0 20px 0; font-size: 0.85rem; color: var(--text-muted); }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1.2fr 1.2fr 1.5fr; gap: 40px; margin-bottom: 60px; }
        .footer-logo { font-family: var(--font-titles); font-size: 2.5rem; font-weight: 900; font-style: italic; color: #fff; line-height: 1; margin-bottom: 15px; }
        .footer-logo span { color: var(--rojo-ccv); font-size: 0.8rem; letter-spacing: 2px; display: block;}
        .footer-about p { margin-bottom: 20px; line-height: 1.6; }
        .footer-social { display: flex; gap: 15px; font-size: 1.1rem; color: #fff; }
        .footer-col h5 { font-family: var(--font-texts); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: 20px; letter-spacing: 1px; }
        .footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 10px; }
        .footer-contact li { margin-bottom: 15px; display: flex; gap: 10px; align-items: center; }
        .newsletter-form { display: flex; margin-top: 15px; }
        .newsletter-form input { flex-grow: 1; padding: 12px 15px; background: #0a0a0a; border: 1px solid #222; border-right: none; color: #fff; font-family: var(--font-texts); outline: none; }
        .newsletter-form button { background: var(--rojo-ccv); color: #fff; border: none; padding: 0 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
        .footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 20px; display: flex; justify-content: space-between; }

        /* =========================================
           9. RESPONSIVE
           ========================================= */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 3.5rem; }
            .grid-campeonatos, .grid-calendario { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .social-icons { display: none; }
            
            .nav-links {
                position: fixed;
                top: 81px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 81px);
                background-color: #000000;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 60px;
                gap: 40px;
                transition: left 0.3s ease-in-out;
            }

            .nav-links.active { left: 0; }
            .nav-links a { font-size: 1.5rem; }

            .hero h1 { font-size: 2.8rem; }
            .hero-buttons { flex-direction: column; }
            .btn { width: 100%; }
            .championships-section { margin-top: -60px; }
            .grid-campeonatos, .grid-calendario { grid-template-columns: 1fr; }
            .partners-section { margin-top: 60px; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; gap: 15px; }
            .partners-grid { gap: 30px; }
        }
    </style>