@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@media screen and (min-width: 768px){

}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.ctn-content {
    background-image: linear-gradient( 0deg, black 10%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100vw;
    height: 100vh;
}

.ctn-content a{
    text-decoration: none;
}

.foto-perfil-verificado{
    margin-top: 5rem;
    display: flex;
}

.verificado{
    width: 6rem;
    position: absolute;
    display: flex;
    margin: 170px;
}

.nome-perfil{
    display: flex;
    align-items: center;
}

.verificado-icon{
    width: 40px;
    height: 40px;
}

/* Botões */
a .btn-grupo, a .btn-estrategias {
    font-family: 'Kanit', sans-serif;
    background-image: linear-gradient(to right, #56ab2f 0%, #a8e063  51%, #56ab2f  100%);
    padding: 20px 45px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #a8e063;
    border-radius: 10px;
    display: block;
    border: none;
    text-decoration: none;
    text-shadow: 2px 2px 5px black;
}

a .btn-grupo{
    font-size: 1.3rem;
}

a .btn-grupo:hover, a .btn-estrategias:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
}

h2{
    font-family: 'Kanit', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    text-shadow: 2px 2px 5px black;
}

p{
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0 20px;
    text-shadow: 2px 2px 5px black;
}

.perfil {
    width: 16rem;
    border-radius: 50%;
    border: 6px solid #58AC30;
    box-shadow: 0 0 20px #a8e063;
    margin: 20px 0;
}

/* Barra de Progressão */
.progress-container {
    width: 80%;
    max-width: 600px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 10px;
    background-image: linear-gradient(to right, #2FAA4D 0%, #a8e063 100%);
    width: 0; /* Define a largura da barra de progresso aqui */
    transition: width 0.5s ease-in-out;
}

/* Icones de Seguranca */

.safe-icons{
    display: block;
}

.safe-icons img{
    width: 80%;
    margin-top: 10px;
}