
        :root {
            --primary-blue: #1357a9;
            --accent-gold: #eabf11;
            --accent-red: #da251d;
            --bg-dark: #0b0f19;
            --bg-section: #111827;
            --text-light: #ecf2ff;
            --text-muted: #9ca3af;
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.7;
        }

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

        /* Header */
        header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1f2e 100%);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            text-decoration: none;
        }

        .logo-img { height: 40px; width: auto; border-radius: 8px; }

        .nav-toggle { display: flex; align-items: center; gap: 10px; }

        .nav-cta-wa {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 10px 18px; border-radius: 999px;
            background: linear-gradient(45deg, #25D366, #128C7E);
            color: #fff; font-weight: 700; font-size: 0.9rem;
            text-decoration: none; transition: transform 0.2s; flex-shrink: 0;
        }
        .nav-cta-wa:hover { transform: translateY(-1px); }

        .menu-btn {
            display: inline-flex; align-items: center; justify-content: center;
            width: 44px; height: 44px; border-radius: 10px;
            border: 1px solid rgba(255,255,255,.14); background: transparent;
            cursor: pointer; color: var(--text-light);
        }
        .menu-btn:hover { background: rgba(255,255,255,0.06); }

        .nav-menu {
            display: none; position: absolute; top: 100%; left: 0; right: 0;
            background: rgba(11, 15, 25, 0.98);
            border-bottom: 1px solid rgba(234, 191, 17, 0.2);
            padding: 10px 0; backdrop-filter: blur(10px); z-index: 999;
        }
        .nav-menu.open { display: block; }
        .nav-menu a {
            display: block; padding: 12px 24px; color: #ecf2ff;
            text-decoration: none; font-weight: 500; transition: background 0.2s;
        }
        .nav-menu a:hover { background: rgba(255,255,255,0.06); }

        @media (max-width: 600px) {
            .nav-cta-wa span { display: none; }
            .nav-cta-wa { padding: 10px 14px; }
        }

        /* Breadcrumb */
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: var(--text-muted); }
        .breadcrumb a { color: var(--accent-gold); text-decoration: none; }
        .breadcrumb span { margin: 0 8px; }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="25" y="60" font-size="30" opacity="0.05">🏆</text></svg>') repeat;
            background-size: 100px 100px;
            pointer-events: none;
        }

        .hero-content { position: relative; z-index: 1; }

        .badge {
            display: inline-block;
            background: linear-gradient(90deg, #da251d, #eabf11);
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(234, 191, 17, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(234, 191, 17, 0); }
        }

        h1 { font-size: 2.8rem; margin-bottom: 20px; line-height: 1.2; }
        h1 span { background: linear-gradient(90deg, #eabf11, #f6de5c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hero-subtitle { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 30px; }
        .corrida-highlight { display: inline-block; background: rgba(234, 191, 17, 0.2); color: #eabf11; padding: 4px 12px; border-radius: 8px; font-weight: 700; }

        /* Gallery */
        .corrida-gallery {
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
            margin: 40px 0;
        }
        .corrida-gallery img {
            width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 16px;
            border: 3px solid rgba(234, 191, 17, 0.3); transition: all 0.3s ease;
        }
        .corrida-gallery img:hover {
            transform: scale(1.05); border-color: #eabf11;
            box-shadow: 0 10px 30px rgba(234, 191, 17, 0.3);
        }

        /* Videos */
        .corrida-videos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 40px 0; }
        .corrida-video-card {
            background: rgba(0,0,0,0.3); border-radius: 16px; padding: 20px;
            border: 2px solid rgba(234, 191, 17, 0.2); transition: all 0.3s ease;
        }
        .corrida-video-card:hover { border-color: #eabf11; transform: translateY(-3px); }
        .corrida-video-title {
            font-size: 15px; font-weight: 700; color: #eabf11;
            margin-bottom: 12px; display: flex; align-items: center; gap: 8px;
        }
        .corrida-video-link {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            background: linear-gradient(135deg, #000, #25F4EE, #FE2C55);
            color: white; padding: 14px 20px; border-radius: 12px;
            font-weight: 700; font-size: 14px; text-decoration: none;
            transition: all 0.3s ease;
        }
        .corrida-video-link:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(254, 44, 85, 0.4); }
        .corrida-video-link svg { width: 20px; height: 20px; }

        /* Press */
        .corrida-press { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 30px; }
        .corrida-press a {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.08); color: #fff; padding: 10px 18px;
            border-radius: 12px; font-size: 13px; font-weight: 600;
            border: 1px solid rgba(255,255,255,0.15); transition: all 0.3s ease;
            text-decoration: none;
        }
        .corrida-press a:hover { background: rgba(234, 191, 17, 0.2); border-color: #eabf11; transform: translateY(-2px); }

        /* Section styling */
        section { padding: 60px 0; }
        .section-dark { background: var(--bg-section); }

        h2 { font-size: 2rem; margin-bottom: 20px; color: var(--text-light); }
        h2 span { color: var(--accent-gold); }

        /* Features Grid */
        .features-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
            margin-top: 30px;
        }
        .feature-card {
            background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
            border-radius: 16px; padding: 30px; text-align: center;
            border: 1px solid rgba(255,255,255,0.1); transition: all 0.3s;
        }
        .feature-card:hover { transform: translateY(-5px); border-color: rgba(234, 191, 17, 0.3); }
        .feature-card .emoji { font-size: 2.5rem; margin-bottom: 15px; }
        .feature-card h3 { color: var(--accent-gold); margin-bottom: 10px; font-size: 1.2rem; }
        .feature-card p { color: var(--text-muted); font-size: 0.95rem; }

        /* Highlights */
        .highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 30px; }
        .highlight-card {
            background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
            border: 1px solid rgba(255,255,255,0.1); border-radius: 14px;
            padding: 20px; text-align: center;
        }
        .highlight-card .number {
            font-size: 1.5rem; font-weight: bold;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .highlight-card .label { font-size: 0.85rem; color: var(--text-muted); margin-top: 5px; }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #0f3460 100%);
            padding: 80px 0; text-align: center;
        }
        .cta-section h2 { font-size: 2.2rem; margin-bottom: 15px; }
        .cta-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }
        .cta-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .btn-primary {
            display: inline-flex; align-items: center; gap: 8px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white; padding: 16px 32px; border-radius: 30px;
            text-decoration: none; font-weight: 700; font-size: 1.1rem;
            transition: all 0.3s;
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
        .btn-secondary {
            display: inline-flex; align-items: center; gap: 8px;
            background: transparent; color: var(--text-light);
            padding: 16px 32px; border-radius: 30px;
            text-decoration: none; font-weight: 600; font-size: 1.1rem;
            border: 2px solid rgba(255,255,255,0.2); transition: all 0.3s;
        }
        .btn-secondary:hover { border-color: var(--accent-gold); transform: translateY(-3px); }

        /* Reviews */
        .reviews-container {
            border-radius: 16px; overflow: hidden; margin-top: 30px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Footer */
        footer {
            background: var(--bg-dark); padding: 40px 0 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 20px; }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; }
        .footer-links a:hover { color: var(--accent-gold); }
        .copyright { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 20px; }

        /* Mobile CTA */
        .mobile-cta {
            display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
            background: linear-gradient(135deg, #eabf11, #da251d);
            text-align: center;
        }
        .mobile-cta a {
            display: block; padding: 16px; color: white; text-decoration: none;
            font-weight: 700; font-size: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .hero { padding: 50px 0; }
            .corrida-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .corrida-videos { grid-template-columns: 1fr; }
            .features-grid { grid-template-columns: 1fr; }
            .highlights { grid-template-columns: repeat(2, 1fr); }
            .mobile-cta { display: block; }
            body { padding-bottom: 60px; }
        }
    