html {
            scroll-behavior: smooth;
        }

        :root {
            --max-width: 1200px;
        }

        body {
            font-family: var(--font-family-base);
            background-color: var(--color-bg-onyx);
            color: var(--color-text-ice);
            overflow-x: hidden;
        }

        /* 1. Navbar Glassmorphism */
        header {
            position: fixed;
            top: 24px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 48px);
            max-width: var(--max-width);
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            padding: 0 24px;
        }

        /* Logo bsacar */
        .logo-container {
            display: flex;
            align-items: center;
            height: 38px;
            text-decoration: none;
            transition: opacity 0.2s ease-in-out;
        }

        .logo-container:hover {
            opacity: 0.9;
        }

        .logo-img {
            height: 34px;
            width: auto;
            display: block;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
        }

        .nav-links {
            display: none;
            gap: 32px;
        }

        .nav-links a {
            color: var(--color-text-ice);
            opacity: 0.8;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s ease;
            position: relative;
            padding: 4px 0;
        }

        .nav-links a:hover {
            opacity: 1;
            color: var(--color-action-orange);
        }

        /* Underline effect on hover */
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--color-action-orange);
            transition: width 0.2s ease;
        }

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

        .header-cta {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        /* 2. Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            /* Background image with linear gradient for contrast and fading to Onyx black */
            background: linear-gradient(180deg, rgba(18, 18, 18, 0.5) 0%, rgba(18, 18, 18, 0.95) 100%), 
                        url('../img/img-fundo-hero.webp') no-repeat center center / cover;
            background-attachment: scroll; /* Fallback padrão para Mobile */
            padding-top: 120px;
            padding-bottom: 60px;
        }

        /* Efeito Parallax apenas em Desktop */
        @media (min-width: 992px) {
            .hero {
                background-attachment: fixed;
            }
        }

        .hero-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
            z-index: 2;
        }

        .hero-content {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 28px;
        }

        /* Ajuste de ícones nos botões */
        .btn-ds-primary, .btn-ds-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* Live Badge Ticker */
        .live-ticker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(204, 0, 0, 0.1);
            color: var(--color-action-orange);
            padding: 10px 18px;
            border-radius: var(--radius-full);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border: 1px solid rgba(204, 0, 0, 0.25);
            backdrop-filter: blur(4px);
            animation: fadeInDown 0.8s ease-out;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background-color: #22c55e;
            border-radius: 50%;
            display: inline-block;
            box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            animation: pulse 1.6s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
            }
            70% {
                transform: scale(1);
                box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
            }
            100% {
                transform: scale(0.95);
                box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
            }
        }

        /* Typography spacing & animations */
        .hero h1 {
            font-size: 2.75rem;
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            margin: 0;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        @media (min-width: 768px) {
            .hero h1 {
                font-size: 4.25rem;
            }
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--brand-red-accent) 0%, var(--brand-red-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: var(--font-size-lg);
            color: #B3B3B3;
            line-height: 1.6;
            margin: 0;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        @media (min-width: 768px) {
            .hero-desc {
                font-size: 1.35rem;
            }
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            width: 100%;
            justify-content: center;
            animation: fadeInUp 0.8s ease-out 0.6s both;
        }

        .hero-actions .btn {
            padding: 16px 32px;
            font-size: 1.05rem;
            min-width: 200px;
        }

        /* Frosted Glass Metrics */
        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            width: 100%;
            margin-top: 40px;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }

        @media (max-width: 992px) and (min-width: 601px) {
            .hero-metrics {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .metric-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 24px;
            border-radius: var(--radius-lg);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(204, 0, 0, 0.3);
            transform: translateY(-4px);
        }

        .metric-val {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-text-ice);
            letter-spacing: -0.02em;
        }

        .metric-val span {
            color: var(--color-action-orange);
        }

        .metric-desc {
            font-size: 0.8rem;
            color: #8E8E8E;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        @media (max-width: 600px) {
            .hero-metrics {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .metric-card {
                padding: 16px;
            }
        }

        /* 3. Scroll Indicator */
        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: #8E8E8E;
            font-size: 0.8rem;
            text-decoration: none;
            letter-spacing: 0.05em;
            animation: bounce 2s infinite;
        }

        .scroll-down::after {
            content: '';
            width: 1px;
            height: 24px;
            background: linear-gradient(180deg, #8E8E8E 0%, transparent 100%);
        }

        /* Keyframes Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translate(-50%, -5px);
            }
        }

        /* Trust Ticker (Marquee) */
        .trust-ticker-container {
            background-color: #0a0a0a; /* Tom ligeiramente mais escuro que Onyx */
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            padding: 24px 0;
            overflow: hidden;
            width: 100%;
            display: flex;
            position: relative;
            z-index: 10;
        }

        .trust-ticker-wrapper {
            display: flex;
            width: max-content;
            animation: marquee 35s linear infinite;
        }

        /* Pausa a rolagem ao passar o mouse sobre a barra */
        .trust-ticker-container:hover .trust-ticker-wrapper {
            animation-play-state: paused;
        }

        /* Para evitar cortes visuais, o grupo é duplicado no HTML */
        .trust-ticker-group {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 80px; /* Grande espaçamento entre os itens */
            padding-right: 80px; /* Combina com o gap para o loop ser perfeito */
        }

        .trust-ticker-item {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            color: var(--color-text-ice);
            font-size: 1.1rem;
            font-weight: 500;
            white-space: nowrap;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* Animação ao passar o mouse sobre o item */
        .trust-ticker-item:hover {
            color: var(--color-action-orange);
            transform: translateY(-2px);
        }

        .trust-ticker-dot {
            width: 14px;
            height: 14px;
            background-color: var(--color-accent-dark); /* Círculos cinza azulados conforme o protótipo */
            border-radius: 50%;
            display: inline-block;
            transition: all 0.3s ease;
        }

        /* Brilho laranja no círculo correspondente ao hover do item */
        .trust-ticker-item:hover .trust-ticker-dot {
            background-color: var(--color-action-orange);
            box-shadow: 0 0 10px var(--color-action-orange);
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* 4. Inventory Section */
        .inventory-section {
            background-color: var(--color-bg-primary);
            color: var(--color-text-primary);
            padding: 100px 0;
            position: relative;
        }

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .inventory-header {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 48px;
            text-align: center;
        }

        .inventory-header h2 {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--color-text-primary);
            margin: 0;
        }

        .inventory-header p {
            color: var(--color-text-secondary);
            font-size: var(--font-size-md);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filter styling */
        .filter-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .filter-btn {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-accent-gray);
            color: var(--color-text-secondary);
            padding: 12px 24px;
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: var(--font-size-sm);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .filter-btn:hover {
            border-color: var(--color-text-primary);
            color: var(--color-text-primary);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--color-text-primary);
            border-color: var(--color-text-primary);
            color: var(--color-bg-primary);
            box-shadow: var(--shadow-md);
        }

        .filter-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
            transform: none !important;
            box-shadow: none !important;
        }

        /* Inventory Grid */
        .inventory-grid {
            display: grid;
            gap: 32px;
            grid-template-columns: 1fr;
            transition: all 0.3s ease;
            margin-top: 48px;
        }

        @media (min-width: 768px) {
            .inventory-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .inventory-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Card Design */
        .car-card {
            background: var(--color-bg-primary);
            border: 1px solid var(--color-accent-gray);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 0;
        }

        .car-card:hover {
            transform: translateY(-8px);
            border-color: rgba(204, 0, 0, 0.3);
            box-shadow: var(--shadow-lg);
        }

        /* Dynamic Visual Mesh Placeholder - Graph Blueprint Theme */
        .car-card-visual {
            height: 200px;
            background-color: #121212;
            /* Textura de malha/blueprint */
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: #ffffff; /* Força currentColor dos SVGs a ser branco */
        }

        .car-card-visual::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(204, 0, 0, 0.08) 0%, transparent 60%);
            top: -25%;
            left: -25%;
            transition: all 0.4s ease;
        }

        .car-card:hover .car-card-visual::before {
            background: radial-gradient(circle, rgba(204, 0, 0, 0.18) 0%, transparent 60%);
            transform: scale(1.1);
        }

        /* Abstract car profile wireframe vector */
        .car-wireframe-svg {
            width: 70%;
            height: auto;
            opacity: 0.4; /* Aumentado para melhor visualização */
            transition: all 0.4s ease;
            stroke: #ffffff;
            stroke-width: 1;
            fill: none;
        }

        .car-card:hover .car-wireframe-svg {
            opacity: 0.8;
            filter: drop-shadow(0 0 8px rgba(204, 0, 0, 0.4));
        }

        /* Top Tags */
        .car-card-tags {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            z-index: 5;
        }

        .car-tag-normal {
            background: rgba(18, 18, 18, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: var(--font-size-xs);
            font-weight: var(--font-weight-medium);
            padding: var(--spacing-1) var(--spacing-3);
            border-radius: var(--radius-full);
            backdrop-filter: blur(4px);
        }

        .car-tag-orange {
            background: var(--color-action-orange);
            color: #ffffff;
            font-size: var(--font-size-xs);
            font-weight: var(--font-weight-bold);
            padding: var(--spacing-1) var(--spacing-3);
            border-radius: var(--radius-full);
            box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
        }

        /* Favorite Action button */
        .favorite-btn {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(18, 18, 18, 0.6);
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            transition: all 0.2s ease;
        }

        .favorite-btn:hover {
            background: rgba(204, 0, 0, 0.2);
            border-color: var(--color-action-orange);
            transform: scale(1.1);
        }

        .favorite-btn.active {
            background: var(--color-action-orange);
            border-color: var(--color-action-orange);
            color: #ffffff;
        }

        .favorite-btn i {
            transition: transform 0.2s ease;
        }

        .favorite-btn.active i {
            transform: scale(1.2);
        }

        /* Card Content info */
        .car-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-grow: 1;
            min-width: 0;
        }

        @media (max-width: 576px) {
            .car-card-body {
                padding: 16px;
                gap: 12px;
            }
        }

        .car-card-header {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
            width: 100%;
        }

        .car-card-price {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--color-text-primary);
            letter-spacing: -0.02em;
            margin: 0;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .car-card-price small {
            font-size: 0.95rem;
            color: var(--color-text-secondary);
            font-weight: 500;
        }

        .car-card-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--color-text-secondary);
            margin: 0;
            transition: color 0.2s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
            min-width: 0;
            width: 100%;
        }

        .car-card:hover .car-card-title {
            color: var(--color-text-primary);
        }

        /* Metadados */
        .car-card-specs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            padding: 16px 0;
            border-top: 1px solid var(--color-accent-gray);
            border-bottom: 1px solid var(--color-accent-gray);
        }

        .spec-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
            font-size: 0.8rem;
            color: var(--color-text-secondary);
        }

        .spec-item span {
            font-weight: 600;
            color: var(--color-text-primary);
            font-size: 0.85rem;
        }

        .car-card-actions {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 12px;
            margin-top: auto;
        }

        @media (max-width: 576px) {
            .car-card-actions {
                grid-template-columns: 1fr;
                gap: 10px;
            }
        }

        /* Card visibility transitions */
        .car-card-wrapper {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            transform: scale(1);
        }

        .car-card-wrapper.hide {
            display: none;
            opacity: 0;
            transform: scale(0.8);
        }

        /* 5. Side Sheet (Vehicle Details Drawer) */
        .sidesheet-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(4px);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .sidesheet-backdrop.open {
            opacity: 1;
            visibility: visible;
        }

        .sidesheet {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            max-width: 100%; /* Default Mobile */
            background-color: var(--color-bg-primary);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
            z-index: 2001;
            transform: translateX(100%);
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
            border-left: 1px solid var(--color-accent-gray);
        }

        @media (min-width: 992px) {
            .sidesheet {
                width: 50vw;
                max-width: 50vw;
            }
            .sidesheet-backdrop {
                display: none !important;
                pointer-events: none !important;
            }
            .gallery-main {
                height: 480px;
            }
        }

        .sidesheet.open {
            transform: translateX(0);
        }

        /* Highlight Selected Card */
        .car-card-wrapper {
            border: 2px solid transparent;
            border-radius: calc(var(--radius-lg) + 2px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            min-width: 0;
        }

        .car-card-wrapper.selected-card {
            border-color: var(--color-action-orange);
            box-shadow: 0 8px 24px rgba(204, 0, 0, 0.15);
            transform: scale(1.02);
        }

        /* Sidebar reflow for desktop when Side Sheet is open */
        @media (min-width: 992px) {
            body.sidesheet-open .inventory-section {
                padding-right: 50vw;
            }
            body.sidesheet-open .inventory-section .container {
                max-width: 100% !important;
                margin-left: 0 !important;
                margin-right: auto !important;
                padding-left: 32px !important;
                padding-right: 16px !important;
            }
            body.sidesheet-open .inventory-grid {
                grid-template-columns: 1fr !important;
                gap: 16px !important;
            }
            body.sidesheet-open .inventory-header {
                text-align: left !important;
                max-width: 100% !important;
                margin-bottom: 24px !important;
            }
            body.sidesheet-open .filter-container {
                justify-content: flex-start !important;
                gap: 8px !important;
                margin-top: 12px !important;
            }
            body.sidesheet-open .filter-btn {
                padding: 8px 16px !important;
                font-size: 0.8rem !important;
            }
            body.sidesheet-open .car-card {
                cursor: pointer;
            }
            body.sidesheet-open .car-card:hover {
                transform: translateY(-4px) !important;
            }
            body.sidesheet-open .car-card-actions {
                display: none !important;
            }
            body.sidesheet-open .car-card-specs {
                border-bottom: none !important;
                padding-bottom: 0 !important;
                grid-template-columns: repeat(3, 1fr) !important;
            }
            body.sidesheet-open .car-card-body {
                padding: 16px !important;
                gap: 12px !important;
            }
            body.sidesheet-open .car-card-visual {
                height: 120px !important;
            }
            body.sidesheet-open .car-card-wrapper.selected-card .car-card {
                border-color: var(--color-action-orange) !important;
            }
        }

        /* Side Sheet Header */
        .sidesheet-header {
            padding: 24px 32px;
            border-bottom: 1px solid var(--color-accent-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--color-bg-secondary);
        }

        .sidesheet-header-title {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .sidesheet-header-title h3 {
            font-size: var(--font-size-xl);
            font-weight: 700;
            color: var(--color-text-primary);
            margin: 0;
            letter-spacing: -0.02em;
        }

        .sidesheet-close-btn {
            background: transparent;
            border: 1px solid var(--color-accent-gray);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--color-text-secondary);
        }

        .sidesheet-close-btn:hover {
            background: var(--color-accent-gray);
            color: var(--color-text-primary);
            transform: rotate(90deg);
        }

        /* Side Sheet Body Content */
        .sidesheet-body {
            padding: 32px;
            overflow-y: auto;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* Interactive Photo Gallery Placeholder */
        .sidesheet-gallery {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .gallery-main {
            height: 280px;
            background-color: #121212;
            border-radius: var(--radius-lg);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1px solid var(--color-accent-gray);
            color: #ffffff;
        }

        .gallery-main-grid-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 20px 20px;
            background-position: center;
            z-index: 1;
        }

        .gallery-main-svg {
            width: 55%;
            height: auto;
            z-index: 2;
            stroke: #ffffff;
            stroke-width: 1.2;
            fill: none;
            filter: drop-shadow(0 0 12px rgba(204, 0, 0, 0.3));
        }

        .gallery-thumbs {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }

        .gallery-thumb {
            height: 60px;
            background: #121212;
            border: 2px solid transparent;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
            opacity: 0.6;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.4);
            overflow: hidden;
        }

        .gallery-thumb:hover {
            opacity: 0.9;
        }

        .gallery-thumb.active {
            opacity: 1;
            border-color: var(--color-action-orange);
            color: var(--color-action-orange);
        }

        /* Vehicle Info Overview block */
        .overview-price-card {
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-accent-gray);
            border-radius: var(--radius-lg);
            padding: 24px;
        }

        .overview-price {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-text-primary);
            letter-spacing: -0.02em;
            margin: 0;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .overview-price small {
            font-size: 1rem;
            color: var(--color-text-secondary);
            font-weight: 500;
        }

        /* Technical Specifications Accordion/Grid */
        .specs-section-title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-text-primary);
            margin: 0 0 16px 0;
            border-bottom: 2px solid var(--color-action-orange);
            padding-bottom: 8px;
            width: max-content;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        @media (max-width: 480px) {
            .specs-grid {
                grid-template-columns: 1fr;
            }
        }

        .spec-row {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 12px;
            background: var(--color-bg-secondary);
            border: 1px solid var(--color-accent-gray);
            border-radius: var(--radius-md);
        }

        .spec-label {
            font-size: var(--font-size-xs);
            color: var(--color-text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .spec-value {
            font-size: var(--font-size-sm);
            color: var(--color-text-primary);
            font-weight: 700;
        }

        /* Highlight highlights/benefits (CRO Vantagens) */
        .benefits-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: var(--font-size-sm);
            color: var(--color-text-primary);
            font-weight: 600;
        }

        .benefit-item i {
            color: #22c55e;
            font-size: 1.25rem;
        }

        /* Fixed Footer inside drawer for high conversion CTA */
        .sidesheet-footer {
            padding: 24px 32px;
            border-top: 1px solid var(--color-accent-gray);
            background: var(--color-bg-secondary);
            display: flex;
            gap: 16px;
        }

        .sidesheet-footer .btn-ds-primary {
            flex-grow: 1.5;
            padding: 16px;
            font-size: 1.05rem;
        }

        .sidesheet-footer .btn-ds-secondary {
            flex-grow: 0.5;
            padding: 16px;
            font-size: 1.05rem;
            color: var(--color-text-primary);
            border-color: var(--color-text-primary);
        }

        @media (max-width: 576px) {
            .sidesheet-footer {
                padding: 16px 20px;
            }
            .sidesheet-footer .btn-ds-secondary {
                display: none;
            }
            .sidesheet-footer .btn-ds-primary {
                width: 100%;
                flex-grow: 1;
            }
        }
            /* 6. Journey Section - High Impact Steps */
        .journey-section {
            background-color: var(--color-bg-onyx);
            color: var(--color-text-ice);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .journey-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(204, 0, 0, 0.05) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            pointer-events: none;
            z-index: 1;
        }

        .journey-section::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(204, 0, 0, 0.03) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            pointer-events: none;
            z-index: 1;
        }

        .journey-header {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 64px auto;
            position: relative;
            z-index: 2;
        }

        .journey-header h2 {
            font-size: var(--font-size-2xl);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin: 12px 0 16px 0;
        }

        .journey-header h2 span {
            color: var(--color-action-orange);
            background: linear-gradient(90deg, var(--brand-red-primary), var(--brand-red-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .journey-header p {
            color: var(--color-text-secondary);
            font-size: var(--font-size-md);
            line-height: 1.6;
        }

        .journey-grid-container {
            position: relative;
            z-index: 2;
        }

        /* Desktop Timeline Connecting Line */
        @media (min-width: 992px) {
            .journey-timeline-line {
                position: absolute;
                top: 72px;
                left: 12%;
                right: 12%;
                height: 2px;
                background: linear-gradient(90deg, 
                    rgba(204, 0, 0, 0.1) 0%, 
                    rgba(204, 0, 0, 0.6) 50%, 
                    rgba(204, 0, 0, 0.1) 100%
                );
                z-index: 1;
            }
        }

        .journey-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 32px;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 576px) {
            .journey-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .journey-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
            }
        }

        /* Glass Card */
        .journey-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-lg);
            padding: var(--spacing-6) var(--spacing-5);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .journey-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(204, 0, 0, 0.08) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .journey-card:hover {
            transform: translateY(-8px);
            border-color: rgba(204, 0, 0, 0.25);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(204, 0, 0, 0.15);
        }

        .journey-card:hover::before {
            opacity: 1;
        }

        /* Number Badge */
        .journey-step-number {
            position: absolute;
            top: 16px;
            right: 20px;
            font-size: 2.5rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.03);
            font-family: var(--font-family-base);
            transition: color 0.4s ease;
            user-select: none;
        }

        .journey-card:hover .journey-step-number {
            color: rgba(204, 0, 0, 0.08);
        }

        /* Glowing Icon Container */
        .journey-icon-wrap {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(18, 18, 18, 0.8);
            border: 2px solid rgba(204, 0, 0, 0.25);
            color: var(--color-text-ice);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .journey-card:hover .journey-icon-wrap {
            border-color: var(--color-action-orange);
            color: var(--color-action-orange);
            box-shadow: 0 0 25px rgba(204, 0, 0, 0.4);
            transform: scale(1.05);
        }

        .step-svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.8;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .journey-card h3 {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--color-text-ice);
            margin: 0 0 12px 0;
            position: relative;
            z-index: 2;
            letter-spacing: -0.01em;
            transition: color 0.3s ease;
        }

        .journey-card:hover h3 {
            color: #ffffff;
        }

        .journey-card p {
            font-size: var(--font-size-sm);
            color: var(--color-text-secondary);
            line-height: 1.5;
            margin: 0;
            position: relative;
            z-index: 2;
            font-weight: 450;
            transition: color 0.3s ease;
        }

        /* Zoom on hover for real photo cards */
        .card-real-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .car-card:hover .card-real-photo {
            transform: scale(1.08);
        }

        /* 7. Footer Section */
        .footer-section {
            background-color: #0c0c0c;
            color: #b3b3b3;
            padding: 80px 0 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
        }

        /* Subtle glowing background accent behind the footer to feel extremely premium */
        .footer-section::before {
            content: '';
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 300px;
            background: radial-gradient(circle, rgba(204, 0, 0, 0.04) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .footer-section .container {
            position: relative;
            z-index: 1;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        @media (min-width: 576px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 992px) {
            .footer-grid {
                grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
                gap: 48px;
            }
        }

        .footer-col h4 {
            color: var(--color-text-ice);
            font-size: var(--font-size-md);
            font-weight: 700;
            margin: 0 0 24px 0;
            position: relative;
            padding-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 32px;
            height: 2px;
            background-color: var(--brand-red-primary);
        }

        .footer-tagline {
            line-height: 1.6;
            margin-bottom: 24px;
            color: var(--neutral-gray);
            font-size: 0.9rem;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--color-text-ice);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background-color: var(--brand-red-primary);
            border-color: var(--brand-red-primary);
            color: #FFFFFF;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(204, 0, 0, 0.25);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: var(--neutral-gray);
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--brand-red-light);
            transform: translateX(4px);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-contact li {
            display: flex;
            gap: 12px;
            line-height: 1.5;
            align-items: flex-start;
        }

        .footer-contact li i {
            color: var(--brand-red-primary);
            font-size: 1.2rem;
            margin-top: 2px;
        }

        .footer-contact li span {
            color: var(--neutral-gray);
            font-size: 0.9rem;
        }

        .footer-hours {
            line-height: 1.6;
            margin-bottom: 24px;
            color: var(--neutral-gray);
            font-size: 0.9rem;
        }

        .footer-security {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            background-color: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-text-ice);
        }

        .security-badge i {
            color: var(--brand-red-light);
            font-size: 0.95rem;
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            text-align: center;
            font-size: 0.85rem;
            color: var(--neutral-gray);
        }

        @media (min-width: 768px) {
            .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: var(--neutral-gray);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--brand-red-light);
        }