.botao, .a_botao{
    width: 28vw;
    text-decoration: none; 
    margin: 3px;
    color: var(--cor-texto);
    background-color: #3C46FF;
    cursor: pointer;
    border: none;
    box-shadow: 0 3px 6px grey;
}

.linha_botoes{
    text-align: center;
    justify-content: center;
    width: 97vw;
    align-items: center;
    display: flex;
}

.aclass{
    text-decoration: none;
}

.info_tag{
    position: absolute;
    background-image: url('../img/info.png');
    width: 25px;
    height: 25px;
    background-size: cover; /* Garante que a imagem cubra todo o elemento */
    background-repeat: no-repeat; /* Evita a repetição da imagem */
}

.drt{
    margin-top: 2%;
    margin-left: 4%;
}

.esq{
    margin-top: 2%;
    margin-left: 3%;
}

.home{
    border-radius: 1rem;
    height: 25vw;
    text-align: center;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(9, 80, 117, 0.5);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.esquerda{
    float: left;
    margin: 0 0.8em;
}

.azul{
    background: #70cee2;
}

.azul_celeste{
    background: #7FDBFF;
}

.verde{
    background: #28bf28;
}

.marrom{
    background: #6F4E37;
}

.vermelho{
    background: #f94646;
}

.arcoiris{
    background-image: linear-gradient(to right, red, orange, green, blue, indigo, violet);
}

.dourado{
    background-image: linear-gradient(to right, #ffd700, #cdaa00); /* Gradiente de dourado claro para dourado escuro */
}

.azul-roxo{
    background: linear-gradient(45deg, #4b79a1, #283e51); /* Cores azul e roxo */
}

.azul_escuro{
    background: #095075;
}

.texto_botao{
    font-weight: 100;
}

.p_center{
    font-family: var(--font-family);
    margin-top: 5px;
    font-size: 36px;
}

.alert{
    text-align: center;
    color: rgba(255,0,0,0.5);
}

@media(max-width: 960px){
    .p_center{
        font-size: 3.5vw;
    }

}

@media(max-width: 850px){
    .p_center{
        font-size: 3.5vw;
    }

}

@media(max-width: 600px){
    .home{
        height: 32vw;
        width: 38vw;
    }
    
    .p_center{
        font-size: 4vw;
    }

}

@media(max-width: 500px){
    .home{
        height: 30vw;
        width: 35vw;
    }
}

@media(max-width: 416px){
    .home{
        height: 35vw;
        width: 40vw;
    }
    
    .p_center{
        font-size: 4.5vw;
    }

}

.encolher{
    font-size: clamp(1.15em, 2.5vw, 1.3em);
}