/*==================================================*
 CLIENTES - SMAR
*==================================================*/

.clients{
    padding:100px 0 45px;
    background:#F8FAFC;
}

/*=========================================*
 GRID
*=========================================*/

.clients-grid{

    display:grid;

    grid-template-columns:repeat(3, minmax(220px, 1fr));

    gap:30px;

    max-width:1000px;

    margin:70px auto 0;

}

/*=========================================*
 TARJETAS
*=========================================*/

.client-card{

    background:#FFFFFF;

    border-radius:22px;

    padding:35px 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:160px;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:all .35s ease;

}

.client-card:hover{

    transform:translateY(-8px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

/*=========================================*
 LOGOS
*=========================================*/

.client-card img{

    max-width:160px;

    max-height:80px;

    width:auto;

    height:auto;

    transition:all .35s ease;

    filter:grayscale(100%) opacity(.75);

}

.client-card:hover img{

    filter:grayscale(0%) opacity(1);

    transform:scale(1.08);

}

/*==================================================*
 RESPONSIVE - CLIENTES
*==================================================*/

/* TABLET */
@media (max-width: 992px){

    .clients-grid{

        grid-template-columns:repeat(2, minmax(220px, 1fr));

        gap:25px;

    }

}


/* MÓVIL */
@media (max-width: 600px){

    .clients{

        padding:80px 20px;

    }

    .clients-grid{

        grid-template-columns:1fr;

        gap:20px;

        margin-top:50px;

    }

    .client-card{

        min-height:140px;

        padding:30px 20px;

    }

    .client-card img{

        max-width:150px;

        max-height:75px;

    }

}