    root {
        --primary: #0077B6;
        --secondary: #00B4D8;
        --accent: #FFC107;
        --dark: #050A1A;
        --light: #F8F9FA;
        --text: #333333;
        --card-bg: rgba(255, 255, 255, 0.95);
        --gradient-start: #050a1acc;
        --gradient-end: #050a1acc;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        color: var(--text);
        background-color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: var(--primary);
        transition: all 0.3s ease;
    }

    a:hover {
        color: var(--secondary);
    }

    /* Header Styles */
    header {
        background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        color: white;
        padding: 1rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: white;
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 60px;
        margin-right: 10px;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 1.5rem;
    }

    .nav-links a {
        color: white;
        font-weight: 500;
        position: relative;
    }

    .nav-links a:hover {
        color: var(--accent);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent);
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(rgb(7, 17, 37), rgb(112, 112, 112)), url('') no-repeat center center/cover;
        height: 100vh;
        color: white;
        display: flex;
        align-items: center;
        text-align: center;
        padding-top: 80px;
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        display: inline-block;
        padding: 0.8rem 2rem;
        border-radius: 50px;
        font-weight: bold;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn-primary {
        background-color: var(--primary);
        color: white;
    }

    .btn-primary:hover {
        background-color: var(--secondary);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    }

    .btn-secondary {
        background-color: transparent;
        color: white;
        border: 2px solid white;
        margin-left: 1rem;
    }

    .btn-secondary:hover {
        background-color: white;
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    /* Services Section */

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--accent);
    }

    .section-title p {
        color: var(--text);
        max-width: 700px;
        margin: 0 auto;
    }

    .services {
        padding: 30px 0;
        text-align: center;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .services-grid {
        display: flex;
        justify-content: space-between;
        /* Espacio entre las tarjetas */
        gap: 20px;
        /* Espacio entre las tarjetas */
        flex-wrap: wrap;
        /* Permite que las tarjetas se acomoden en filas si es necesario */
    }

    .service-card {
        background-color: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        width: 23%;
        /* Ajuste para que las tarjetas tengan el mismo tamaño */
        min-width: 250px;
        /* Asegura que no sean más pequeñas que 250px */
        padding: 20px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .service-icon {
        font-size: 40px;
        color: #333;
        margin-bottom: 20px;
    }

    .service-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .service-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    .service-link {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
    }

    .service-link i {
        margin-left: 5px;
    }

    /* Para pantallas más pequeñas */
    @media (max-width: 768px) {
        .service-card {
            width: 48%;
            /* Dos tarjetas por fila en pantallas pequeñas */
        }
    }

    @media (max-width: 480px) {
        .service-card {
            width: 100%;
            /* Una tarjeta por fila en pantallas muy pequeñas */
        }
    }

    /* Process Section */
    .process {
        background-color: #f5f5f5;
        padding: 1rem 0;
    }

    .process-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .process-steps {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

    .process-steps::before {
        content: '';
        position: absolute;
        top: 50px;
        left: 50%;
        width: 70%;
        height: 3px;
        background-color: var(--primary);
        transform: translateX(-50%);
        z-index: 0;
    }

    .step {
        width: 150px;
        margin: 0 2rem;
        text-align: center;
        position: relative;
        z-index: 1;
    }

    .step-number {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--primary);
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    }

    .step-title {
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    /* About Section */
    .about {
        padding: 6rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .about-content {
        flex: 1;
        min-width: 300px;
        padding-right: 2rem;
    }

    .about-content h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
        position: relative;
    }

    .about-content h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 3px;
        background-color: var(--accent);
    }

    .about-content p {
        margin-bottom: 1.5rem;
    }

    .about-image img {
       width: 100%;
       height: 100%;
       border-radius: 10px;
       object-fit: cover;
    }


    /* CTA Section */
    .cta {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        padding: 4rem 2rem;
        text-align: center;
    }

    .cta-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .cta h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta p {
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }

    /* Footer */
    footer {
        background-color: var(--dark);
        color: white;
        padding: 4rem 2rem 2rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        position: relative;
    }

    .footer-col h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--accent);
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 0.8rem;
    }

    .footer-col ul li a {
        color: #ddd;
    }

    .footer-col ul li a:hover {
        color: var(--accent);
    }

    .social-media {
        display: flex;
        margin-top: 1.5rem;
    }

    .social-media a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        margin-right: 1rem;
        transition: all 0.3s ease;
    }

    .social-media a:hover {
        background-color: var(--primary);
        transform: translateY(-5px);
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
        color: #ddd;
    }

    .portal-clientes {
        background-color: #ffffff;
    }

    .clients-features {
        margin-top: 3rem;
    }

    .feature-item {
        display: flex;
        margin-bottom: 3rem;
        background-color: #f9f9f9;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
        background-color: var(--primary);
        color: white;
        padding: 2rem;
        font-size: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 100px;
    }

    .feature-content {
        padding: 2rem;
        flex-grow: 1;
    }

    .feature-content h3 {
        color: var(--primary);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .feature-content p {
        margin-bottom: 1rem;
        color: var(--text);
        line-height: 1.6;
    }

    .feature-list {
        list-style: none;
        padding-left: 0.5rem;
    }

    .feature-list li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: flex-start;
    }

    .feature-list li i {
        color: var(--primary);
        margin-right: 0.5rem;
        margin-top: 0.3rem;
    }

    @media (max-width: 768px) {
        .feature-item {
            flex-direction: column;
        }

        .feature-icon {
            min-width: 100%;
            padding: 1.5rem;
        }
    }

    .order-to-cash {
        background-color: #f5f5f5;
    }

    .order-to-cash .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    /* Contenedor de la sección */
    .portal-financiero {
        padding: 30px 0;
        text-align: center;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .portal-financiero img {
        max-width: 100%;
        margin-bottom: 30px;
    }

    /* Contenedor de las tarjetas de la sección financiera */
    .financial-grid {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        /* Para que se acomoden en filas si es necesario */
    }

    /* Estilo de las tarjetas */
    .financial-card {
        background-color: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        width: 30%;
        /* Tres tarjetas por fila */
        min-width: 250px;
        /* Asegura que no sean más pequeñas que 250px */
        padding: 20px;
    }

    .financial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .financial-icon {
        font-size: 40px;
        color: #333;
        margin-bottom: 20px;
    }

    .financial-content h3 {
        font-size: 22px;
        margin-bottom: 15px;
        font-weight: 400;
    }

    .financial-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    .financial-link {
        text-decoration: none;
        color: #007bff;
        font-weight: bold;
    }

    .financial-link i {
        margin-left: 5px;
    }

    /* Para pantallas más pequeñas */
    @media (max-width: 768px) {
        .financial-card {
            width: 48%;
            /* Dos tarjetas por fila en pantallas medianas */
        }
    }

    @media (max-width: 480px) {
        .financial-card {
            width: 100%;
            /* Una tarjeta por fila en pantallas muy pequeñas */
        }
    }


    .process-detailed {
        margin-top: 3rem;
    }

    .process-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 2rem;
        margin-bottom: 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .process-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .process-card h3 {
        color: var(--primary);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }

    .process-card h3 span {
        background-color: var(--primary);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        font-size: 1.2rem;
    }

    .process-card p {
        line-height: 1.8;
        color: var(--text);
    }

    @media (max-width: 768px) {
        .process-card {
            padding: 1.5rem;
        }

        .process-card h3 {
            font-size: 1.2rem;
        }

        .process-card h3 span {
            width: 30px;
            height: 30px;
            font-size: 1rem;
        }
    }

    /* Back to Top Button */
    .back-to-top {
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .back-to-top a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: var(--primary);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .back-to-top a:hover {
        background-color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .hero h1 {
            font-size: 2.8rem;
        }

        .about {
            flex-direction: column;
        }

        .about-content {
            padding-right: 0;
            margin-bottom: 2rem;
        }

        .process-steps::before {
            display: none;
        }

        .step {
            margin-bottom: 2rem;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .btn {
            display: block;
            width: 100%;
            margin-bottom: 1rem;
        }

        .btn-secondary {
            margin-left: 0;
        }

        .step {
            width: 100%;
            margin: 0 0 2rem;
        }

        .process-steps {
            flex-direction: column;
        }
    }



    .scrolltop {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background: #808080;
        color: #ffffff;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        display: none;
        z-index: 1000;
    }

    .img-fluid {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    /*       Clientes      */
    /*/////////////////////*/
.clients-slider {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
}


    .slider-track {
        display: flex;
        animation: scroll 15s linear infinite;
        width: fit-content;
    }

    .slide-group {
        display: flex;
        gap: 100px;
        /* Espacio constante entre imágenes */
        align-items: center;
    }

    .slide-group img {
        height: 100px;
        width: auto;
        object-fit: contain;
        display: block;
        margin-top: 1px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }