.planos {
    width: 100%;
    height: 100%;
}

.planos h3 {
    padding: 2em;
    font-size: 40px;
}

.planos-div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
    margin-bottom: 1em;
}

.planos-box {
    width: 22vw;
    height: 18vw;
    border: 1px solid #d3d3d3;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.planos-box:hover {
    transform: scale(1.01);
    cursor: pointer;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.planos-title {
    font-size: 28px;
    font-weight: 600;
}

.recorrente {
    font-size: 16px;
    color: var(--primary-gold);
    margin-bottom: 1em;
    font-weight: 600;
}

.preco {
    font-size: 72px;
    display: flex;
    align-items: center;
    font-weight: 700;
}

.reais {
    font-size: 20px;
    font-weight: 700;
}

.planos-button {
    text-decoration: none;
    font-weight: 700;
    padding: 1em;
    margin-top: 1em;
    color: white;
    background-color: black;
    border-radius: 8px;
}

.planos-button:hover {
    transform: scale(1.05);
    cursor: pointer;
}

@media screen and (max-width: 768px) {

    .planos-div {
        flex-direction: column;
    }

    .planos-box {
        width: 90%;
        height: 100%;
        padding: 4px;
    }

    .planos h3 {
        padding: 2em 10px;

    }
}