p {
    font-size: 14px;
}

.main_planes {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 2rem;

    .container_textsPlanes {
        h1 {
            padding-bottom: 18px;
            font-size: 45px;
            color: var(--color-primary5);
            font-weight: 500;
        }

        p {
            color: var(--color-secondary2);
            font-size: 14px;
            font-weight: 500;

            strong {
                font-weight: 700;
                background: linear-gradient(90deg, #326ed4, #5481b4ee, #013fe987);
                background-clip: text;
                color: transparent;
            }
        }
    }

    .container_cardPlanes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;

        .cardPlan {
            background: #fff;
            padding: 40px 20px;
            border-radius: 10px;

            p {
                font-size: 15px;
                padding-bottom: 18px;
                color: #326ed4;
            }

            .textCard {
                display: flex;
                flex-direction: column;
                gap: 10px;

                h2 {
                    font-size: 16px;
                    color: var(--color-primary5);
                }

                p {
                    font-size: 13px;
                    color: #666;
                    line-height: 2px;
                }

                .textInfoCard {
                    svg {
                        width: 15px;
                        color: var(--color-primary5);
                    }

                    p {
                        padding-left: 14px;
                    }
                }

                a {
                    margin-top: 1rem;
                    font-size: 14px;
                    background: var(--color-primary);
                    color: #fff;
                    border-radius: 30px;
                    padding: 10px 5px;
                    display: inline-block;
                    text-align: center;

                    &:hover {
                        background: #013fe9d3;
                        ;
                    }
                }
            }
        }
    }

}

@media (max-width: 480px) {
    .main_planes{

    .container_textsPlanes {
        padding: 0 15px;
        font-size: 30px;
    }

    .container_cardPlanes {
        display: grid;
        grid-template-columns: 1fr;
        padding: 0 15px;

        .cardPlan {
            box-shadow: 0 0 8px #628cd4;
        }
    }
}
}