    .clientes-flex {
        display: flex;
        flex-direction: row;
        gap: 20px;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 30px;
    }

    .wrapper {
        width: 600px;
        min-width: 600px;
        min-height: 280px;
        margin-top: 80px;
    }

    .clientes-img {
        width: 500px;
        min-width: 500px;
        min-height: 460px;
    }

    .youtube {
        width: 100%;
        margin-bottom: 0;
    }

    .clientes-btn-center {
        text-align: center;
        margin-top: 10px;
    }

    @media (max-width: 1100px) {

        .wrapper,
        .clientes-img {
            width: 95vw;
            min-width: unset;
            min-height: 200px;
        }

        .youtube {
            height: 100%;
        }
    }

    @media (max-width: 768px) {
        .clientes-flex {
            flex-direction: column-reverse;
            align-items: center;
        }

        .wrapper,
        .clientes-img {
            width: 100%;
            min-width: unset;
        }

        .wrapper {
            margin-top: 0;
            margin-left: auto;
            margin-right: auto;
        }

        .clientes-img img {
            width: 100%;
            height: auto;
        }
    }