body {
    background: #d6e1ff;
    width: 100vw;
    font-family: 'montserrat', sans-serif;
    display: flex;
    justify-content: space-around;
}

.conteudo-principal {
    width: 84%;
    margin: 5rem 0 0 0;
    max-width: 400px;
}

.ilustracao {
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.area-branca {
    background-color: #FFFFFF;
    border-radius: 0 0 20px 20px;
    padding: 3em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 10px 15px #aac0fd;
    margin-top: -3px;
}

.titulo-principal {
    font-weight: 800;
    color: #1e3054;
    text-align: center;
    margin-bottom: 1em;
}

.texto {
    font-size: 0.85rem;
    color: #898f9c;
    line-height: 1.3rem;
    text-align: center;
    font-weight: 500;
}

.container-annual-plan {
    display: flex;
    align-items: center;
    width: 90%;
    justify-content: space-between;
    background-color: #eff1f8;
    padding: 5%;
    margin: 1.3em 0;
    border-radius: 10px;
}

h2 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.6em;
}

.textos-annual-plan {
    text-align: center;
}

.textos-annual-plan p {
    font-size: 0.8rem;
}

.nota-musical {
    width: 2.3rem;
}

.botao-change {
    background: none;
    border: none;
    text-decoration-style: solid;
    text-decoration-line: underline;
    color: #5c4fc1;
    font-weight: 600;
}

.botao-change:hover {
    color: #9b96e5;
    transition: 0.3s;
    cursor: pointer;
}

.botao-change:active{
    color: #d1cef8;
    transition: 0.3s;
}

.payment {
    width: 100%;
    background-color: #382ae1;
    border: none;
    border-radius: 8px;
    height: 3em;
    color: #ece9ff;
    font-weight: 600;
    margin-bottom: 1.9em;
    box-shadow: 0px 10px 18px #392ae144;
}

.payment:hover{
    background-color: #766cf1;
    transition: 0.3s;
    cursor: pointer;
}

.payment:active{
    background-color: #b5aff8;
    transition: 0.3s;
}

.cancel-order {
    border: none;
    background: none;
    color: #7e85a1; 
    display: flex;
    justify-content: space-around;
    font-weight: 600;
}

.cancel-order:hover {
    color: #4d5770; 
    transition: 0.3s;
    cursor: pointer;
}

.cancel-order:active {
    color: #5480f0; 
    transition: 0.3s;
}


.attribution {
    margin-top: 2em;
    font-size: 0.8rem;
    text-align: center;
    line-height: 2em;
    color: #1e3054;
}

.attribution a:hover {
    color: #382ae1;
}

.attribution a:active {
    color: #5277c0;
}

.attribution a:visited {
    color: #1e3054;
    text-decoration: none;
}

@media (min-width: 550px) {

    .nota-musical {
        width: 2.6rem;
    }
}

