/*----------------------
# Mobile
-----------------------*/

.HomeClientes .container-fluid {
    height: 100%;
    background-image: url(../img/BG/backClientesMob.webp?05);
    background-position: top center;
}


.HomeClientes .container-fluid .row {
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.HomeClientes .container-fluid .col-txt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.HomeClientes .col-txt h2 {
    margin-top: 50px;
    font-size: 2.1em;
    color: var(--Branco);
    position: relative;
    font-family: 'Titulos', sans-serif;
}

.HomeClientes .col-txt h2::before {
    content: " ";
    width: 33%;
    height: 3px;
    background-color: var(--AzulEscuro);
    position: absolute;
    bottom: -15px;
    left: 33%;
}

.HomeClientes .col-txt p {
    text-align: center;
    color: var(--Cinza);
}


.HomeClientes .swiper {
    width: 100%;
    height: 100%;
}

.HomeClientes .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.HomeClientes .swiper-slide img {
    display: block;
    width: 80%;
    height: 80%;
    object-fit: contain;
    margin: 0 auto;
}


/*-----------------------------
# PC
-----------------------------*/
@media (min-width: 1000px) {

    .HomeClientes .container-fluid {
        background-image: url(../img/BG/backClientes.webp?05);
        background-position: top center;
        height: 100%;
        background-color: none;
    }

    .HomeClientes .col-txt h2 {
        font-family: 'Titulos', cursive;
        margin-top: 100px;
        font-size: 2.9em;
        color: var(--Branco);
        position: relative;
    }

    .HomeClientes .col-img {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .HomeClientes .carousel {
        max-height: 80vh;
        max-width: 80vh;
        text-align: center;
    }



}