.container-img-perfil {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    perspective: 1200px;
}

.card-body {
    position: relative;
    background: #fff;
    width: 350px;
    height: fit-content;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.144);
    transform-style: preserve-3d;
    border-radius: 10px;
}

.card-images {
    width: 100%;
    display: grid;
    place-items: center;
    transform-style: preserve-3d;
}

.card-images .card-bg {
    z-index: 0;
    position: absolute;
    width: 100%;
    left: 0;
    border-radius: 10px;

}

.card-images .card-figure {
    z-index: 1;
    border-radius: 20px;
    width: 50%;
    transition: transform 300ms ease-out;
}

.card-body:hover .card-figure {
    border: 1px solid #fff;
    border-radius: 50%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.144);
}

.card-body:hover .glass-bg-perfil {
    background-color: rgba(155, 155, 155, 0.459);
    backdrop-filter: blur(3px);
}

.card-info {
    position: relative;
    padding: 20px;
    text-align: center;
    transform-style: preserve-3d;
}

.card-info .card-name {
    color: #222;
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 15px;
    transition: transform 300ms ease-out;
}

.card-info .card-description {
    transition: transform 300ms ease-out;
}

.card-info .card-description a {
    text-decoration: none;
    color: #222;
    background-color: #dfdfdf;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.164);
    font-size: 1em;
    padding: 7px;
    border-radius: 5px;
    transition: 100ms ease;

}

.card-info .card-description a:hover {
    color: #dfdfdf;
    background-color: rgb(67, 118, 212);
    box-shadow: 0px 0px 10px 0px rgb(0, 60, 150);

}

.card-info .card-media {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 35px;
    transition: transform 300ms ease-out;

}

.card-info .card-media a {
    color: #999;
    font-size: 1.7em;
    transition: color 100ms ease;
}

.card-info .card-media a:hover {
    color: #222;
}

@media screen and (max-width: 370px) {
    .card-body {
        width: 100%;
    }

    .container-img-perfil {
        margin: 0 20px;
    }
}