@media only screen and (min-width: 600px) and (max-width: 1300px){

    .pattern {
        left: 0;
        background-image: url('../../../assets/images/png/pattern/blue-pattern.png');
        background-repeat: no-repeat;
        background-size: cover;
        width: 100vw;
    }

    #planos {
        justify-content: center;
    }

    #planos .titulo h2 {
        color: var(--default-blue);
        text-align: center;
        text-transform: uppercase;
        font-size: 18px;
        /* line-height: 36px; */
    }

    #planos .w-400 {
        font-weight: 400;
    }

    #planos .w-900 {
        font-weight: 900;
    }

    .cards-mobile {
        display: none;
    }

    .cards-mobile .card {
        display: none;
    }

    .cards-desktop {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .card:first-child {
        margin-left: 0;
    }

    .card {
        display: flex;
        flex-direction: column;
        background: #FFFFFF;
        box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.15);
        border-radius: 18px;
        padding: 21px;
        margin-left: 40px;
    }

    .card h2 {
        font-weight: 300;
        font-size: 12px;
        color: var(--default-blue);
        align-self: center;
        text-transform: uppercase;
    }

    .card h1 {
        font-family: AntennaComp;
        color: var(--default-blue);
        font-style: normal;
        font-weight: 700;
        font-size: 50px;
        align-self: center;
        margin: 0;

    }

    .card hr {
        margin: 8px 0;
        border: 1px var(--default-blue) solid;
        background-color: var(--default-blue);
        width: 40px;
        align-self: center;

    }

    .card .desc-plano {
        display: flex;
        align-items: center;
    }

    .card .desc-plano img {
        height: 8px;
    }

    .card .desc-plano p {
        font-weight: 400;
        font-size: 10px;
        line-height: 160%;
        margin-left: 9px;
    }

    .card .valor {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card .valor p {
        margin-top: 8px;
        font-weight: 500;
        font-size: 10px;
        line-height: 14px;
        color: var(--default-gray);
        align-self: center;
    }

    .card .valor h2 {
        font-weight: 500;
        font-size: 20px;
    }

    .card button {
        margin-top: 8px;
    }
}