        :root {
            --rojo-bajaj: #d32f2f;
            --negro-fondo: #0a0a0a;
            --negro-tarjeta: #141414;
            --gris-texto: #b0b0b0;
            --blanco: #ffffff;
            --transicion: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body, html {
            height: 100%;
            font-family: 'Exo 2', sans-serif;
            background: var(--negro-fondo);
            color: var(--blanco);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .header-principal {
            position: sticky;
            top: 0;
            width: 100%;
            padding: 15px 5%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2500;
            border-bottom: 2px solid var(--rojo-bajaj);
            box-shadow: 0 0 20px rgba(211, 47, 47, 0.3);
        }
        .logo-img {
            width: 300px;
            filter: drop-shadow(0 0 10px var(--rojo-bajaj));
            transition: var(--transicion);
        }
        .logo-img:hover {
            filter: drop-shadow(0 0 20px var(--rojo-bajaj));
            transform: scale(1.05);
        }
        .header-derecho { display: flex; align-items: center; gap: 20px; }
        .user-welcome { display: flex; align-items: center; gap: 20px; }
        .welcome-text { font-size: 0.9rem; text-transform: uppercase; }
        .name-highlight { color: var(--rojo-bajaj); text-shadow: 0 0 10px var(--rojo-bajaj); }
        
        /* ==================== NAV HEADER & SIDEBAR ==================== */
        .header-nav { display: flex; gap: 30px; align-items: center; }
        .header-nav a {
            color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem;
            text-transform: uppercase; transition: 0.3s;
        }
        .header-nav a:hover { color: var(--rojo-bajaj); text-shadow: 0 0 10px rgba(211,47,47,0.5); }
        .menu-toggle { display: none; font-size: 2.5rem; color: #fff; cursor: pointer; transition: 0.3s; margin-left: 15px;}
        .menu-toggle:hover { color: var(--rojo-bajaj); }
        
        .sidebar-mobile {
            position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
            background: rgba(10,10,10,0.95); backdrop-filter: blur(15px);
            z-index: 2000; border-left: 2px solid var(--rojo-bajaj);
            transition: right 0.4s ease; padding: 60px 20px 20px;
            display: flex; flex-direction: column; gap: 20px;
        }
        .sidebar-mobile.active { right: 0; }
        .close-sidebar {
            position: absolute; top: 15px; right: 20px; font-size: 2.5rem;
            color: #fff; cursor: pointer; transition: 0.3s;
        }
        .close-sidebar:hover { color: var(--rojo-bajaj); }
        .sidebar-mobile a {
            color: #fff; text-decoration: none; font-size: 1.2rem; font-weight: 700;
            padding: 15px; border-bottom: 1px solid rgba(255,255,255,0.1);
            text-transform: uppercase; transition: 0.3s; display: block;
        }
        .sidebar-mobile a:hover { color: var(--rojo-bajaj); padding-left: 10px; border-color: var(--rojo-bajaj); }
        .sidebar-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.7); z-index: 1999; display: none;
            opacity: 0; transition: opacity 0.4s ease;
        }
        .sidebar-overlay.active { display: block; opacity: 1; }

        
        .btn-header {
            text-decoration: none; padding: 10px 20px; font-weight: 800;
            border-radius: 4px; transition: 0.3s; display: flex; align-items: center; gap: 8px;
            border: 2px solid var(--rojo-bajaj); color: var(--rojo-bajaj);
        }
        .btn-header:hover {
            background: var(--rojo-bajaj); color: white;
            box-shadow: 0 0 20px var(--rojo-bajaj);
        }
        .btn-header.entrar { background: var(--rojo-bajaj); color: white; }
        .btn-header.entrar:hover { background: transparent; color: var(--rojo-bajaj); }
        .btn-logout { color: #666; font-size: 1.5rem; transition: 0.3s; }
        .btn-logout:hover { color: var(--rojo-bajaj); text-shadow: 0 0 15px var(--rojo-bajaj); }

        /* ==================== HERO SECCIÃ“N ==================== */
        .hero-main {
            margin-top: 80px;
            min-height: 80vh;
            display: flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(10, 10, 10, 0.9) 100%), url('multimedia/fondo.png') center/cover;
            text-align: center;
            border-bottom: 2px solid var(--rojo-bajaj);
            position: relative;
        }
        .hero-content { position: relative; z-index: 10; padding: 40px 20px; }
        .hero-title {
            font-size: clamp(2rem, 5vw, 4rem); font-weight: 900;
            color: var(--blanco);
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
            margin-bottom: 20px;
            animation: aparecer 1.5s ease-in-out;
        }
        .hero-content img {
            margin: 20px 0; width: 450px; max-width: 100%;
            filter: drop-shadow(0 0 20px rgba(211, 47, 47, 0.8));
            animation: aparecer 2s ease-in-out;
        }
        .hero-desc {
            font-size: 1.2rem; color: var(--gris-texto); margin: 20px auto 40px; max-width: 600px;
        }
        .hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn-main, .btn-sec {
            padding: 15px 30px; font-weight: 900; text-decoration: none; text-transform: uppercase;
            border-radius: 5px; transition: var(--transicion); font-size: 1rem;
        }
        .btn-main {
            background: var(--rojo-bajaj); color: white; border: 2px solid var(--rojo-bajaj);
            box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
        }
        .btn-main:hover {
            background: transparent; color: var(--rojo-bajaj);
            box-shadow: 0 0 30px var(--rojo-bajaj); transform: translateY(-5px);
        }
        .btn-sec {
            background: transparent; color: white; border: 2px solid white;
        }
        .btn-sec:hover {
            background: white; color: black; box-shadow: 0 0 20px white; transform: translateY(-5px);
        }

        @keyframes aparecer {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .location-strip {
            background: var(--rojo-bajaj); color: white; text-align: center;
            padding: 15px; font-weight: 800; font-size: 0.85rem; letter-spacing: 2px;
            text-transform: uppercase; box-shadow: 0 0 15px var(--rojo-bajaj);
            position: relative; z-index: 10;
        }

        /* ==================== PLATAFORMAS / CATEGORÃAS ==================== */
        .plataforma-section { padding: 80px 5%; border-bottom: 1px solid rgba(211, 47, 47, 0.2); }
        .section-header { text-align: center; margin-bottom: 50px; }
        .sub-label { color: var(--rojo-bajaj); font-weight: 800; letter-spacing: 3px; font-size: 0.8rem; display: block; margin-bottom: 10px; text-shadow: 0 0 10px var(--rojo-bajaj); }
        .section-header h2 { font-size: 2.8rem; color: var(--blanco); text-transform: uppercase; text-shadow: 0 0 15px rgba(255,255,255,0.3); }
        .red-line { width: 80px; height: 4px; background: var(--rojo-bajaj); margin: 15px auto; box-shadow: 0 0 10px var(--rojo-bajaj); }

        /* ==================== SECCIÃ“N TENDENCIAS V2 ==================== */
        .grid-tendencias {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            width: 100%;
        }
        
        .tarjeta-tendencia {
            position: relative;
            overflow: hidden;
            background: #050505;
            border-right: 1px solid rgba(211, 47, 47, 0.2);
            transition: var(--transicion);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tarjeta-tendencia:last-child {
            border-right: none;
        }
        
        .tarjeta-tendencia:hover {
            background: #0a0a0a;
            box-shadow: inset 0 0 40px rgba(211, 47, 47, 0.2);
            z-index: 2;
        }
        
        .tarjeta-tendencia .imagen-container {
            position: relative;
            width: 100%;
            height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px;
        }
        
        .tarjeta-tendencia .imagen-moto {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s ease, filter 0.5s ease;
            filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
            transform: scale(1.1);
        }
        
        .tarjeta-tendencia:hover .imagen-moto {
            transform: scale(1.25);
            filter: drop-shadow(0 10px 25px rgba(211, 47, 47, 0.8));
        }
        
        .tarjeta-tendencia .info-container {
            padding: 25px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 15px;
            background: linear-gradient(0deg, #020202 0%, transparent 100%);
            border-top: 1px solid rgba(211,47,47,0.1);
        }
        
        .tarjeta-tendencia .nombre-moto {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--rojo-bajaj);
            text-transform: uppercase;
            text-shadow: 0 0 10px rgba(211,47,47,0.5);
            margin: 0;
        }
        
        .tarjeta-tendencia .etiqueta-vistas {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: linear-gradient(135deg, #ff0000, #990000);
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 800;
            font-size: 0.85rem;
            box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
            margin: 0 auto;
        }
        
        .tarjeta-tendencia .btn-tendencia {
            padding: 12px 25px;
            background: transparent;
            color: var(--blanco);
            border: 2px solid var(--rojo-bajaj);
            border-radius: 5px;
            font-weight: 900;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .tarjeta-tendencia .btn-tendencia:hover {
            background: var(--rojo-bajaj);
            color: white;
            box-shadow: 0 0 20px var(--rojo-bajaj);
        }
        
        @media (max-width: 768px) {
            .grid-tendencias {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 0 15px;
                padding-bottom: 40px;
            }
            
            .tarjeta-tendencia {
                flex-direction: row;
                align-items: center;
                height: auto;
                min-height: 220px;
                border: 1px solid rgba(211, 47, 47, 0.2);
                border-radius: 12px;
                padding: 0;
                background: linear-gradient(135deg, rgba(211, 47, 47, 0.05) 0%, rgba(20, 20, 20, 0.95) 100%);
            }
            
            .tarjeta-tendencia .imagen-container {
                width: 55%;
                height: 220px;
                padding: 5px;
            }

            .tarjeta-tendencia .imagen-moto {
                transform: scale(1.05);
            }
            .tarjeta-tendencia:hover .imagen-moto {
                transform: scale(1.15);
            }
            
            .tarjeta-tendencia .info-container {
                position: relative;
                width: 45%;
                height: 100%;
                padding: 15px 15px 15px 0;
                text-align: left;
                justify-content: center;
                align-items: flex-start;
                background: none;
                border-top: none;
                gap: 15px;
            }
            
            .tarjeta-tendencia .nombre-moto {
                font-size: 1.6rem;
                line-height: 1.1;
            }
            
            .tarjeta-tendencia .etiqueta-vistas {
                margin: 0;
                font-size: 0.95rem;
                padding: 8px 12px;
            }
            
            .tarjeta-tendencia .btn-tendencia {
                font-size: 1rem;
                padding: 12px 15px;
                width: 100%;
                text-align: center;
            }
        }

        /* ==================== SECCIÃ“N DIAGONALES ==================== */
        .seccion-diagonales {
            display: flex; width: 100%; height: 72vh; min-height: 520px;
            background: #000; overflow: hidden; position: relative;
            border-top: 2px solid var(--rojo-bajaj); border-bottom: 2px solid var(--rojo-bajaj);
        }
        .panel-diagonal {
            flex: 1; position: relative; cursor: pointer; overflow: hidden; transition: flex 0.5s ease;
        }
        .panel-izq { clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%); margin-right: -10%; z-index: 3; }
        .panel-centro { clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%); margin-right: -10%; z-index: 2; }
        .panel-der { clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%); z-index: 1; }
        
        .seccion-diagonales:hover .panel-diagonal { flex: 0.8; }
        .seccion-diagonales .panel-diagonal:hover { flex: 1.5; z-index: 10; }
        
        /* media-fondo: full width for straight panels */
        .media-fondo {
            position: absolute; width: 100%; height: 100%; left: 0; top: 0; background: #111;
        }
        .media-fondo::after {
            content: ''; inset: 0;
            background: rgba(0,0,0,0.55); transition: background 0.4s ease; z-index: 2;
        }

 
        .panel-diagonal:hover .media-fondo::after { background: transparent; }
        
        .panel-diagonal .img-base {
            position: absolute; width: 100%; height: 100%; object-fit: contain; object-position: center; z-index: 1;
            transition: opacity 0.5s ease;
        }
        .panel-diagonal .video-hover {
            position: absolute; width: 100%; height: 100%; object-fit: cover; z-index: 1;
            transition: opacity 0.5s ease;
        }
        /* Desktop: video hidden until hover */
        .panel-diagonal .video-hover { opacity: 0; }
        @media (min-width: 769px) {
            .panel-diagonal:hover .video-hover { opacity: 1; }
        }
        
        .contenido-panel {
            position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
            text-align: center; z-index: 5; width: 100%; pointer-events: none;
        }
        .contenido-panel h3 {
            color: #fff; font-size: 2.5rem; font-weight: 900; text-transform: uppercase;
            margin: 0 0 15px 0; letter-spacing: 2px; transition: transform 0.3s ease;
            text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 0 10px var(--rojo-bajaj);
        }
        .btn-linea {
            display: inline-block; color: #fff; font-size: 0.95rem; font-weight: 800; letter-spacing: 2px;
            border-bottom: 2px solid var(--rojo-bajaj); padding-bottom: 5px;
            opacity: 0; transform: translateY(20px); transition: all 0.3s ease 0.1s;
            text-shadow: 0 2px 8px rgba(0,0,0,0.8); text-transform: uppercase;
        }
        .panel-diagonal:hover h3 { transform: translateY(-10px); }
        .panel-diagonal:hover .btn-linea { opacity: 1; transform: translateY(0); }

        .beneficio-icon {
            font-size: 4rem; color: var(--rojo-bajaj); margin-bottom: 15px; display: block;
            text-shadow: 0 0 15px rgba(0,0,0,0.8);
            transform: translateY(20px); opacity: 0; transition: all 0.4s ease;
        }
        .beneficio-desc {
            color: #ddd; font-size: 0.95rem; max-width: 80%; margin: 0 auto 15px;
            opacity: 0; transform: translateY(20px); transition: all 0.4s ease;
            text-shadow: 0 2px 5px rgba(0,0,0,0.8);
        }
        .panel-diagonal:hover .beneficio-icon,
        .panel-diagonal:hover .beneficio-desc {
            transform: translateY(0); opacity: 1;
        }

        /* ConfiguraciÃ³n especÃ­fica para los beneficios (Cuadrados Pegados) */
        .grid-beneficios {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, 35vh);
            gap: 0;
            width: 100%;
        }
        .beneficio-cuadrado {
            position: relative; overflow: hidden; background: #000;
        }
        .beneficio-cuadrado .img-base {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%; object-fit: contain;
            filter: grayscale(0.8); transition: all 0.5s ease; z-index: 1;
        }
        .beneficio-cuadrado::after {
            content: ''; position: absolute; inset: 0;
            background: rgba(0,0,0,0.65); transition: background 0.4s ease; z-index: 2;
        }
        .beneficio-cuadrado:hover::after, .beneficio-cuadrado.activo-scroll::after {
            background: rgba(0,0,0,0.3); /* Sin rojo en hover, solo se aclara */
        }
        .beneficio-cuadrado:hover .img-base, .beneficio-cuadrado.activo-scroll .img-base {
            transform: scale(1.05); filter: grayscale(0);
        }
        .beneficio-cuadrado .contenido-panel {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            text-align: center; z-index: 5; width: 90%; pointer-events: none;
        }
        .beneficio-cuadrado:hover h3, .beneficio-cuadrado.activo-scroll h3 { transform: translateY(-10px); }
        .beneficio-cuadrado:hover .beneficio-desc, .beneficio-cuadrado.activo-scroll .beneficio-desc { transform: translateY(0); opacity: 1; }
        .beneficio-cuadrado:hover .beneficio-icon, .beneficio-cuadrado.activo-scroll .beneficio-icon { transform: translateY(0); opacity: 1; }

        /* ===== MOBILE: Vertical stacked cards ===== */
        @media (max-width: 768px) {
            .seccion-diagonales {
                flex-direction: column; height: auto;
                padding: 0; gap: 0;
                background: #000;
                overflow: visible;
            }
            .panel-diagonal {
                height: 55vw; min-height: 220px; max-height: 600px;
                clip-path: none !important; margin-right: 0;
                border-top: 1px solid rgba(211,47,47,0.3);
                border-bottom: 1px solid rgba(211,47,47,0.3);
                flex: none;
            }
            /* On mobile, fill media-fondo to full panel */
            .media-fondo { width: 100% !important; left: 0 !important; }
            /* On mobile, show image normally; JS will swap to video */
            .panel-diagonal .video-hover {
                opacity: 0;
            }
            /* Active class toggled by JS */
            .panel-diagonal.playing .video-hover { opacity: 1 !important; }

            /* Title always visible on mobile */
            .contenido-panel h3 { font-size: 1.8rem; }
            .btn-linea { opacity: 1 !important; transform: translateY(0) !important; font-size: 0.85rem; }
            .beneficio-icon, .beneficio-desc { opacity: 1; transform: translateY(0); }
            .beneficio-desc { font-size: 0.85rem; }
            .grid-beneficios { grid-template-columns: 1fr; grid-template-rows: auto; }
            .beneficio-cuadrado { height: 280px; }
            /* Last panel no bottom border gap */
            .panel-diagonal:last-child { border-bottom: 2px solid var(--rojo-bajaj); }
        }
        @media (max-width: 480px) {
            .panel-diagonal { height: 60vw; min-height: 200px; max-height: 260px; }
            .contenido-panel h3 { font-size: 1.5rem; }
        }

        .etiqueta-hot {
            position: absolute; top: 15px; right: 15px;
            background: linear-gradient(135deg, #ff0000, #990000); color: white;
            padding: 8px 15px; border-radius: 50px; font-weight: 900; font-size: 0.9rem;
            z-index: 10; box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
        }

        /* ==================== BENEFICIOS ==================== */
        .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .benefit-card {
            background: var(--negro-tarjeta); padding: 30px 20px; border-radius: 12px;
            border: 1px solid rgba(211, 47, 47, 0.2); transition: var(--transicion);
            text-align: center; position: relative; overflow: hidden;
        }
        .benefit-card::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(211,47,47,0.1) 0%, transparent 70%);
            opacity: 0; transition: 0.5s;
        }
        .benefit-card:hover { border-color: var(--rojo-bajaj); box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2); transform: translateY(-5px); }
        .benefit-card:hover::before { opacity: 1; }
        .benefit-card i { font-size: 2.5rem; color: var(--rojo-bajaj); margin-bottom: 15px; display: block; text-shadow: 0 0 10px var(--rojo-bajaj); position: relative; z-index: 2; }
        .benefit-card h3 { font-size: 1.2rem; margin-bottom: 10px; text-transform: uppercase; position: relative; z-index: 2; }
        .benefit-card p { color: var(--gris-texto); font-size: 0.9rem; line-height: 1.5; position: relative; z-index: 2; }

        /* ==================== EVENT SHOWCASE ==================== */
        .event-showcase { padding: 60px 5%; background: #000; border-bottom: 1px solid rgba(211, 47, 47, 0.2); }
        .event-container {
            max-width: 1100px; margin: 0 auto; background: var(--negro-tarjeta);
            border-radius: 15px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
            align-items: center; border: 1px solid var(--rojo-bajaj);
            box-shadow: 0 0 30px rgba(211, 47, 47, 0.15);
        }
        .event-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .event-info { padding: 40px; }
        .badge-new { background: var(--rojo-bajaj); padding: 5px 12px; font-weight: 900; font-size: 0.8rem; border-radius: 3px; box-shadow: 0 0 10px var(--rojo-bajaj); }
        .event-info h2 { font-size: 2.5rem; margin: 15px 0; color: white; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
        .event-info p { color: var(--gris-texto); line-height: 1.6; font-size: 1rem; margin-bottom: 30px; }

        /* ==================== COTIZADOR V2 ==================== */
        .quote-container-v2 { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .visual-box { width: 100%; text-align: center; position: relative; }
        .img-moto-revelada { max-width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(211,47,47,0.3)); transition: all 0.5s ease; }
        
        .quote-form-area { background: var(--negro-tarjeta); padding: 40px; border-radius: 15px; border: 1px solid rgba(211, 47, 47, 0.3); box-shadow: 0 0 30px rgba(0,0,0,0.8); }
        .quote-header-v2 h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; }
        .rojo { color: var(--rojo-bajaj); text-shadow: 0 0 10px var(--rojo-bajaj); }
        
        .payment-tabs-v2 { display: flex; gap: 10px; margin: 25px 0; }
        .tab-btn-v2 {
            flex: 1; background: #1a1a1a; border: 1px solid #333; color: var(--gris-texto);
            padding: 15px; font-weight: 800; cursor: pointer; border-radius: 5px; transition: 0.3s; text-transform: uppercase;
        }
        .tab-btn-v2.active, .tab-btn-v2:hover { background: var(--rojo-bajaj); color: white; border-color: var(--rojo-bajaj); box-shadow: 0 0 15px rgba(211,47,47,0.5); }
        
        #moto-selector-v2 {
            width: 100%; padding: 15px; background: #000; color: white;
            border: 1px solid #444; border-radius: 6px; margin-bottom: 20px; outline: none; font-size: 1rem;
        }
        #moto-selector-v2:focus { border-color: var(--rojo-bajaj); box-shadow: 0 0 10px rgba(211,47,47,0.5); }
        
        .btn-submit-quote-v2 {
            width: 100%; padding: 18px; background: transparent; color: var(--rojo-bajaj);
            border: 2px solid var(--rojo-bajaj); font-weight: 900; border-radius: 6px; font-size: 1.1rem;
            text-transform: uppercase; transition: 0.3s; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px;
        }
        .btn-submit-quote-v2:hover { background: var(--rojo-bajaj); color: white; box-shadow: 0 0 20px var(--rojo-bajaj); }

        .colores-dinamicos-v2 { display: flex; gap: 10px; justify-content: center; margin-top: 20px; }
        .btn-color-v2 {
            width: 40px; height: 40px; border-radius: 50%; border: 2px solid transparent;
            cursor: pointer; overflow: hidden; transition: 0.3s;
        }
        .btn-color-v2 img { width: 100%; height: 100%; object-fit: cover; }
        .btn-color-v2.active, .btn-color-v2:hover { border-color: var(--rojo-bajaj); box-shadow: 0 0 15px var(--rojo-bajaj); transform: scale(1.1); }

        .robot-recommendation { background: rgba(211,47,47,0.1); border-left: 4px solid var(--rojo-bajaj); padding: 15px; margin-top: 20px; border-radius: 0 8px 8px 0; display: flex; align-items: center; gap: 15px; }
        .robot-recommendation i { font-size: 1.8rem; color: var(--rojo-bajaj); }

        /* ==================== FOOTER ==================== */
        .footer-premium { background: rgba(0, 0, 0, 0.95); border-top: 2px solid var(--rojo-bajaj); padding-top: 60px; }
        .footer-grid-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
        .footer-column h3 { color: white; font-size: 1rem; font-weight: 900; text-transform: uppercase; margin-bottom: 25px; position: relative; text-shadow: 0 0 10px rgba(255,255,255,0.3); }
        .footer-column h3::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 40px; height: 2px; background: var(--rojo-bajaj); box-shadow: 0 0 10px var(--rojo-bajaj); }
        .footer-social-icons { display: flex; gap: 15px; margin-top: 20px; }
        .footer-social-icons a { color: white; font-size: 1.5rem; transition: var(--transicion); }
        .footer-social-icons a:hover { color: var(--rojo-bajaj); transform: translateY(-5px); filter: drop-shadow(0 0 10px var(--rojo-bajaj)); }
        .links-col a { color: var(--gris-texto); text-decoration: none; line-height: 2; transition: 0.3s; }
        .links-col a:hover { color: var(--rojo-bajaj); padding-left: 8px; text-shadow: 0 0 10px rgba(211,47,47,0.5); }
        .contact-item { color: var(--gris-texto); margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
        .contact-item i { color: var(--rojo-bajaj); font-size: 1.2rem; }
        .footer-bottom { margin-top: 50px; padding: 20px 5%; background: #000; border-top: 1px solid #222; text-align: center; }

        /* ==================== HERO CAROUSEL ==================== */
        .hero-carousel-container {
            position: relative; width: 100%; height: 85vh; min-height: 600px; overflow: hidden; background: #000;
        }
        .carousel-track {
            display: flex; width: 100%; height: 100%; transition: transform 0.5s ease-in-out;
        }
        .carousel-slide {
            min-width: 100%; height: 100%; position: relative;
        }
        .desktop-carousel { display: block; }
        .mobile-carousel { display: none; }
        .carousel-btn {
            position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5);
            color: white; border: 2px solid transparent; font-size: 3rem; cursor: pointer;
            z-index: 100; transition: 0.3s; padding: 10px; border-radius: 50%; display: flex;
            align-items: center; justify-content: center;
        }
        .carousel-btn:hover { background: var(--rojo-bajaj); border-color: white; }
        .btn-prev { left: 20px; }
        .btn-next { right: 20px; }

        .carousel-indicators {
            position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 10px; z-index: 100;
        }
        .indicator {
            width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5);
            cursor: pointer; transition: 0.3s;
        }
        .indicator.active { background: var(--rojo-bajaj); transform: scale(1.3); }

        .panel-izq-hero { z-index: 3; flex: 1; position: relative; cursor: pointer; border-right: 2px solid var(--rojo-bajaj); }
        .panel-der-hero { z-index: 1; flex: 1; position: relative; cursor: pointer; }
        .panel-full-mobile { 
            margin: 0 !important; width: 100% !important; height: 100% !important; cursor: pointer; 
            display: flex !important; flex-direction: column !important; 
            border: none !important; max-height: none !important; min-height: 100% !important;
        }
        .panel-full-mobile .media-fondo { 
            position: relative !important; width: 100% !important; left: 0 !important; 
            flex: 1 !important; height: auto !important; 
        }
        .panel-full-mobile .contenido-panel {
            position: relative !important; bottom: auto !important; left: auto !important; transform: none !important; 
            flex: none !important; height: auto !important; display: flex; flex-direction: column; justify-content: center; align-items: center;
            padding: 15px 20px 50px 20px !important; z-index: 5; background: #000; border-top: 1px solid rgba(211,47,47,0.2);
        }

        .seccion-diagonales-hero { display: flex; width: 100%; height: 100%; }
        .seccion-diagonales-hero .panel-diagonal { height: 100%; }

        @media (max-width: 992px) {
            .logo-img { width: 300px; }
            .event-container, .quote-container-v2, .footer-grid-container { grid-template-columns: 1fr; }
            .hero-title { font-size: 2.5rem; }
            .header-derecho { display: none; } /* SimplificaciÃ³n para mÃ³vil en header */
            .header-nav { display: none; }
            .menu-toggle { display: block; }
            .desktop-carousel { display: none !important; }
            .mobile-carousel { display: block !important; }
            
            .hero-carousel-container {
                height: 75vh !important; /* MÃ¡s alto para que la imagen pueda crecer y verse grande */
                min-height: 520px !important;
            }
            .carousel-indicators {
                bottom: 15px !important; /* Puntos centrados en el espacio inferior */
                z-index: 10;
            }
            .contenido-panel h3 {
                font-size: 1.8rem !important;
                margin-bottom: 10px !important;
            }
        }
        

    .color-bends-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ----- BARRA DE NAVEGACIÓN DESKTOP (CATEGORÍAS) ----- */
