@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}
body
{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f8f9fa;
}
.planos
{
    position: relative;
    max-width: 100%;
    -webkit-box-reflect: below 1px linear-gradient(transparent 70%,#0009);
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    min-height: 350px;
    background: #fff;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right
{
    background-image: none;
}
.planos .card
{
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #333;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}
.planos .card .layer
{
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(#373B44,#4286f4);
    z-index: 1;
    transition: 0.5s;
}
.planos .card:hover .layer
{
    top: 0;

}
.planos .card .content
{
    position: relative;
    z-index: 2;
}
.planos .card .content p
{
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
    color: #fff;
}
.planos .card .content .imgBx
{
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.planos .card .content h2
{
    font-size: 18px;
    color: #fff;

}
.planos .card .content h2 span
{
    color: #03a9f4;
    font-size: 14px;
    transition: 0.5s;
}
.planos .card:hover .content h2 span
{
    color: #fff;

}
.check
{
    width: 20px;
    height: 20px;
}