
        :root {
            --kia-black: #05141F;
            --kia-white: #FFFFFF;
            --kia-red: #BB162B;
            --kia-gray: #6D6E71;
            --kia-light-gray: #F8F9FA;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Kia Signature Regular', 'Segoe UI', sans-serif;
            color: var(--kia-black);
            overflow-x: hidden;
            background-color: var(--kia-white);
        }

        /* Navbar con efecto de scroll */
        .navbar-custom {
            background: transparent;
            backdrop-filter: none;
            padding: 10px 0;
            border-bottom: none;
            transition: all 0.3s ease;
            border-bottom:1px solid rgba(232, 232, 232, 0.2);
        }

        .navbar-custom.scrolled {
            background: var(--kia-white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }

        .navbar-custom.scrolled .navbar-brand img {
            filter: none;
            filter: brightness(0);
            height:30px;
        }

        .navbar-custom.scrolled .btn-outline-light {
            color: var(--kia-black);
            border-color: var(--kia-black);
        }

        .navbar-custom.scrolled .btn-outline-light:hover {
            background-color: var(--kia-black);
            color: var(--kia-white);
        }

        .navbar-custom.scrolled .btn-light {
            background-color: var(--kia-black);
            color: var(--kia-white);
            border-color: var(--kia-black);
        }

        .navbar-brand img {
            height: 60px;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .btn-outline-light {
            border-radius: 4px;
            padding: 8px 24px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-light {
            border-radius: 4px;
            padding: 8px 24px;
            font-size: 0.95rem;
            background-color: var(--kia-white);
            border-color: var(--kia-white);
            color: var(--kia-black);
            transition: all 0.3s ease;
        }

        .btn-light:hover {
            background-color: transparent;
            color: var(--kia-white);
        }

        /* Hero Section con imagen de fondo */
        .hero-section {
            min-height: 100vh;
            background-image: url('https://kia-tasman.com/_next/image?url=%2Fplaceholders%2Flifestyle%2Fconfidence-v2.jpg&w=3840&q=75');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-image 1.5s ease-in-out;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--kia-white);
            text-align: center;
            padding: 0 20px;
        }

        .hero-pretitle {
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 300;
        }

        .hero-title {
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.1;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
        }

        .btn-hero {
            background-color: var(--kia-white);
            color: var(--kia-black);
            border: 2px solid var(--kia-white);
            padding: 14px 35px;
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
            margin-left:10px;
        }

        .btn-hero:hover {
            background-color: transparent;
            color: var(--kia-white);
            transform: translateY(-2px);
        }
        
        .btn-hero-sec {
            
            background-color: transparent;
            color: var(--kia-white);
            border: 2px solid var(--kia-white);
            padding: 14px 35px;
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border-radius: 4px;
            text-decoration: none; 
            display: inline-block;
            margin-top: 20px;
            margin-left:10px;
        }

        .btn-hero-sec:hover {
            background-color: var(--kia-white);
            color: var(--kia-black);
            transform: translateY(-2px);
        }

        /* Carousel indicators custom */
        .hero-carousel-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .hero-carousel-indicators span {
            width: 40px;
            height: 3px;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s;
        }

        .hero-carousel-indicators span.active {
            background-color: var(--kia-white);
            width: 50px;
        }

        /* Section después del hero */
        .content-section {
            padding: 0;
        }

        .split-section {
            display: flex;
            min-height: 700px;
        }

        .split-image {
            flex: 1;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .split-boxes {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .split-box {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 40px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }
        
        .split-box::after {
            content: '';
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: currentColor;
            transition: width 0.3s ease;
        }
        
        .split-box:hover::after {
            width: 60px;
        }
        
        .split-box:hover {
            transform: scale(1.02);
        }

        .split-box-dark {
            background-color: var(--kia-black);
            color: var(--kia-white);
        }

        .split-box-light {
            background-color: var(--kia-white);
            color: var(--kia-black);
        }

        .split-box-gray {
            background-color: #E8E8E8;
            color: var(--kia-black);
        }

        .split-box .feature-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .split-box-dark .feature-icon {
            color: var(--kia-white);
        }

        .split-box-light .feature-icon,
        .split-box-gray .feature-icon {
            color: var(--kia-black);
        }

        .split-box .feature-title {
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

        .split-box .feature-text {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
            max-width: 350px;
        }

        .split-content {
            flex: 1;
            background-color: var(--kia-black);
            color: var(--kia-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px;
            text-align: center;
        }

        .split-content h2 {
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }

        .split-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 500px;
        }

        /* Grid de características */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .feature-box {
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
        }

        .feature-box:nth-child(1) {
            background-color: var(--kia-black);
            color: var(--kia-white);
        }

        .feature-box:nth-child(2) {
            background-color: var(--kia-white);
            color: var(--kia-black);
        }

        .feature-box:nth-child(3) {
            background-color: var(--kia-white);
            color: var(--kia-black);
        }

        .feature-box:nth-child(4) {
            background-color: #E8E8E8;
            color: var(--kia-black);
        }

        .feature-box:hover {
            transform: scale(1.02);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin-bottom: 25px;
        }

        .feature-box:nth-child(1) .feature-icon {
            color: var(--kia-white);
        }

        .feature-box:nth-child(2) .feature-icon,
        .feature-box:nth-child(3) .feature-icon,
        .feature-box:nth-child(4) .feature-icon {
            color: var(--kia-black);
        }

        .feature-title {
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-text {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        /* Footer con colores invertidos */
        .kia-footer {
            background-color: var(--kia-black);
            color: var(--kia-white);
            padding: 50px 0 0 0;
            margin-top: 0;
            border-top: none;
        }

        .footer-content {
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .footer-logo {
            max-width: 210px;
            margin-bottom: 20px;
            filter: brightness(0) invert(1);
        }

        .footer-section h5 {
            font-family: 'Kia Signature Bold', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--kia-white);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--kia-white);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            position: relative;
            display: inline-block;
            transition: color 0.3s;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--kia-white);
            transition: width 0.3s;
        }

        .footer-links a:hover {
            color: var(--kia-white);
        }

        .footer-links a:hover::before {
            width: 100%;
        }

        .footer-social-icons {
            display: flex;
            gap: 20px;
            margin-top: 25px;
        }

        .footer-social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: transparent;
            color: var(--kia-white);
            text-decoration: none;
            transition: all 0.3s;
            border-radius: 4px;
            border: 1px solid var(--kia-white);
        }

        .footer-social-icons a i {
            font-size: 1.3rem;
        }

        .footer-social-icons a:hover {
            background-color: var(--kia-white);
            color: var(--kia-black);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-pretitle {
                font-size: 0.9rem;
            }

            .split-section {
                flex-direction: column;
            }

            .split-image {
                min-height: 350px;
            }

            .split-boxes {
                flex-direction: column;
            }

            .split-box {
                min-height: 250px;
                padding: 40px 20px;
            }

            .split-content {
                padding: 40px 20px;
            }

            .split-content h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .feature-box {
                min-height: 300px;
            }

            .footer-logo {
                text-align: center;
                margin: 0 auto 30px;
                display: block;
            }

            .footer-social-icons {
                justify-content: center;
            }

            .footer-section {
                margin-bottom: 30px;
                text-align: center;
            }

            .footer-section h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            
            .navbar-custom.scrolled {
                background: var(--kia-white);
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
                padding: 5px 0;
            }
    
            .navbar-custom.scrolled .navbar-brand img {
                filter: none;
                filter: brightness(0);
                height:25px;
            }
        }
/* User Menu */
.user-menu {
    position: relative;
}

.btn-user {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.btn-user:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-radius:5px;
}

.user-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kia-white);
    color: var(--kia-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-name-small {
    font-size: 0.95rem;
    color: var(--kia-white);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-user i.bi-chevron-down {
    font-size: 0.8rem;
    color: var(--kia-white);
    transition: transform var(--transition-speed);
}

.btn-user.active i.bi-chevron-down {
    transform: rotate(180deg);
}

/* User Menu */
.navbar-custom.scrolled .user-menu {
    position: relative;
}

.navbar-custom.scrolled .btn-user {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.navbar-custom.scrolled .btn-user:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius:5px;
}

.navbar-custom.scrolled .user-avatar-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kia-black);
    color: var(--kia-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.navbar-custom.scrolled .user-name-small {
    font-size: 0.95rem;
    color: var(--kia-black);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navbar-custom.scrolled .btn-user i.bi-chevron-down {
    font-size: 0.8rem;
    color: var(--kia-dark-gray);
    transition: transform var(--transition-speed);
}

.navbar-custom.scrolled.btn-user.active i.bi-chevron-down {
    transform: rotate(180deg);
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: var(--kia-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed) var(--transition-ease);
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-initials {
    font-family: 'Kia Signature Bold', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dropdown-header {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-name {
    font-family: 'Kia Signature Bold', sans-serif;
    font-size: 0.95rem;
    color: var(--kia-black);
    margin-bottom: 4px;
}

.dropdown-email {
    font-size: 0.85rem;
    color: var(--kia-medium-gray);
    margin: 0;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--kia-black);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color var(--transition-speed);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item i {
    font-size: 1.1rem;
    width: 20px;
}

.dropdown-item.text-danger {
    color: var(--kia-red);
}        