.nav-categorias-desktop {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
    padding: 0;
    width: 100%;
    border-bottom: 3px solid rgba(211, 47, 47, 0.5);
    background: #000;
}

.btn-categoria {
    flex: 1;
    padding: 25px 10px;
    border-radius: 0;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-shadow: 0 3px 10px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.8);
    position: relative;
}

.btn-categoria i {
    font-size: 2.2rem;
}

.btn-categoria:hover {
    transform: scale(1.05);
    color: white;
    z-index: 10;
}

/* Motocicletas: Rojo, Negro y Gris */
.btn-motos {
    background: linear-gradient(135deg, #cc0000 0%, #111111 50%, #666666 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.btn-motos:hover, .btn-motos.active {
    background: linear-gradient(135deg, #ff1a1a 0%, #222222 50%, #999999 100%);
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.6), inset 0 0 10px rgba(255,255,255,0.2);
    color: #fff;
}

/* Toritos: Azul Oscuro, Blanco y Rojo */
.btn-toritos {
    background: linear-gradient(135deg, #061f68 0%, #cccccc 50%, #cc0000 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.btn-toritos:hover, .btn-toritos.active {
    background: linear-gradient(135deg, #0a2d8f 0%, #ffffff 50%, #ff1a1a 100%);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4), inset 0 0 10px rgba(255,255,255,0.5);
    color: #111;
    text-shadow: 0 2px 5px rgba(255,255,255,0.8), 0 0 10px rgba(0,0,0,0.2);
}

/* Cargueros: Negro, Azul y Rojo */
.btn-carga {
    background: linear-gradient(135deg, #000000 0%, #0033cc 50%, #cc0000 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}
.btn-carga:hover, .btn-carga.active {
    background: linear-gradient(135deg, #111111 0%, #0055ff 50%, #ff1a1a 100%);
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.6), inset 0 0 10px rgba(255,255,255,0.2);
    color: #fff;
    text-shadow: 0 3px 10px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.8);
}

/* ============================================================
   RESPONSIVE PARA LA BARRA DE CATEGORÍAS (MÓVIL)
   ============================================================ */
@media (max-width: 992px) {
    .nav-categorias-desktop {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        /* Ocultar barra de scroll para un look más limpio */
        -ms-overflow-style: none;  
        scrollbar-width: none;  
    }
    
    .nav-categorias-desktop::-webkit-scrollbar {
        display: none;
    }

    .btn-categoria {
        flex: 1;
        min-width: 100px;
        padding: 12px 5px;
        font-size: 0.85rem;
        flex-direction: column; /* Icono arriba del texto */
        gap: 5px;
        text-align: center;
    }

    .btn-categoria i {
        font-size: 1.6rem;
    }
}


