    :root {
        --solseg-primary: #491450;
        --solseg-dark: #28082e;
        --solseg-magenta: #a6418d;
        --solseg-violet: #8e24aa;
        --solseg-orange: #e25d16;
        --solseg-gold: #e58200;
        --bg-light: #f4f0f5;
        --bg-ultra-light: #fcfbfe;
        --text-dark: #1a1a1a;
        --text-body: #3f4254;
        --text-muted: #87909e;
        --border-light: rgba(73, 20, 80, 0.12);
    }

    /* --- BASE & TYPOGRAPHY --- */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--text-body);
        background-color: #ffffff;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
        color: var(--text-dark);
        font-weight: 300;
        letter-spacing: -1px;
    }

    .section-eyebrow {
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--solseg-magenta);
        display: block;
        margin-bottom: 1rem;
    }

    .editorial-title {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 200;
        line-height: 1.05;
        letter-spacing: -2px;
        margin-bottom: 2rem;
    }

    .editorial-title strong {
        font-weight: 600;
        color: var(--solseg-primary);
    }

    p.lead-editorial {
        font-size: 1.15rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-body);
        max-width: 650px;
            margin-left: 150px;
    margin-bottom: 50px !important;
    }

    p.lead-editorial-solseg {
        font-size: 1.15rem;
        font-weight: 300;
        line-height: 1.7;
        color: var(--text-body);
        max-width: 650px;
    }

    /* --- LAYOUT SPACING (EDITORIAL MINIMALISM) --- */
    .section-padding {
        padding: 7rem 4rem;
    }

    @media (max-width: 991px) {
        .section-padding {
            padding: 4rem 1.5rem;
        }
    }

    /* --- BUTTONS & INTERACTION --- */
    .btn-solseg {
        border-radius: 0;
        padding: 1.1rem 2.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
    }

    .btn-solseg-primary {
        background-color: var(--solseg-primary);
        color: #ffffff !important;
        border: 1px solid var(--solseg-primary);
    }

    .btn-solseg-primary:hover {
        background-color: var(--solseg-dark);
        border-color: var(--solseg-dark);
        transform: translateY(-2px);
    }

    .btn-solseg-ghost {
        background-color: transparent;
        color: #cda8d2 !important;
        border: 1px solid #cda8d2;
    }

    .btn-solseg-ghost:hover {
        background-color: var(--solseg-primary);
        color: #ffffff !important;
        transform: translateY(-2px);
    }

    .btn-solseg-ghost-white {
        background-color: transparent;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .btn-solseg-ghost-white:hover {
        background-color: #ffffff;
        color: var(--solseg-dark) !important;
        border-color: #ffffff;
        transform: translateY(-2px);
    }

    /* --- NAVBAR --- */
    .navbar-solseg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050;
        padding: 2rem 4rem;
        transition: all 0.4s ease;
        background: transparent;
    }

    .navbar-solseg.scrolled {
        padding: 1rem 4rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 30px rgba(73, 20, 80, 0.06);
    }

    .navbar-brand img {
        height: 42px;
        width: auto;
        transition: transform 0.3s ease;
    }

    .nav-link-editorial {
        color: #ffffff;
        font-size: 0.8rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-left: 2rem;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
    }

    .navbar-solseg.scrolled .nav-link-editorial {
        color: var(--text-dark);
    }

    .nav-link-editorial:hover {
        color: var(--solseg-magenta) !important;
    }

    .mobile-toggler {
        border: none;
        background: transparent;
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        display: none;
    }

    .navbar-solseg.scrolled .mobile-toggler {
        color: var(--solseg-primary);
    }

    /* Fullscreen Mobile Menu */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--solseg-dark);
        z-index: 1100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-overlay .close-btn {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: #ffffff;
        font-size: 2rem;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-nav-link {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 200;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        margin: 1.2rem 0;
        transition: color 0.3s ease;
    }

    .mobile-nav-link:hover {
        color: var(--solseg-magenta);
    }

    /* --- HERO SECTION --- */
    .hero-section {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background-color: var(--solseg-dark);
        color: #ffffff;
        padding: 0 4rem;
        overflow: hidden;
    }

    .hero-bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(40, 8, 46, 0.92) 0%, rgba(73, 20, 80, 0.75) 50%, rgba(20, 5, 24, 0.95) 100%),
                    url('../img/banner.jpg') center/cover no-repeat;
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: clamp(3.2rem, 6vw, 5.8rem);
        font-weight: 100;
        line-height: 1.02;
        letter-spacing: -2px;
        margin-bottom: 2rem;
        color: #ffffff;
    }

    .hero-title strong {
        font-weight: 600;
        background: linear-gradient(135deg, #ffffff 0%, #e0d5e1 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1.6;
        color: #e0d5e1;
        margin-bottom: 3rem;
        max-width: 620px;
    }

    /* --- TRUST / STATS STRIP --- */
    .stats-strip {
        background-color: var(--bg-ultra-light);
        border-bottom: 1px solid var(--border-light);
        padding: 3.5rem 4rem;
    }

    .stat-item {
        border-right: 1px solid var(--border-light);
        padding: 1rem 2rem;
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-number {
        font-size: 3.2rem;
        font-weight: 200;
        color: var(--solseg-primary);
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--text-muted);
    }

    /* --- SERVICES (EDITORIAL GRID) --- */
    .services-section {
        background-color: #ffffff;
    }

    .service-row-item {
        border-bottom: 1px solid var(--border-light);
        padding: 3rem 0;
        transition: background-color 0.3s ease;
    }

    .service-row-item:hover {
        background-color: var(--bg-ultra-light);
    }

    .service-number {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--solseg-magenta);
        letter-spacing: 2px;
    }

    .service-title {
        font-size: 1.8rem;
        font-weight: 400;
        color: var(--text-dark);
        margin-bottom: 0.5rem;
    }

    .service-desc {
        font-size: 0.95rem;
        color: var(--text-body);
        line-height: 1.6;
        font-weight: 300;
    }

    /* --- SOLSEG MÁS & SISTEMA ADA (SPECIAL FEATURE) --- */
    .solsegmas-section {
        background-color: var(--bg-light);
        position: relative;
        overflow: hidden;
    }

    .badge-ai {
        background: linear-gradient(135deg, var(--solseg-primary), var(--solseg-violet));
        color: #ffffff;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        padding: 6px 14px;
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 1.5rem;
    }

    .solsegmas-card {
        background: #ffffff;
        border: 1px solid var(--border-light);
        padding: 3rem;
        height: 100%;
        transition: transform 0.3s ease;
    }

    .solsegmas-card:hover {
        transform: translateY(-4px);
    }

    .solsegmas-feature-list {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

    .solsegmas-feature-list li {
        font-size: 1rem;
        font-weight: 300;
        padding: 0.8rem 0;
        border-bottom: 1px dashed var(--border-light);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .solsegmas-feature-list li i {
        color: var(--solseg-orange);
        font-size: 0.9rem;
    }

    /* --- SPLIT LAYOUT SECTIONS --- */
    .split-image-container {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 500px;
        overflow: hidden;
    }

    .split-image-container img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        position: absolute;
        top: 0;
        left: 0;
        filter: grayscale(15%) contrast(105%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .split-image-container:hover img {
        transform: scale(1.03);
    }

    /* --- FOOTER & CONTACT --- */
    .footer-dark {
        background-color: var(--solseg-dark);
        color: #ffffff;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .minimal-input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        padding: 1.2rem 0;
        color: #ffffff;
        font-size: 1rem;
        font-weight: 300;
        transition: border-color 0.3s ease;
        outline: none;
        border-radius: 0;
    }

    .minimal-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
    }

    .minimal-input:focus {
        border-color: var(--solseg-magenta);
    }

    .contact-info-block {
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 3rem;
    }

    .social-link {
        color: #ffffff;
        font-size: 1.2rem;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-link:hover {
        background-color: var(--solseg-magenta);
        border-color: var(--solseg-magenta);
        color: #ffffff;
        transform: translateY(-2px);
    }

    /* --- FLOATING WHATSAPP BUTTON --- */
    .whatsapp-float {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
        z-index: 1000;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: #ffffff;
    }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 991px) {
        .navbar-solseg {
            padding: 1.5rem 1.5rem;
        }
        .navbar-solseg.scrolled {
            padding: 1rem 1.5rem;
        }
        .nav-link-editorial {
            display: none;
        }
        .mobile-toggler {
            display: block;
        }
        .hero-section {
            padding: 0 1.5rem;
        }
        .stats-strip {
            padding: 3rem 1.5rem;
        }
        .stat-item {
            border-right: none;
            border-bottom: 1px solid var(--border-light);
            padding: 1.5rem 0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .contact-info-block {
            border-left: none;
            padding-left: 0;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 3rem;
        }
    }

    .footer-dark .footer-signature {
        font-size: 0.8rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer-dark .footer-signature a {
        color: #e0d5e1;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .footer-dark .footer-signature a:hover {
        color: var(--solseg-magenta);
        text-decoration: underline;
    }

    /* SweetAlert personalizado con estilo editorial */
.swal2-popup {
border-radius: 0 !important;
font-family: 'Inter', sans-serif !important;
padding: 2.5rem !important;
}

.swal2-title {
font-weight: 300 !important;
color: #1a1a1a !important;
letter-spacing: -1px !important;
}

.swal2-html-container {
font-weight: 300 !important;
color: #3f4254 !important;
font-size: 0.95rem !important;
}

.swal2-styled.swal2-confirm {
border-radius: 0 !important;
background-color: #491450 !important;
font-size: 0.75rem !important;
font-weight: 600 !important;
letter-spacing: 2px !important;
text-transform: uppercase !important;
padding: 0.8rem 2rem !important;
box-shadow: none !important;
}

/* Logo blanco cuando el Navbar es transparente */
.navbar-solseg:not(.scrolled) .navbar-brand img {
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Vuelve a los colores originales al hacer scroll */
.navbar-solseg.scrolled .navbar-brand img {
    filter: none;
}

/* --- MEJORA PARA LAYOUT SPLIT (SIN MÁRGENES HUÉRFANOS) --- */
.split-section {
    position: relative;
    overflow: hidden;
}

.split-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
    overflow: hidden;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.split-text-content {
    padding: 6rem 5rem;
}

/* Adaptación Responsive para Móviles y Tablets */
@media (max-width: 991px) {
    .split-image-container {
        min-height: 320px;
        max-height: 420px;
    }
    
    .split-text-content {
        padding: 3.5rem 1.5rem !important;
    }
}

/* --- SECCIÓN PAS CON IMAGEN APAISADA --- */
.pas-section {
    background-color: #ffffff;
    padding: 4.5rem 0; /* Padding moderado para simular la proporción del 80% */
}

.pas-image-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pas-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Ajustes para pantallas chicas y celulares */
@media (max-width: 991px) {
    .pas-section {
        padding: 3rem 1.5rem;
    }
}

.solsegmas-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solsegmas-feature-list li {
    display: flex;
    align-items: flex-start; /* Alinea el ícono con la primera línea de texto */
    justify-content: flex-start; /* Evita que se separen hacia los extremos */
    gap: 12px; /* Espacio entre la estrella y el texto */
    text-align: left;
    margin-bottom: 1rem;
}

.solsegmas-feature-list li i {
    flex-shrink: 0; /* Impide que la estrella se deforme */
    margin-top: 3px; /* Pequeño ajuste vertical para centrar la estrella con la primera línea */
}