/* ===== RESET & BASE ===== */
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: #FBFAF6;
            color: #14161A;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }
        .font-serif {
            font-family: 'Playfair Display', serif;
        }
        section[id] {
            scroll-margin-top: 5.5rem;
        }
        ::selection {
            background: #C31F2E;
            color: #fff;
        }
        :focus-visible {
            outline: 3px solid #C31F2E;
            outline-offset: 2px;
        }
        
        .w-full {
            width: 100%;
        }

        /* ===== UTILITY ===== */
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            font-size: .72rem;
            font-weight: 700;
            letter-spacing: .2em;
            text-transform: uppercase;
        }
        .eyebrow::before {
            content: '';
            width: 18px;
            height: 2px;
            background: currentColor;
            display: inline-block;
            flex-shrink: 0;
        }
        .btn {
            transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
        }
        .btn:hover {
            transform: translateY(-2px);
        }

        /* ===== NAV ===== */
        .nav-link {
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 0;
            height: 2px;
            background: #C31F2E;
            transition: width .3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
        }

        /* ===== CAR CARDS ===== */
        .car-card {
            transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s;
        }
        .car-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 24px 50px -20px rgba(20, 22, 26, .25);
        }
        .car-card img {
            transition: transform .6s ease;
        }
        .car-card:hover img {
            transform: scale(1.06);
        }

        /* ===== REVEAL ANIMATION ===== */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
        }
        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== MARQUEE ===== */
        .marquee {
            animation: mq 35s linear infinite;
        }
        .marquee:hover {
            animation-play-state: paused;
        }
        @keyframes mq {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== PULSE (WhatsApp) ===== */
        .pulse {
            animation: pulse-ring 1.8s cubic-bezier(.4, 0, .6, 1) infinite;
        }
        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* ===== ACCORDION ===== */
        .accordion-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease;
        }

        /* ===== BACK TO TOP ===== */
        #backToTop {
            opacity: 0;
            pointer-events: none;
            transform: translateY(10px);
            transition: opacity .3s ease, transform .3s ease;
        }
        #backToTop.show {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* ===== MOBILE BOTTOM BAR ===== */
        @media (max-width: 1023px) {
            body {
                padding-bottom: 66px;
            }
        }

        /* ===== RANGE INPUT ===== */
        input[type="range"] {
            accent-color: #C31F2E;
        }
        
        /* ===== Estilos exclusivos para la tarjeta de waxe y mapa ===== */

        /* ----- TARJETA PRINCIPAL ----- */
        .find-us-card {
            background-color: #fbfaf6;
            border-radius: 1rem;
            padding: 1.5rem 1.5rem 1rem 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
            max-width: 340px;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            margin-top: 10px;
        }

        .find-us-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
        }

        /* --- Encabezado: AUTO/DEAL --- */
        .find-us-card .logo-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            color: #1a1a1a;
            margin-bottom: 0.2rem;
        }

        .find-us-card .logo-title i {
            color: #c92a2a;
            font-size: 1.1rem;
        }

        .find-us-card .logo-title span {
            background: #c92a2a;
            color: white;
            font-size: 0.6rem;
            font-weight: 700;
            padding: 0.1rem 0.6rem;
            border-radius: 20px;
            letter-spacing: 0.3px;
            text-transform: uppercase;
        }

        /* --- Subtítulo --- */
        .find-us-card .subhead {
            font-size: 0.8rem;
            color: #555;
            margin-bottom: 0.8rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.5rem;
            font-weight: 500;
        }

        /* --- Fila de Google Maps --- */
        .find-us-card .map-row {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: #f2f2f2;
            border-radius: 30px;
            padding: 0.3rem 0.3rem 0.3rem 1rem;
            margin: 0.8rem 0;
        }

        .find-us-card .map-row i {
            font-size: 1.2rem;
            color: #1a1a1a;
        }

        .find-us-card .map-row .google-badge {
            background: #1a1a1a;
            color: white;
            font-weight: 600;
            font-size: 0.75rem;
            padding: 0.25rem 0.8rem;
            border-radius: 30px;
            margin-left: auto;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .find-us-card .map-row .google-badge i {
            color: #fbbc04;
            font-size: 0.9rem;
        }

        /* --- Fila de búsquedas "Q." --- */
        .find-us-card .q-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.4rem 0.6rem;
            background: #fafafa;
            border-radius: 20px;
            padding: 0.3rem 1rem;
            margin: 0.5rem 0;
        }

        .find-us-card .q-row .q-label {
            font-size: 0.7rem;
            color: #777;
            font-weight: 600;
            letter-spacing: 0.3px;
        }

        .find-us-card .q-row .q-item {
            background: #e8e8e8;
            border-radius: 20px;
            padding: 0.1rem 0.7rem;
            font-size: 0.7rem;
            color: #222;
            font-weight: 500;
            white-space: nowrap;
        }

        .find-us-card .q-row .q-item i {
            font-size: 0.6rem;
            color: #888;
            margin-right: 0.2rem;
        }

        .find-us-card .q-row .q-item.highlight {
            background: #d4d4d4;
            font-weight: 600;
        }

        /* --- Parte inferior: íconos + botón Maps --- */
        .find-us-card .bottom-icons {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 0.5rem;
            padding-top: 0.4rem;
            border-top: 1px solid #eaeaea;
        }

        .find-us-card .bottom-icons .brands {
            display: flex;
            gap: 0.8rem;
            font-size: 1rem;
            color: #333;
        }

        .find-us-card .bottom-icons .brands i {
            opacity: 0.7;
        }

        .find-us-card .bottom-icons .brands i.fa-google {
            color: #4285f4;
        }

        .find-us-card .bottom-icons .brands i.fa-waze {
            color: #33ccff;
        }

        .find-us-card .bottom-icons .btn-maps {
            background: #1a1a1a;
            color: white;
            border: none;
            padding: 0.25rem 1rem;
            border-radius: 30px;
            font-size: 0.65rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            cursor: default;
        }

        .find-us-card .bottom-icons .btn-maps i {
            font-size: 0.7rem;
        }
        
        .star-glow {
            filter: drop-shadow(0 0 6px rgba(250, 204, 21, 0.3));
            transition: all 0.3s ease;
        }
        
        .star-glow:hover {
            filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.6));
            transform: scale(1.15);
        }
        
        /* Select con diseño más elaborado */
        .custom-select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding-right: 2rem;
            font-size: 1rem;
            color: #0f0e0e;
            width: 100%;
            border-bottom: 2px solid rgba(15, 14, 14, 0.15);
            padding: 0.5rem 2rem 0.5rem 0;
            outline: none;
        }
        
        .custom-select:focus {
            border-bottom-color: #c92a2a;
        }
        
        /* Opciones del dropdown */
        .custom-select option {
            background: #f5f0e8;
            color: #0f0e0e;
            padding: 12px 16px;
            font-size: 0.95rem;
            border: none;
            outline: none;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .custom-select option:hover {
            background: #c92a2a;
            color: white;
        }
        
        .custom-select option:checked {
            background: #c92a2a;
            color: white;
        }
        
        /* Contenedor del select con ícono */
        .select-container {
            position: relative;
            width: 100%;
        }
        
        .select-container .select-icon {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(15, 14, 14, 0.4);
            pointer-events: none;
            transition: transform 0.3s ease;
            font-size: 0.75rem;
        }
        
        .select-container:focus-within .select-icon {
            transform: translateY(-50%) rotate(180deg);
            color: #c92a2a;
        }
        
        /* Animación de entrada para el dropdown */
        @keyframes dropdownSlide {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .custom-select option {
            animation: dropdownSlide 0.2s ease forwards;
        }
        
        /* Animación de rebote suave para el ícono de WhatsApp */
        @keyframes bounce-slow {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-4px);
            }
        }
        
        .animate-bounce-slow {
            animation: bounce-slow 2s ease-in-out infinite;
        }
        
        /* Sombra superior más pronunciada */
        .shadow-\[0_-4px_20px_rgba(0,0,0,0.5)\] {
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
        }
        
        /* Efecto de pulsación en el botón WhatsApp */
        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(201, 42, 42, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(201, 42, 42, 0.6);
            }
        }
        
        /* Opcional: añadir un pequeño badge de "Activo" al botón WhatsApp */
        .badge-active {
            position: absolute;
            top: -4px;
            right: -4px;
            width: 8px;
            height: 8px;
            background: #25D366;
            border-radius: 50%;
            border: 2px solid #0f0e0e;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse-dot {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }
        
        /* ============================================================ */
        /* SLIDER VISÍTANOS - Estilos adicionales */
        /* ============================================================ */
        
        /* Asegurar que el track solo muestre los slides que tiene */
        #visitSliderTrack {
            display: flex;
            width: 100%;
            will-change: transform;
        }
        
        /* Cada slide ocupa exactamente el 100% */
        .slide-item {
            flex: 0 0 100%;
            width: 100%;
            min-width: 100%;
        }
        
        /* Imágenes dentro de los slides */
        .slide-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        /* Transición suave */
        #visitSliderTrack {
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        /* Dots */
        .visit-dot {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .visit-dot.active {
            background-color: rgba(255, 255, 255, 0.7);
            width: 1.5rem;
        }
