#content{
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#plano{
    height: 80%;
    margin: 100px 0;
    width: 80%;
    background: rgba(232, 232, 232, 0.5);
    backdrop-filter: blur(15.5px);
    border-radius: 0px 50px 50px 0px;
    padding: 75px;
    padding-bottom: 25px;
    padding-right: 20%;
}

.plano{
    display: none;
}
.plano.ative{
    opacity: 1;
    transition-delay: .6s;
    z-index: 2;
    display: block;
}

.plano h1{
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 30px;
    width: 60%;
}
.plano p{
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.plano a{
    display: inline-block;
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-decoration-line: underline;
}
.plano ul li{
    font-weight: 600;
    font-size: .8rem;
}

.plano ul .exceto{}
.plano ul .exceto::before{
    content: '*';
}

#index{
    display: flex;
    margin-top: 50px;
}

#index a{
    flex: none;
    width: 40px;
    aspect-ratio: 1/1;
    background: #D9D9D9;
    margin: 0 10px;
    border-radius: 100%;
}

#index a.ative{
    background: linear-gradient(180deg, #544CDC 0%, #F60000 100%);
}

@media only screen and (max-width: 960px) {
    .plano h1{
        font-size: 3rem;
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .plano h1{
        font-size: 2rem;
    }
}

@media only screen and (max-width: 450px) {
    #plano{
        width: 100%;
        border-radius: 0;
        padding: 30px;
    }
}