body {
    background-color: rgb(13, 27, 43);
    color: rgb(13, 27, 43);
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 50px;
}

.link-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.link-logo img {
    height: 80px;
    padding: 10px;
}

.opcoes-planos {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: auto;
    border-radius: 10px;
    color: white;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 50px;
}

.opcoes-planos .opcao {
    background-color: rgb(13, 27, 43);
    border-radius: 15px;
    height: 100%;
    min-width: 340px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 200ms;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0);
}

.opcoes-planos .opcao .conteudo-opcao {
    padding: 10px;
}

.opcoes-planos .opcao.selecionado {
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.253),
        0 2px 4px rgba(255, 255, 255, 0.06);
    scale: 1.05;
    background-color: #dd5e02;
    color: white;
}

.opcoes-planos .opcao.selecionado h5 {
    font-weight: 700;
}

.opcoes-planos .opcao .badge-selecionado {
    opacity: 0;
    transition: all 200ms;
    background-color: #0d1b2b;
    color: white;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    font-weight: 700;
}

.opcoes-planos .opcao.selecionado .badge-selecionado {
    opacity: 100;
}

.opcoes-planos .opcao:hover {
    border: 1px solid rgba(0, 0, 0, 0.397);
    scale: 1.1;
}

.painel-pagamento {
    background-color: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, 0.377);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.painel-motion button {
    border: none;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
    color: white;
    font-weight: bold;
    transition: all 200ms;
}

button:disabled {
    background-color: rgba(13, 27, 43, 0.658) !important;
    cursor: not-allowed !important;
}

button#voltar {
    background-color: transparent;
    border: 1px solid rgb(13, 27, 43);
    color: rgb(13, 27, 43);
}

.painel-motion button#voltar:hover {
    background-color: rgb(13 27 43 / 97%);
    color: white;
}

button#proximo {
    background-color: rgb(13, 27, 43);
}

.painel-motion button#proximo:hover {
    background-color: rgb(13 27 43 / 97%);
}

.painel-motion button:hover {
    scale: 1.02;
}

*::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

*::-webkit-scrollbar-thumb {
    background: #000000bd;
}

.totalizadores p {
    line-height: 1px;
}


.alert-box {
    position: fixed;
    right: 1%;
    top: 2%;
    z-index: 9999;
}

.alert-box>*:last-child {
    margin-bottom: 0px !important;
}

.termo-privacidade {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    width: 100%;
    left: 0;
}

.termo-privacidade>* {
    font-size: 14px;
    color: #878787;
    text-decoration: none;
}
