 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --color-primary: #0A1628;
            --color-accent: #FF6B35;
            --color-secondary: #F7931E;
            --color-text: #2D3748;
            --color-text-light: #718096;
            --color-bg: #FAFAFA;
            --font-display: 'Playfair Display', serif;
            --font-body: 'Outfit', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: var(--font-body);
            background: var(--color-bg);
            min-height: 100vh;
            
            align-items: center;
            justify-content: center;
            
        }

        /* BEM: Block */
        .banner {
            margin: auto;
            max-width: 1920px;
            width: 100%;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            /* border-radius: 24px; */
            overflow: hidden;
            box-shadow: 
                0 20px 60px rgba(10, 22, 40, 0.08),
                0 0 0 1px rgba(10, 22, 40, 0.04);
            position: relative;
            animation: bannerFadeIn 1s ease-out;
            border-radius: 0 0 0 240px;
        }

        @keyframes bannerFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* BEM: Element - Container */
        .banner__container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 600px;
            position: relative;
        }

        /* BEM: Element - Content */
        .banner__content {
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            z-index: 2;
            animation: contentSlideIn 0.8s ease-out 0.2s backwards;
        }

        @keyframes contentSlideIn {
            from {
                opacity: 0;
                transform: translateX(-40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* BEM: Element - Label */
        .banner__label {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color:#016db6;
            margin-bottom: 24px;
            display: inline-block;
            position: relative;
            animation: labelFade 0.6s ease-out 0.4s backwards;
        }

        @keyframes labelFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .banner__label::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
            border-radius: 2px;
        }

        /* BEM: Element - Title */
        .banner__title {
            font-family: font-family: 'Franklin-Gothic-Demi-Cond-Regular';
            font-size: 64px;
            font-weight: 900;
            line-height: 1.1;
            color: var(--color-primary);
            margin-bottom: 28px;
            letter-spacing: -1px;
            animation: titleReveal 0.8s ease-out 0.5s backwards;
        }

        @keyframes titleReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* BEM: Modifier - Highlight */
        .banner__title--highlight {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        /* BEM: Element - Description */
        .banner__description {
            font-family: var(--font-body);
            font-size: 18px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--color-text-light);
            margin-bottom: 40px;
            max-width: 700px;
            animation: descriptionFade 0.8s ease-out 0.7s backwards;
        }

        @keyframes descriptionFade {
            from {
                opacity: 0;
                transform: translateY(15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* BEM: Element - CTA Group */
        .banner__cta-group {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: ctaFade 0.8s ease-out 0.9s backwards;
        }

        @keyframes ctaFade {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* BEM: Element - Button */
        .banner__button {
            font-family: var(--font-body);
            padding: 16px 36px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition-smooth);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        /* BEM: Modifier - Primary Button */
        .banner__button--primary {
            background: #016db6;
            color: white;
           
        }

        .banner__button--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(255, 107, 53, 0.35);
        }

        .banner__button--primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .banner__button--primary:hover::before {
            left: 100%;
        }

        /* BEM: Modifier - Secondary Button */
        .banner__button--secondary {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }

        .banner__button--secondary:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* BEM: Element - Image Container */
        .banner__image-container {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0A1628 0%, #1a2744 100%);
        }

        .banner__image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        /* BEM: Element - Image */
        .banner__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            animation: imageZoom 1s ease-out 0.3s backwards;
            /* mix-blend-mode: luminosity; */
            opacity: 0.9;
        }

        @keyframes imageZoom {
            from {
                transform: scale(1.1);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 0.9;
            }
        }

        /* BEM: Element - Decorative Elements */
        .banner__decoration {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            opacity: 0.06;
            z-index: 1;
            animation: float 8s ease-in-out infinite;
        }

        /* BEM: Modifier - Decoration Positions */
        .banner__decoration--1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
        }

        .banner__decoration--2 {
            width: 300px;
            height: 300px;
            bottom: -80px;
            left: -80px;
            animation-delay: 2s;
        }
        .tex-carrocerias{ max-width: 1400px; margin: auto;}
        .tex-carrocerias h2{font-family: 'Franklin-Gothic-Demi-Cond-Regular';}
        .tex-carrocerias p{text-align: justify;}
        .img-text{gap: 30px; display: grid; grid-template-columns: 50% 50%; align-items: center; justify-items: center;}
        html { scroll-behavior: smooth;}
       .carrocerias-tipo-cama-baja{padding: 30px;}

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(20px, -20px) scale(1.05);
            }
        }
   
    .img-Der{align-items: center;}
    .img-Der img{width: 100%;}
    .textIzq{align-items: center;}

            /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .banner__container {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .banner__content {
                padding: 60px 40px;
            }

            .banner__title {
                font-size: 52px;
            }

            .banner__image-container {
                min-height: 400px;
                order: -1;
            }
            .banner {
                       border-radius: 0 0 0 0px;
                   }

                   .img-text{grid-template-columns: 100%;}
        }

        @media (max-width: 768px) {
            .banner__content {
                padding: 40px 30px;
            }

            .banner__title {
                font-size: 42px;
            }

            .banner__description {
                font-size: 16px;
            }

            .banner__cta-group {
                flex-direction: column;
            }

            .banner__button {
                width: 100%;
                justify-content: center;
            }

            .banner__image-container {
                min-height: 300px;
            }
        }

        @media (max-width: 480px) {
            .banner {
                border-radius: 16px;
            }

            .banner__content {
                padding: 30px 24px;
            }

            .banner__title {
                font-size: 36px;
            }

            .banner__label {
                font-size: 12px;
            }

            .banner__description {
                font-size: 15px;
            }
        }