    .text-nav {
        color: white !important;
        /* Color del texto */
    }

    .text-nav:hover {
        color: var(--secondary) !important;
        /* Color del texto al pasar el mouse */
    }

    .title-sub-title {
        font-weight: bold;
        color: var(--primary);
    }

    #floating-buttom:hover {
        transform: translateY(-3px);
    }

    footer {
        background: var(--dark) !important;
        color: white;
        /* padding: 70px 8% 30px; */
    }

    .icon-separator-movile {
        display: none;
    }
    .icon-separator{
        height: 20em;
    }

    .separator-title-footer{
        margin-bottom: 0.5em;
    }
    .separator-title-footer:after {
        content: '';
        position: absolute;
        /* transform: translateX(-50%); */
        width: 40px;
        height: 4px;
        background: var(--secondary);
        font-weight: bold;
    }

    
    .btn-custom {
        background: var(--secondary) !important;
        color: white;
        border: none;
        border-radius: 45px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .btn-custom:hover {
        background: var(--secondary) !important;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    }

    .btn-secondary {
        background: transparent !important;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }

    .title-about-us:after {
        content: '';
        position: absolute;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background: var(--secondary);
        font-weight: bold;
    }

    strong {
        font-weight: bold !important;
    }

    .opacity-black::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        /* ajustes de opacidad aquí */
        z-index: 1;
    }

    .service-icon {
        height: 200px;
        background: linear-gradient(45deg, var(--primary), var(--accent));
        display: flex;
        padding: 0.6em;
        justify-content: center;
        color: white;
        font-size: 4rem;
    }

    .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .service-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        height: 40em;
    }

    .service-content ul {
        list-style: none;
        margin: 20px 0;
    }

    .service-content ul li {
        padding: 8px 0;
        position: relative;
        padding-left: 25px;
    }

    .service-content ul li:before {
        content: '✓';
        color: var(--secondary);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .process {
        background: linear-gradient(135deg, var(--primary) 0%, #1E3B70 100%);
        color: white;
    }




 

    .step-number {
        width: 80px;
        height: 80px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: bold;
        margin: 0 auto 30px;
    }

    .cta-btn {
        background: white;
        color: var(--secondary);
        font-size: 1.1rem;
        font-weight: 600;
    }

    .cta-btn:hover {
        background: var(--primary);
        color: white;
    }

     @media screen and (max-width: 600px) {
        .icon-separator-desktop{
            display: none;
        }
        .icon-separator-movile{
            display: block;
            display: inline-block;
            transform: rotate(90deg);
            transform-origin: center;
        }
        .icon-separator{
            height: auto;
        }
       
    }


    @media screen and (max-width: 700px) {
        .subtitle-slider {
            display: none;
        }

        .slider .slides li .caption {
            left: 0% !important;
            width: 100% !important;
        }

        .div-title-about-us {
            margin-bottom: 2em;
        }
        .icon-separator-tablet {
            display: none;
        }



    }

    @media screen and (min-width: 700px) and (max-width: 992px) {
        .icon-separator-tablet {
            display: none;
        }   
    }