.plans-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.plan {
    width: 400px;
    height: 600px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
    cursor: pointer;
}

.title-plan {
    background: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
}

.price-plan {
    font-size: 68px;
    color: var(--background);
}

.plan.better {
    width: 450px;
    height: 650px;
    background: var(--gradient);
    color: var(--white);
}

.request-plan {
    overflow: hidden;
    border-radius: 40px;
    background: var(--gradient);
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
}

.points {
    color: var(--primary-color);
    font-size: 24px;
}

.plan.better .title-plan,
.plan.better .price-plan {
    background: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan.better .points {
    color: var(--white);
}

.plan.better .request-plan {
    background: var(--white);
    color: var(--primary-color);
}

@media (max-width: 1300px) {
    .plan {
        width: 300px;
        height: 500px;
        padding: 10px;
    }

    .plan.better {
        width: 350px;
        height: 550px;
    }
}

@media (max-width: 990px) {
    .plans-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .plan,
    .plan.better {
        width: 400px;
        height: 600px;
    }
}

@media (max-width: 460px) {
    .plans-container {
        padding: 10px;
    }

    .plan,
    .plan.better {
        width: 100%;
        height: 400px;
    }

    .title-plan {
        font-size: 28px;
    }
    
    .price-plan {
        font-size: 48px;
    }

    .request-plan {
        height: 40px;
        line-height: 40px;
        font-size: 24px;
    }
    
    .points {
        font-size: 18px;
    }
}