/*
.usuario-conteudo {
    max-width: 960px;
    margin: auto;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #1e1e1e;
    font-family: 'Garet Book', sans-serif;
}
*/
.usuario-conteudo h1 {
    font-size: 2.8rem;
    text-align: center;
    color: #2b47f5;
    margin-bottom: 1rem;
}

.usuario-conteudo h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #003366;
}

.usuario-conteudo .intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.usuario-conteudo ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    line-height: 1.7;
}

.usuario-conteudo ul li {
    margin-top: 10px;
}

.usuario-conteudo ul li::before {
    content: "✔️ ";
    margin-right: 0.5rem;
}

.botao-acesso {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2b47f5;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.botao-acesso:hover {
    background-color: #1e33b3;
}




.card-painel-alt {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.card-painel-alt:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.lado-esquerdo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.icone-badge {
    font-size: 2.2rem;
    background-color: #2b47f5;
    color: #ffffff;
    padding: 0.6rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.lado-esquerdo h3 {
    font-size: 1.4rem;
    color: #2b47f5;
    margin-bottom: 0.4rem;
}

.lado-esquerdo p {
    color: #444;
    font-size: 1.05rem;
}

.lado-direito {
    flex-shrink: 0;
}

.botao-acesso.grande {
    font-size: 1.05rem;
    padding: 12px 24px;
}


@media (max-width: 768px) {
    .card-painel-alt {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .lado-esquerdo {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .lado-esquerdo h3 {
        font-size: 1.4rem;
        line-height: 1.6rem;
    }

    .lado-esquerdo p {
        font-size: 1rem;
        max-width: 320px;
    }

    .icone-badge {
        font-size: 2.2rem;
        padding: 0.7rem;
    }

    .lado-direito {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .botao-acesso.grande {
        width: 100%;
        max-width: 280px;
    }
}