.card-modelo {
    display: flex;
    gap: 42px;
    justify-content: center;
    margin-top: 80px;
    flex-wrap: wrap;

    & img {
        height: auto;
        width: 190px;
        filter: drop-shadow(-9px 10px 9px rgba(0, 0, 0, 0.5));
        transition: transform 0.2s ease-out;
    }

    & img:hover {
        transform: scale(1.2);
    }
}
