.flip-card {
    background-color: transparent;
    perspective: 1000px;
    width: 21%;
    margin: 0 10px;
    height: auto;

    /* text-align: center;
    align-content: center;
    justify-content: center; */
    
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 350px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    /* padding: 10% 5%;
    background-color: rgba(4, 43, 65, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 35px; */
}
.flip-card-front {
    padding: 10% 5%;
    background-color: rgba(4, 43, 65, 0.5);
    border-radius: 35px;
     .texto{
        height: 150px;
    }
}
.flip-card-back {
    /* background-color: #2b2b2b; */
     padding: 10% 5%;
    background-color: rgba(4, 43, 65, 0.5);
    border-radius: 35px;
    color: #ffffff;
    transform: rotateY(180deg);
    .texto{
        height: 150px;

    }
}
@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

}