        :root {
            --primary-color: #ff4d00;
            --secondary-color: #ffffff;
            --dark-bg: #000000;
            --card-bg: rgba(30, 30, 30, 0.9);
            --text-glow: 0 0 20px rgba(255, 77, 0, 0.8);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark-bg);
            color: var(--secondary-color);
            padding-top: 180px; /* Compensa el navbar fixed-top (logo 80px + padding 40px + espacio extra) */
        }
        
        @media (max-width: 768px) {
            body {
                padding-top: 100px;
            }
        }
        
        @media (max-width: 414px) {
            body {
                padding-top: 80px;
            }
        }
        
        /* Navbar moderna */
        .navbar {
            background: rgba(0, 0, 0, 0.85) !important;
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(0, 0, 0, 0.95) !important;
            box-shadow: 0 2px 20px rgba(255, 77, 0, 0.3);
        }
        
        .navbar-brand img {
            height: 80px;
            width: auto;
            transition: transform 0.3s ease;
        }
        
        .navbar-brand img:hover {
            transform: scale(1.05);
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.5rem 1.5rem !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
            text-shadow: var(--text-glow);
        }
        
        .navbar-toggler {
            border-color: var(--primary-color);
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 77, 0, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 180px;
            position: relative;
        }
        
        .hero-content {
            z-index: 10;
            position: relative;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 8vw, 6rem);
            font-weight: 900;
            text-transform: uppercase;
            color: var(--secondary-color);
            text-shadow: 0 0 30px rgba(255, 77, 0, 0.8),
                         0 0 60px rgba(255, 77, 0, 0.6),
                         0 0 90px rgba(255, 77, 0, 0.4);
            margin-bottom: 1.5rem;
            letter-spacing: 3px;
        }
        
        .hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            color: var(--secondary-color);
            margin-bottom: 2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        /* Hero con slider de imágenes de fondo (Clonado de Rentacar pero con colores Morad) */
        .hero-workshop-slider {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
            background: none !important; /* Desactiva el fondo estático de body/hero */
        }
        
        /* Capas del slider */
        .slider-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }
        
        .slider-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            animation: slideAnimation 50s infinite;
        }
        
        .slider-slide:nth-child(1) {
            animation-delay: 0s;
        }
        
        .slider-slide:nth-child(2) {
            animation-delay: 5s;
        }
        
        .slider-slide:nth-child(3) {
            animation-delay: 10s;
        }
        
        .slider-slide:nth-child(4) {
            animation-delay: 15s;
        }
        
        .slider-slide:nth-child(5) {
            animation-delay: 20s;
        }
        
        .slider-slide:nth-child(6) {
            animation-delay: 25s;
        }
        
        .slider-slide:nth-child(7) {
            animation-delay: 30s;
        }
        
        .slider-slide:nth-child(8) {
            animation-delay: 35s;
        }
        
        .slider-slide:nth-child(9) {
            animation-delay: 40s;
        }
        
        .slider-slide:nth-child(10) {
            animation-delay: 45s;
        }
        
        @keyframes slideAnimation {
            0%, 9% {
                opacity: 1;
            }
            11%, 100% {
                opacity: 0;
            }
        }
        
        /* Overlay oscuro y moderno con gradiente de la marca Morad */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(255, 77, 0, 0.4) 100%);
            z-index: 2;
        }
        
        .btn-morad {
            background: linear-gradient(135deg, var(--primary-color), #ff6b35);
            color: var(--secondary-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 77, 0, 0.4);
        }
        
        .btn-morad:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 77, 0, 0.6);
            color: var(--secondary-color);
        }
        
        /* Servicios Cards */
        .services-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
        }
        
        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--secondary-color);
            text-shadow: 0 0 20px rgba(255, 77, 0, 0.6);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            margin: 1rem auto 0;
            border-radius: 2px;
        }
        
        .service-card {
            background: var(--card-bg);
            border: 2px solid rgba(255, 77, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            height: 100%;
            backdrop-filter: blur(10px);
        }
        
        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(255, 77, 0, 0.4),
                        0 0 60px rgba(255, 77, 0, 0.2);
        }
        
        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(255, 77, 0, 0.6);
        }
        
        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        
        .service-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Características */
        .features-section {
            padding: 5rem 0;
            background: rgba(0, 0, 0, 0.6);
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            background: rgba(255, 77, 0, 0.1);
            transform: translateX(10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-right: 1.5rem;
            width: 60px;
            text-align: center;
        }
        
        .feature-text h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .feature-text p {
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, rgba(255, 77, 0, 0.9), rgba(255, 107, 53, 0.9));
            text-align: center;
        }
        
        .cta-section h2 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-light-custom {
            background: var(--secondary-color);
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-light-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            color: var(--primary-color);
        }
        
        /* Page Header (Subpáginas) */
        .page-header {
            padding: 200px 0 80px;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 77, 0, 0.3), rgba(0, 0, 0, 0.8));
            border-bottom: 2px solid rgba(255, 77, 0, 0.2);
        }
        
        .page-header h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 20px rgba(255, 77, 0, 0.8);
            margin-bottom: 1rem;
        }
        
        .page-header p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(20, 20, 20, 0.95));
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--primary-color);
        }
        
        .footer-logo {
            height: 100px;
            margin-bottom: 1.5rem;
        }
        
        .footer-section h5 {
            font-family: 'Oswald', sans-serif;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--primary-color);
        }
        
        .social-icons a {
            display: inline-block;
            width: 45px;
            height: 45px;
            background: rgba(255, 77, 0, 0.2);
            border-radius: 50%;
            text-align: center;
            line-height: 45px;
            margin-right: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* WhatsApp Button Flotante */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 0.5rem 1rem;
            }
            
            .navbar-brand img {
                height: 60px;
            }
            
            .hero-section {
                padding-top: 60px;
            }
            
            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
        }

        /* Barra de Scroll Personalizada Premium */
        ::-webkit-scrollbar {
            width: 10px;
            background-color: #000000;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
            border-left: 1px solid rgba(255, 77, 0, 0.1);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #ff4d00, #ff6b35);
            border-radius: 5px;
            border: 2px solid #0a0a0a;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #ff6b35;
            box-shadow: 0 0 10px rgba(255, 77, 0, 0.8);
        }

        /* Soporte para Firefox */
        html {
            scrollbar-width: thin;
            scrollbar-color: #ff4d00 #0a0a0a;
        }

