﻿.card-cliente {
    aspect-ratio: 2.4/1.3
}

    .card-cliente img {
        transition: all 200ms ease;
        max-width: 230px;
        max-height: 100px;
    }

    .card-cliente:not(:hover) img {
        filter: brightness(0.9) grayscale(1);
    }

    .card-cliente .cliente-titulo {
        position: absolute;
        bottom: 0.5rem;
        left: 50%;
        transform: translate(-50%, 100px);
        transition: all .3s ease;
    }

    .card-cliente:hover .cliente-titulo {
        transform: translate(-50%, 0px);
    }