.planos {
    background-color: #F5F5F5;
    
    padding-top: 7rem;
    padding-bottom: 3rem;
}

.planos__titulo {
    color: #1381d1;
    font-weight: 700;
    font-size: 1.6rem;
    font-family: var(--montserrat);
    text-transform: uppercase;
    text-align: center;

    margin-bottom: 1.25rem;
}

.planos__cartoes {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cartao {
    display: flex;
    flex-direction: column;

    background-color: #1381d1;

    width: 100%;
    max-width: 270px;

    margin-bottom: 1rem;

    border-radius: 5px;
    box-shadow: 0 2px 10px 2px #00000010;
}

.cartao__titulo {
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;

    padding: .65rem 0;

    margin-bottom: .5rem;

    border-bottom: 1px solid ghostwhite;
}

.cartao__conteudo {
    padding: 0 2%;
    width: 95%;
}

.cartao__preco {
    font-weight: 700;
    font-size: 2.4rem;
    text-align: center;

    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}

.cartao__texto {
    color: white;
    max-width: 300px;
    line-height: 28px;
}

.cartao__botao {
    font-size: 1.2rem;
    font-weight: 700;
    background-color: #040858;
    color: white;

    width: 100%;

    align-self: center;

    padding: .75rem 2rem;

    margin-top: 1rem;
    margin-bottom: 1rem;
}

.cartao__botao:hover {
    background-color: #03043d;
    color: white;
}

.cartao--start {
    color: white;
}

.cartao--ultra {
    color: white;
}

.cartao--mega {
    color: white;
}

.cartao__botao--start {
    border-color: #03043d;
}

.cartao__botao--ultra {
    border-color: white;
}

.cartao__botao--mega {
    border-color: #03043d;
}

@media screen and (min-width: 768px) {
    .cartao {
        max-width: 400px;
    }
}

@media screen and (min-width: 1024px) {
    .planos__cartoes {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .cartao {
        max-width: 300px;
    }
}
