    main {
        background-color: black;
    }

    .service-info {
        height: 300px;
    }

    .img-serv {
        height: 100%;
        width: auto;
        filter: invert(1);
    }

    .content-text {
        padding: 10px 20px;
        height: 100%;
        display: grid;
        place-content: center;
        color: #ffffffc0;
    }

    .content-text-v2 {
        text-align: center;
        padding: 10px 20px;
        height: 100%;
        display: block;
        justify-content: center;
        align-items: anchor-center;
        color: #ffffffc0;
    }

    .filter-none {
        filter: none;
    }

    .specs p {
        color: white;
    }

    .specs ul li {
        color: #ffffffc0;
    }

    .capabilities {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
        padding: 3rem 2rem;
        text-align: center;
    }

    .capability {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .capability img {
        filter: invert(1);
        width: 50px;
        height: auto;
        margin-bottom: 1rem;
    }

    .capability h3 {
        color: white;
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 0.5rem;
    }

    .capability p {
        color: #ffffffc0;
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 300px;
    }


    .image-slider-simple {
        position: relative;
        width: 100%;
        height: 85vh;
        /* 65% del alto de la pantalla */
        overflow: hidden;
    }

    .image-slider-simple h2 {
        padding-top: 45px;
        text-align: center;
        color: white;
    }

    .slides-simple {
        display: flex;
        width: 200%;
        /* porque tenemos 2 imágenes */
        height: 100%;
        animation: slideSimple 6s infinite;
    }

    .slide {
        flex: 0 0 100%;
        height: auto;
    }

    .slide img {
        width: 50%;
        height: 100%;
        object-fit: cover;
        /* llena el espacio sin distorsionar */
        object-position: center;
        /* centra la imagen */
        display: block;
    }

    .info-img {
        display: grid;
        place-content: center;
    }

    /* Animación para cambiar cada 2 segundos */
    @keyframes slideSimple {
        0% {
            transform: translateX(0);
        }

        45% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(-100%);
        }

        95% {
            transform: translateX(-100%);
        }

        100% {
            transform: translateX(0);
        }
    }

    .info h6,
    .info p {
        color: white;
    }

    .movie {
        flex: 0 0 calc(100% / 6);
        height: 100%;
        animation: animacion 60s linear infinite;
        overflow: hidden;
    }

    @media (max-width: 500px) {
        .overlay-content-v2 {
            position: absolute;
            left: 22% !important;
            right: 0;
            bottom: 0;
            z-index: 1;
            color: white;
        }
        
        .img-serv{
            width: 100%;
            height: auto;
        }
    }