.container_botoes_headerprincipal {
    display: flex;
    justify-content: flex-end;
    gap: 0.5vw;

}

.botao_headerprincipal {
    display:flex;
    align-items:center;
    justify-content:center;
    background-color: var(--cor_principal);
    font-family: var(--font-family-koho);
    font-size: 0.9em;
    width: 14vw;
    height: 1.5vw;
    text-align: center;
    color: var(--cor_branca);
    border: none;
    border-radius: 1vw;
    margin: 1.5vw auto !important;
    text-decoration: none;
    cursor: pointer;
}




.editar_perfil_headerprincipal {
    display: flex;
    align-items: center;
    justify-content: center;
}


.botao_mais_headerprincipal {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 0.15em solid var(--cor_principal);
    color: var(--cor_principal);
    font-family: var(--font-family-koho);
    font-size: 0.9em;
    width: 7vw;
    height: 1.5vw;
    text-align: center;
    border-radius: 1vw;
    margin-bottom: 1.5vw;
    margin-top: 1.5vw;
    text-decoration: none;
    cursor: pointer;
}





/* ************************Responsividade******************** */
@media only screen and (max-width: 1024px) {

    .container_botoes_headerprincipal {
        gap: 0.5vw;
    }

    .botao_headerprincipal {
        width: 35vw;
        height: 2vw;
        border-radius: 2vw;
    }

    .botao_mais_headerprincipal {
        width: 17vw;
        height: 2vw;
        border-radius: 2vw;
    }
}

@media only screen and (max-width: 768px) {

    .container_botoes_headerprincipal {
        gap: 0.5vw;
    }

    .botao_headerprincipal {
        width: 35vw;
        height: 3vw;
        border-radius: 3vw;
    }

    .botao_mais_headerprincipal {
        width: 17vw;
        height: 3vw;
        border-radius: 3vw;
    }

}

@media only screen and (max-width: 480px) {
    .container_botoes_headerprincipal {
        gap: 0.5vw;
    }

    .botao_headerprincipal {
        width: 35vw;
        height: 5.5vw;
        border-radius: 4vw;
    }

    .botao_mais_headerprincipal {
        width: 18vw;
        height: 5.5vw;
        border-radius: 4vw;
        border: 0.13em solid var(--cor_principal);
    }

}
