body{
 background-color: var(--light);
}
.row-clientes {
    justify-content: center;
    gap: 16px;
}

.card-cliente {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 220px;
    width: 100%;
    max-width: 200px;
    background: #fff;
    border: 1px solid var(--gris);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    padding: 1rem;
    overflow: hidden;
    text-align: center;
}

.card-cliente img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    transition: filter 0.3s ease;
    margin-bottom: 1rem;
}

.card-cliente:hover {
    transform: scale(1.03);
    cursor: pointer;
}

.cliente-nombre {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.2;
    font-weight: 500;
    max-height: 2.4em;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}
